<!doctype html>
<html lang="en-US" prefix="og: https://ogp.me/ns#">
<head>
	<meta charset="UTF-8">
<script data-cfasync="false">
var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),document.addEventListener("gform/theme/scripts_loaded",function(){gform.themeScriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>"function"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn("The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1."),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener("gform_main_scripts_loaded",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener("gform/theme/scripts_loaded",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener("DOMContentLoaded",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook("action",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook("filter",o,r,e,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,r){gform.removeHook("action",o,r)},removeFilter:function(o,r,e){gform.removeHook("filter",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+"_"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==r?t.apply(null,e):e[0]=t.apply(null,e)})),"filter"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});
</script>

	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	    <style>
        .pro-wccp:before {
            content: "\f160";
            top: 3px;
        }
        .pro-wccp:before{
            color:#02CA03 !important
        }
        .pro-wccp {
            transform: rotate(45deg);
        }
    </style>
    <script id="wccp_pro_disable_hot_keys">
/*****************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_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="">

	
	*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
	  -webkit-user-select: auto !important;
	  cursor: text !important;
	  user-select: text !important;
	  pointer-events: auto !important;
	}
	
	/*
	*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
	*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
	input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	*/
	a{ cursor: pointer ; pointer-events: auto !important;}

	</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</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 = 2000;
		
		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>
	#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: 0.5s ease 0s normal none 1 running ngdialog-fadein;
		background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	}
	#wpcp-error-message {
	    direction: ltr;
	    text-align: center;
	    transition: opacity 900ms 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: #555555;
		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;
	}
	.msgmsg-box-wpcp b {
		font-weight:bold;
	}
		.warning-wpcp {
		background:#ebf6ff url('https://www.forhair.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
		border:1px solid #c0dcf2;
		-webkit-box-shadow: 0px 0px 34px 2px #c0dcf2;
		-moz-box-shadow: 0px 0px 34px 2px #c0dcf2;
		box-shadow: 0px 0px 34px 2px #c0dcf2;
	}
	.success-wpcp {
		background: #fafafa url('https://www.forhair.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
		border: 1px solid #00b38f;
		box-shadow: 0px 0px 34px 2px #adc;
	}
    </style>

<!-- Search Engine Optimization by Rank Math PRO - https://rankmath.com/ -->
<title>ForHair FUE Hair Transplant | Dr. John P. Cole | Pioneer FUE Clinic</title>
<meta name="description" content="Award-Winning Hair Transplant Clinic Led by FUE Pioneer Dr. John P. Cole. Expert Hair Loss Restoration Team With Clinic Locations in Atlanta &amp; New York City."/>
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/>
<link rel="canonical" href="https://www.forhair.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Award-Winning Hair Transplant Clinic in Atlanta &amp; NYC | Forhair" />
<meta property="og:description" content="Pioneer in total follicular unit hair transplantation and microscopic dissection, focusing on transforming hair restoration surgery from cosmetically unacceptable results into aesthetically pleasing results." />
<meta property="og:url" content="https://www.forhair.com/" />
<meta property="og:site_name" content="ForHair Hair Transplant Clinic" />
<meta property="og:updated_time" content="2026-05-19T11:28:08+00:00" />
<meta property="og:image" content="https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp" />
<meta property="og:image:secure_url" content="https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp" />
<meta property="og:image:width" content="800" />
<meta property="og:image:height" content="467" />
<meta property="og:image:alt" content="Dr. John P. Cole - FUE Hair Transplant Pioneer" />
<meta property="og:image:type" content="image/webp" />
<meta property="article:published_time" content="2023-12-24T15:41:19+00:00" />
<meta property="article:modified_time" content="2026-05-19T11:28:08+00:00" />
<meta property="og:video" content="https://www.youtube.com/embed/8Pn6kJFcEiA" />
<meta property="ya:ovs:upload_date" content="2023-12-24GMT+000015:41:19+00:00" />
<meta property="ya:ovs:allow_embed" content="true" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Your Hair Restoration Journey Starts Here | Forhair" />
<meta name="twitter:description" content="Selecting Forhair means more than picking superb results; it means choosing a practice that actively supports its patients." />
<meta name="twitter:site" content="@ForhairClinic" />
<meta name="twitter:creator" content="@ForhairClinic" />
<meta name="twitter:image" content="https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Dr. John P Cole, MD" />
<meta name="twitter:label2" content="Time to read" />
<meta name="twitter:data2" content="11 minutes" />
<script type="application/ld+json" class="rank-math-schema-pro">{"@context":"https://schema.org","@graph":[{"@type":"Place","@id":"https://www.forhair.com/#place","geo":{"@type":"GeoCoordinates","latitude":"34.07978825261619","longitude":" -84.29578449658928"},"hasMap":"https://www.google.com/maps/search/?api=1&amp;query=34.07978825261619, -84.29578449658928","address":{"@type":"PostalAddress","streetAddress":"1070 Powers Place","addressLocality":"Alpharetta","addressRegion":"Georgia","postalCode":"30009","addressCountry":"US"}},{"@type":["MedicalClinic","Organization"],"@id":"https://www.forhair.com/#organization","name":"ForHair Hair Transplant Clinic","url":"https://www.forhair.com","sameAs":["https://www.facebook.com/forhair.clinic","https://twitter.com/ForhairClinic","https://www.youtube.com/c/forhair/featured","https://www.instagram.com/forhair.clinic/"],"address":{"@type":"PostalAddress","streetAddress":"1070 Powers Place","addressLocality":"Alpharetta","addressRegion":"Georgia","postalCode":"30009","addressCountry":"US"},"logo":{"@type":"ImageObject","@id":"https://www.forhair.com/#logo","url":"https://www.forhair.com/wp-content/uploads/2024/08/forhair-logo-social-2020.jpg","contentUrl":"https://www.forhair.com/wp-content/uploads/2024/08/forhair-logo-social-2020.jpg","caption":"ForHair Hair Transplant Clinic","inLanguage":"en-US","width":"1200","height":"1200"},"priceRange":"$$$-$$$$$$","openingHours":["Monday,Tuesday,Wednesday,Thursday,Friday 08:00-18:00"],"location":{"@id":"https://www.forhair.com/#place"},"image":{"@id":"https://www.forhair.com/#logo"},"telephone":"+1-678-566-1011"},{"@type":"WebSite","@id":"https://www.forhair.com/#website","url":"https://www.forhair.com","name":"ForHair Hair Transplant Clinic","alternateName":"ForHair","publisher":{"@id":"https://www.forhair.com/#organization"},"inLanguage":"en-US","potentialAction":{"@type":"SearchAction","target":"https://www.forhair.com/?s={search_term_string}","query-input":"required name=search_term_string"}},{"@type":"ImageObject","@id":"https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp","url":"https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp","width":"800","height":"467","caption":"Dr. John P. Cole - FUE Hair Transplant Pioneer","inLanguage":"en-US"},{"@type":"WebPage","@id":"https://www.forhair.com/#webpage","url":"https://www.forhair.com/","name":"ForHair FUE Hair Transplant | Dr. John P. Cole | Pioneer FUE Clinic","datePublished":"2023-12-24T15:41:19+00:00","dateModified":"2026-05-19T11:28:08+00:00","about":{"@id":"https://www.forhair.com/#organization"},"isPartOf":{"@id":"https://www.forhair.com/#website"},"primaryImageOfPage":{"@id":"https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://www.forhair.com/#author","name":"Dr. John P Cole, MD","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/ae75604a25fb0b2f90b5f6984f4f9ffa5721c66aacb0d2037c2f823c207ad4e1?s=96&amp;d=mm&amp;r=g","url":"https://secure.gravatar.com/avatar/ae75604a25fb0b2f90b5f6984f4f9ffa5721c66aacb0d2037c2f823c207ad4e1?s=96&amp;d=mm&amp;r=g","caption":"Dr. John P Cole, MD","inLanguage":"en-US"},"worksFor":{"@id":"https://www.forhair.com/#organization"}},{"headline":"ForHair FUE Hair Transplant | Dr. John P. Cole | Pioneer FUE Clinic","description":"Award-Winning Hair Transplant Clinic Led by FUE Pioneer Dr. John P. Cole. Expert Hair Loss Restoration Team With Clinic Locations in Atlanta &amp; New York City.","datePublished":"2023-12-24T15:41:19+00:00","dateModified":"2026-05-19T11:28:08+00:00","keywords":"hair transplant","image":{"@id":"https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp"},"author":{"@id":"https://www.forhair.com/#author","name":"Dr. John P Cole, MD"},"@type":"Article","name":"ForHair FUE Hair Transplant | Dr. John P. Cole | Pioneer FUE Clinic","@id":"https://www.forhair.com/#schema-434001","isPartOf":{"@id":"https://www.forhair.com/#webpage"},"publisher":{"@id":"https://www.forhair.com/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.forhair.com/#webpage"}},{"@type":"VideoObject","name":"ForHair FUE Hair Transplant | Dr. John P. Cole | Pioneer FUE Clinic","description":"Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.","uploadDate":"2023-12-24T15:41:19+00:00","thumbnailUrl":"https://www.forhair.com/wp-content/uploads/2022/12/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp","embedUrl":"https://www.youtube.com/embed/8Pn6kJFcEiA","isFamilyFriendly":"True","@id":"https://www.forhair.com/#schema-485820","isPartOf":{"@id":"https://www.forhair.com/#webpage"},"publisher":{"@id":"https://www.forhair.com/#organization"},"inLanguage":"en-US"}]}</script>
<!-- /Rank Math WordPress SEO plugin -->

<link rel='dns-prefetch' href='//www.google.com' />
<link rel="alternate" type="application/rss+xml" title="Forhair &raquo; Feed" href="https://www.forhair.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Forhair &raquo; Comments Feed" href="https://www.forhair.com/comments/feed/" />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.forhair.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.forhair.com%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.forhair.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.forhair.com%2F&#038;format=xml" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="abb-alert-box-style-inline-css">
.dashicons{font-family:dashicons!important}.wp-block-abb-alert-box{opacity:1;transform:translateY(0);transition:opacity .3s ease-in-out,transform 8s ease-in-out}.wp-block-abb-alert-box *{box-sizing:border-box}.wp-block-abb-alert-box .abbAlertBox .alert{align-items:center;display:inline-flex;max-width:100%;position:relative}.wp-block-abb-alert-box .abbAlertBox .alert i.alertIcon{font-style:inherit;margin-right:10px}.wp-block-abb-alert-box .abbAlertBox .alert span.alertIcon{align-items:center;display:inline-flex;justify-content:center;line-height:1;margin-right:10px}.wp-block-abb-alert-box .abbAlertBox .alert span.alertIcon svg{fill:currentColor;height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.wp-block-abb-alert-box .abbAlertBox .alert .alertMessage,.wp-block-abb-alert-box .abbAlertBox .alert .alertMessage *{display:inline}.wp-block-abb-alert-box.transformHidden{opacity:0;transform:translateY(-9999px)}.wp-block-abb-alert-box .note-cont{display:flex;gap:16px;position:relative}.wp-block-abb-alert-box .note-cont .icon{height:24px;left:40px;top:34px;width:24px}.wp-block-abb-alert-box .note-cont .link{align-items:center;box-shadow:none;display:flex;font-size:16px;font-weight:700;gap:8px;justify-content:center;margin-top:8px;outline:none;text-decoration:none;width:-moz-max-content;width:max-content}.wp-block-abb-alert-box .note-cont .link .linkIcon{align-items:center;display:flex;fill:currentColor;height:20px;justify-content:center;width:20px}.wp-block-abb-alert-box .note-cont .info-link{text-decoration:none}.wp-block-abb-alert-box .note-cont .info-link:hover{text-decoration:underline}.wp-block-abb-alert-box .note-cont .file-link{text-decoration:none}.wp-block-abb-alert-box .note-cont h3{display:block;font-size:18px;font-weight:700;line-height:32px;margin-bottom:8px;margin-top:-4px}.wp-block-abb-alert-box .note-cont p{font-size:16px;margin-bottom:0;margin-top:0}@media only screen and (max-width:767px){.wp-block-abb-alert-box .note-cont{display:flex;flex-direction:column;gap:4px;padding:12px 16px}}.wp-block-abb-alert-box .icon{fill:currentColor}.wp-block-abb-alert-box .alertClose{cursor:pointer;fill:currentColor;height:18px;position:absolute;right:8px;top:8px;width:18px}.wp-block-abb-alert-box .abb-premium-overlay-cont{align-items:center;backdrop-filter:blur(2px);background:hsla(0,0%,100%,.33);border-radius:12px;display:flex;inset:0;justify-content:center;position:absolute;z-index:50}.wp-block-abb-alert-box .abb-premium-overlay-cont .abb-overlay-cont{background:#fff;border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,.25);max-width:320px;padding:28px 32px;text-align:center;width:90%}.wp-block-abb-alert-box .abb-premium-overlay-cont .abb-overlay-cont .abb-overlay-title{font-size:18px;font-weight:700;margin-bottom:6px}.wp-block-abb-alert-box .abb-premium-overlay-cont .abb-overlay-cont .abb-overlay-description{color:#6b7280;font-size:15px;margin-bottom:18px}.wp-block-abb-alert-box .abb-premium-overlay-cont .abb-overlay-cont .abb-overlay-btn{background:#146ef5;border:none;border-radius:10px;color:#fff;cursor:pointer;font-weight:900;padding:10px 14px;transition:.2s;width:100%}.wp-block-abb-alert-box .abb-premium-overlay-cont .abb-overlay-cont .abb-overlay-btn:hover{background:#0f5bcb}

/*# sourceURL=https://www.forhair.com/wp-content/plugins/alert-box-block/build/view.css */
</style>
<style id="ilb-icon-list-style-inline-css">
.dashicons{font-family:dashicons!important}.wp-block-ilb-icon-list{text-align:center}.wp-block-ilb-icon-list *{box-sizing:border-box}.wp-block-ilb-icon-list .ilbIconList{background:transparent;box-shadow:0 0 10px 0 rgba(69,39,164,.502);display:inline-block;max-width:100%;padding:30px 25px}.wp-block-ilb-icon-list .ilbIconList.left .header{justify-items:start}.wp-block-ilb-icon-list .ilbIconList.center{text-align:center}.wp-block-ilb-icon-list .ilbIconList.center .header{justify-items:center}.wp-block-ilb-icon-list .ilbIconList.center ul.lists{display:inline-block}.wp-block-ilb-icon-list .ilbIconList.right .header{justify-items:end}.wp-block-ilb-icon-list .ilbIconList.right ul.lists .list{flex-direction:row-reverse}.wp-block-ilb-icon-list .ilbIconList .header{display:grid;height:-moz-min-content;height:min-content;margin-bottom:30px}.wp-block-ilb-icon-list .ilbIconList .header .description,.wp-block-ilb-icon-list .ilbIconList .header .title{margin:0 0 5px;text-align:initial;width:auto}.wp-block-ilb-icon-list .ilbIconList .header .title{color:#4527a4;font-size:30px;font-weight:700;text-transform:uppercase}.wp-block-ilb-icon-list .ilbIconList .header .description{color:#828282;font-size:18px;font-weight:500}.wp-block-ilb-icon-list .ilbIconList .header .separator{border-top:2px solid #828282;display:inline-block;text-align:initial;width:20%}.wp-block-ilb-icon-list .ilbIconList ul.lists{list-style-type:none;margin:0;padding:0}.wp-block-ilb-icon-list .ilbIconList ul.lists .link{text-decoration:none}.wp-block-ilb-icon-list .ilbIconList ul.lists .link li.list{padding-bottom:7px}.wp-block-ilb-icon-list .ilbIconList ul.default{list-style-type:none;margin:0;padding:0}.wp-block-ilb-icon-list .ilbIconList ul.default .content{max-width:90%;padding:10px}.wp-block-ilb-icon-list .ilbIconList ul.default li{align-items:center;display:flex;gap:15px;padding:0}.wp-block-ilb-icon-list .ilbIconList ul.default li:not(:last-child){margin-bottom:8px}.wp-block-ilb-icon-list .ilbIconList ul.default li .icon{align-items:center;background:#4527a4;border-radius:50%;color:#fff;display:flex;font-size:18px;font-style:normal;height:30px;justify-content:center;width:30px}.wp-block-ilb-icon-list .ilbIconList ul.default li .link{display:inline-block;text-decoration:none}.wp-block-ilb-icon-list .ilbIconList ul.default li .text{color:#828282;margin:0;max-width:calc(100% - 45px);text-align:left}.wp-block-ilb-icon-list .ilbIconList ul.default li .text a{color:inherit;font-size:inherit;text-decoration:inherit}.wp-block-ilb-icon-list .ilbIconList ul.default li .text a:hover{color:inherit}.wp-block-ilb-icon-list .ilbIconList ul.theme2 .link{text-decoration:none}.wp-block-ilb-icon-list .ilbIconList ul.theme2 .link li.list{margin-bottom:15px}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li{align-items:center;border-radius:12px;box-shadow:0 0 6px rgba(0,0,0,.2);cursor:pointer;display:flex;margin-bottom:15px;padding:16px;transition:background-color .2s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li:last-child{margin-bottom:0}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li:hover{background-color:rgba(0,0,0,.02)}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li .icon{align-items:center;border-radius:50%;display:flex;justify-content:center}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li .content{flex:1;margin-left:18px;max-width:90%;padding:10px;text-align:left}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li .content h3{font-family:sans-serif;font-size:22px;font-weight:500}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li .content p{font-size:14px;margin-top:-15px}.wp-block-ilb-icon-list .ilbIconList ul.theme2 li .arrow{color:#ccc;margin-left:16px}.wp-block-ilb-icon-list .ilbIconList ul.theme3{display:grid}.wp-block-ilb-icon-list .ilbIconList ul.theme3 .list{box-sizing:border-box;cursor:pointer;padding:15px 10px;transition:all .4s cubic-bezier(.25,.8,.25,1);word-wrap:break-word;white-space:normal}.wp-block-ilb-icon-list .ilbIconList ul.theme3 .list .feature-container .feature .icon-wrapper{transition:transform .5s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme3 .list .feature-container:hover .feature .icon-wrapper{transform:rotate(45deg)}.wp-block-ilb-icon-list .ilbIconList ul.theme3 .list:hover{background-color:#eaecee;box-shadow:0 12px 25px rgba(0,0,0,.3);transform:translateY(-8px)}.wp-block-ilb-icon-list .ilbIconList ul.theme3 .link,.wp-block-ilb-icon-list .ilbIconList ul.theme4 .link{text-decoration:none}.wp-block-ilb-icon-list .ilbIconList ul.theme4 .link li.list{margin-bottom:15px}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li{align-items:center;border-radius:12px;box-shadow:0 0 6px rgba(0,0,0,.2);cursor:pointer;display:flex;margin-bottom:15px;padding:25px;position:relative;transition:background-color .2s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li:last-child{margin-bottom:0}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li:hover{background-color:rgba(0,0,0,.02)}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .icon{align-items:center;border-radius:50%;display:flex;justify-content:center}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .content{flex:1;margin-left:15px;margin-top:20px;max-width:90%;padding:10px;text-align:left}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .content h3{font-family:sans-serif;font-size:22px;font-weight:500}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .content p{font-size:14px;margin-top:-15px}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .arrow{color:#ccc;margin-left:16px}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .hidden-badge{display:none}.wp-block-ilb-icon-list .ilbIconList ul.theme4 li .badge{border-radius:7px;padding:5px 8px;position:absolute;right:20px;top:0}.wp-block-ilb-icon-list .ilbIconList ul.theme5{display:grid}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .link{text-decoration:none}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .content{max-width:90%;padding:10px}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card-wrapper{position:relative;transition:transform .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card-wrapper:hover{transform:translateY(-4px)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .bg-element{border-radius:1rem;inset:0;position:absolute;transition:transform .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .bg-element-1{transform:rotate(3deg)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .bg-element-2{transform:rotate(-3deg)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card-wrapper:hover .bg-element-1{transform:rotate(6deg)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card-wrapper:hover .bg-element-2{transform:rotate(-6deg)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card{border:1px solid #e5e7eb;border-radius:1rem;box-shadow:0 10px 15px -3px rgba(0,0,0,.1);padding:1.5rem;position:relative;transition:all .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-container{margin-bottom:1.5rem;position:relative}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-bg-blur{border-radius:50%;filter:blur(20px);inset:0;opacity:.2;position:absolute;transition:opacity .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover .icon-bg-blur{opacity:.3}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-wrapper{align-items:center;display:flex;justify-content:center;margin:0 auto;position:relative}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-pulse{animation:pulse 2s infinite;border-radius:50%;inset:0;position:absolute}@keyframes pulse{0%{opacity:.5;transform:scale(.95)}50%{opacity:.8;transform:scale(1.05)}to{opacity:.5;transform:scale(.95)}}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-circle{align-items:center;border-radius:50%;display:inline-flex;justify-content:center;position:relative;transition:transform .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover .icon-circle{transform:scale(1.1)}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon{color:#4f46e5;height:2rem;width:2rem}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .card-content{text-align:center}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .card-title{margin-bottom:.5rem;transition:color .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover .card-title{color:#4f46e5}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .card-description{line-height:1.5;transition:color .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover .card-description{color:#374151}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .animated-border{background:linear-gradient(90deg,#3b82f6,#8b5cf6);bottom:0;height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:width .5s ease;width:0}.wp-block-ilb-icon-list .ilbIconList ul.theme5 .icon-card:hover .animated-border{width:80%}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .icon-list-container{background:#fff;border-radius:.5rem;box-shadow:0 4px 6px rgba(0,0,0,.1);margin:0 auto;overflow:hidden;width:100%}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .icon-table{border-collapse:collapse;text-align:center;width:100%}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .icon-table td{border-bottom:1px solid #e5e7eb;padding:1rem}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .icon-container{align-items:center;display:flex;justify-content:center}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .try-button{border:none;border-radius:.375rem;cursor:pointer;padding:6px 10px;transition:background-color .2s;width:70px}.wp-block-ilb-icon-list .ilbIconList ul.theme6 .try-button:hover{background-color:#059669}.wp-block-ilb-icon-list .ilbIconList ul.theme7{display:grid}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .icon-list-satellite{position:relative}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .glass-card{border:1px solid #e5e7eb;border-radius:1rem;box-shadow:0 10px 15px -3px rgba(0,0,0,.1);padding:1.5rem;position:relative;transition:all .3s ease}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .icon-sphere{height:70px;margin:0 auto 1.5rem;position:relative;width:70px}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .theme7Icon{border-radius:50%;padding:12px}@keyframes rotateGradient{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .icon-satellite{align-items:center;display:flex;height:100%;justify-content:center;position:relative;width:100%;z-index:2}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .glass-card:hover .feature-icon{transform:scale(1.1)}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .orbit{animation:orbitRotate 12s linear infinite;border-radius:50%;inset:-15px;position:absolute}@keyframes orbitRotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .satellite{border-radius:50%;box-shadow:0 0 10px #fff;height:10px;position:absolute;width:10px}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .satellite:first-child{left:50%;top:0}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .satellite:nth-child(2){bottom:25%;right:0}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .satellite:nth-child(3){bottom:25%;left:0}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .text-content{position:relative;text-align:center;z-index:2}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .hover-line{background:linear-gradient(90deg,rgba(147,51,234,.5),rgba(79,70,229,.5));bottom:0;height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:width .4s ease;width:0}.wp-block-ilb-icon-list .ilbIconList ul.theme7 .glass-card:hover .hover-line{width:80%}
.atb-premium-notice{align-items:center;background:linear-gradient(135deg,#fdf0ff,#eef4ff);border:1px solid rgba(120,119,198,.2);border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.08);display:flex;font-family:inherit;gap:16px;margin-bottom:20px;padding:18px 20px;&__content{align-items:flex-start;display:flex;gap:14px}.atb-premium-notice__content{text-align:left}.atb-premium-badge{background:linear-gradient(135deg,#7b61ff,#a855f7);border-radius:999px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.4px;padding:6px 10px;text-transform:uppercase;white-space:nowrap}.atb-premium-text{margin-top:8px;strong{color:#1f2937;display:block;font-size:16px;margin-bottom:4px}p{color:#4b5563;font-size:14px;line-height:1.5;margin:0}}.atb-premium-btn{background:linear-gradient(135deg,#7b61ff,#5b21b6);border-radius:10px;box-shadow:0 8px 20px rgba(91,33,182,.35);color:#fff;font-size:14px;font-weight:600;padding:10px 18px;text-decoration:none;transition:all .25s ease;white-space:nowrap;&:hover{box-shadow:0 12px 28px rgba(91,33,182,.45);transform:translateY(-1px)}}@media (max-width:640px){align-items:stretch;flex-direction:column;.atb-premium-btn{text-align:center;width:100%}}}

/*# sourceURL=https://www.forhair.com/wp-content/plugins/icon-list-block/build/view.css */
</style>
<style id="rank-math-related-posts-style-inline-css">
.wp-block-rank-math-related-posts{--rm-related-gap: 1rem;--rm-related-border-radius: 6px;--rm-related-card-padding: 16px;--rm-related-hover-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);--rm-related-transition: 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts{display:block}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-wrap{display:grid;gap:var(--rm-related-gap)}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-vertical .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-vertical .rank-math-related-wrap{grid-template-columns:repeat(auto-fill, minmax(220px, 1fr))}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-wrap{grid-template-columns:repeat(auto-fill, minmax(400px, 1fr))}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-item{display:flex;gap:16px;align-items:flex-start}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb{flex:0 0 140px;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb img{width:140px;height:140px;-o-object-fit:cover;object-fit:cover}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-content,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-content{flex:1;min-width:0;display:flex;flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-title,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-title{margin-top:0}@media (max-width: 640px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb{flex:0 0 100px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-grid-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-grid-horizontal .rank-math-related-thumb img{width:100px;height:100px}}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-vertical .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-vertical .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-wrap,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-wrap{grid-template-columns:1fr}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{display:flex;gap:20px;align-items:flex-start}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 180px;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:180px;height:180px;-o-object-fit:cover;object-fit:cover}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-content,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-content{flex:1;min-width:0;display:flex;flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-title,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-title{margin-top:0}@media (max-width: 640px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{gap:16px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 120px}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:120px;height:120px}}@media (max-width: 480px){.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-item,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-item{flex-direction:column}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb{flex:0 0 auto;width:100%}.wp-block-rank-math-related-posts.rank-math-related-posts.is-style-list-horizontal .rank-math-related-thumb img,.wp-block-rank-math-related-posts.rank-math-related-posts.rank-math-related-list-horizontal .rank-math-related-thumb img{width:100%;height:auto;max-height:200px}}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-item{border-radius:var(--rm-related-border-radius);padding:var(--rm-related-card-padding);background:inherit;transition:transform var(--rm-related-transition),box-shadow var(--rm-related-transition)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-item:hover{transform:translateY(-2px);box-shadow:var(--rm-related-hover-shadow)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title{margin:0.5rem 0;font-size:inherit;line-height:inherit}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title a{color:inherit;text-decoration:none;transition:color 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title a:hover{color:#2563eb;text-decoration:underline}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-title:not(:has(a)){cursor:default}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb{position:relative;overflow:hidden;border-radius:4px;display:block}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb img{display:block;width:100%;height:auto;border-radius:4px;transition:transform 0.3s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:hover img{transform:scale(1.05)}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:not(a){cursor:default}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-thumb:not(a):hover img{transform:none}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-date{margin-top:0.25rem;font-size:0.85em;opacity:0.7}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-terms{margin-top:0.5rem}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-chip{display:inline-block;background:#f3f4f6;border:1px solid #e5e7eb;border-radius:999px;padding:0.15rem 0.5rem;margin-right:0.35rem;font-size:0.8em}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-excerpt{margin-top:0.5rem;color:inherit;opacity:0.8;font-size:0.9em;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-more{margin-top:1rem}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-button{display:inline-block;background:#111827;color:#fff;border-radius:6px;padding:0.625rem 1.25rem;text-decoration:none;font-weight:500;transition:background 0.2s ease, transform 0.2s ease}.wp-block-rank-math-related-posts.rank-math-related-posts .rank-math-related-button:hover{background:#1f2937;transform:translateY(-1px)}.wp-block-rank-math-related-posts.has-border-color .rank-math-related-item{border-color:inherit}.wp-block-rank-math-related-posts.has-border-width .rank-math-related-item{border-width:inherit}.wp-block-rank-math-related-posts.has-border-style .rank-math-related-item{border-style:inherit}.wp-block-rank-math-related-posts.has-border-radius .rank-math-related-item{border-radius:inherit}.wp-block-rank-math-related-posts:not(.has-border-color):not(.has-border-width):not(.has-border-style) .rank-math-related-item{border:1px solid #e5e7eb}

/*# sourceURL=https://www.forhair.com/wp-content/plugins/seo-by-rank-math-pro/includes/modules/link-genius/blocks/related/assets/css/styles.css */
</style>
<link rel='stylesheet' id='fontAwesome-css' href='https://www.forhair.com/wp-content/plugins/icon-list-block/assets/css/font-awesome.min.css?ver=6.4.2' media='all' />
<style id="global-styles-inline-css">
: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, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 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; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }: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;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}: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(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-icon svg){width: 24px;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
/*# sourceURL=global-styles-inline-css */
</style>
<link rel='stylesheet' id='eb-reusable-block-style-39640-css' href='https://www.forhair.com/wp-content/uploads/eb-style/reusable-blocks/eb-reusable-39640.min.css?ver=cace801e23' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://www.forhair.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://www.forhair.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://www.forhair.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.9' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='elementor-post-4-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-4.css?ver=1780196597' media='all' />
<link rel='stylesheet' id='eael-general-css' href='https://www.forhair.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.6.5' media='all' />
<link rel='stylesheet' id='eael-939-css' href='https://www.forhair.com/wp-content/uploads/essential-addons-elementor/eael-939.css?ver=1779190088' media='all' />
<link rel='stylesheet' id='widget-image-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='mdp-huger-elementor-css' href='https://www.forhair.com/wp-content/plugins/huger-elementor/css/huger-elementor.min.css?ver=1.1.6' media='all' />
<link rel='stylesheet' id='mdp-huger-elementor-admin-css' href='https://www.forhair.com/wp-content/plugins/huger-elementor/src/Merkulove/Unity/assets/css/elementor-admin.min.css?ver=1.1.6' media='all' />
<link rel='stylesheet' id='widget-heading-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-animation-tada-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/animations/styles/tada.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-sticky-css' href='https://www.forhair.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=4.0.4' media='all' />
<link rel='stylesheet' id='widget-icon-box-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-animation-pulse-grow-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.forhair.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=4.0.4' media='all' />
<link rel='stylesheet' id='widget-social-icons-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-apple-webkit-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='eael-112-css' href='https://www.forhair.com/wp-content/uploads/essential-addons-elementor/eael-112.css?ver=1779190088' media='all' />
<link rel='stylesheet' id='e-animation-fadeInUp-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-shapes-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='eael-28652-css' href='https://www.forhair.com/wp-content/uploads/essential-addons-elementor/eael-28652.css?ver=1779190088' media='all' />
<link rel='stylesheet' id='font-awesome-5-all-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='sbistyles-css' href='https://www.forhair.com/wp-content/plugins/instagram-feed-pro/css/sbi-styles.min.css?ver=6.9.0' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='e-swiper-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-image-carousel-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-animation-fadeInLeft-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-testimonial-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-testimonial.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='widget-icon-list-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='e-animation-flash-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/lib/animations/styles/flash.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='gravity_forms_theme_reset-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-reset.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='gravity_forms_theme_foundation-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-foundation.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='gravity_forms_theme_framework-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/gravity-forms-theme-framework.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='elementor-post-28652-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-28652.css?ver=1780199629' media='all' />
<link rel='stylesheet' id='elementor-post-939-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-939.css?ver=1780196598' media='all' />
<link rel='stylesheet' id='elementor-post-1519-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-1519.css?ver=1780196598' media='all' />
<link rel='stylesheet' id='elementor-post-112-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-112.css?ver=1780197929' media='all' />
<link rel='stylesheet' id='print-protection.css-css' href='https://www.forhair.com/wp-content/plugins/wccp-pro/css/print-protection.css?css_js_files_version_num=16&#038;ver=7.0' media='all' />
<style id="elementor-pro-custom-fonts-inline-css">
@font-face {
	font-family: 'Benton';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.forhair.com/wp-content/uploads/2024/10/BentonSans-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Benton';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.forhair.com/wp-content/uploads/2024/10/benton-sans-bold.ttf') format('truetype');
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://www.forhair.com/wp-content/uploads/2024/10/Roboto-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://www.forhair.com/wp-content/uploads/2024/10/Roboto-Bold.ttf') format('truetype');
}

/*# sourceURL=elementor-pro-custom-fonts-inline-css */
</style>
<link rel='stylesheet' id='dashicons-css' href='https://www.forhair.com/wp-includes/css/dashicons.min.css?ver=7.0' media='all' />
<script id="jquery-core-js" data-cfasync="false" src="https://www.forhair.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
<script id="jquery-migrate-js" src="https://www.forhair.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
<script id="font-awesome-4-shim-js" src="https://www.forhair.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=4.0.9"></script>
<link rel="https://api.w.org/" href="https://www.forhair.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.forhair.com/wp-json/wp/v2/pages/28652" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.forhair.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.0" />
<link rel='shortlink' href='https://www.forhair.com/' />
<style id="essential-blocks-global-styles">
            :root {
                --eb-global-primary-color: #101828;
--eb-global-secondary-color: #475467;
--eb-global-tertiary-color: #98A2B3;
--eb-global-text-color: #475467;
--eb-global-heading-color: #1D2939;
--eb-global-link-color: #444CE7;
--eb-global-background-color: #F9FAFB;
--eb-global-button-text-color: #FFFFFF;
--eb-global-button-background-color: #101828;
--eb-gradient-primary-color: linear-gradient(90deg, hsla(259, 84%, 78%, 1) 0%, hsla(206, 67%, 75%, 1) 100%);
--eb-gradient-secondary-color: linear-gradient(90deg, hsla(18, 76%, 85%, 1) 0%, hsla(203, 69%, 84%, 1) 100%);
--eb-gradient-tertiary-color: linear-gradient(90deg, hsla(248, 21%, 15%, 1) 0%, hsla(250, 14%, 61%, 1) 100%);
--eb-gradient-background-color: linear-gradient(90deg, rgb(250, 250, 250) 0%, rgb(233, 233, 233) 49%, rgb(244, 243, 243) 100%);

                --eb-tablet-breakpoint: 1024px;
--eb-mobile-breakpoint: 767px;

            }
            
            
        </style><!-- HFCM by 99 Robots - Snippet # 7: Google Tag Manager - header -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KP2VQM33');</script>
<!-- End Google Tag Manager -->
<!-- /end HFCM by 99 Robots -->
        <script
            data-accessible-account-id="OXeC6guJaXAgIl"
            data-site-url="https://www.forhair.com"
            id="allAccessibleWidget"
            src="https://api.allaccessible.org/widget/OXeC6guJaXAgIl.js"
            defer>
        </script>
        <meta property="fb:app_id" content="1577870203019028" />
<!-- Meta Pixel Code -->
<script type='text/javascript'>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
</script>
<!-- End Meta Pixel Code -->
<script type='text/javascript'>var url = window.location.origin + '?ob=open-bridge';
            fbq('set', 'openbridge', '233198567263721', url);
fbq('init', '233198567263721', {}, {
    "agent": "wordpress_0_fbl4b-7.0-5.1.0"
})</script><script type='text/javascript'>
    fbq('track', 'PageView', []);
  </script>			<style>
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
			</style>
			<script id='nitro-telemetry-meta' nitro-exclude>window.NPTelemetryMetadata={missReason: (!window.NITROPACK_STATE ? 'cache not found' : 'hit'),pageType: 'home',isEligibleForOptimization: true,}</script><script id='nitro-generic' nitro-exclude>(()=>{if(window.NitroPack=window.NitroPack||{coreVersion:"na",isCounted:!1},!window.NitroPack.isCounted){window.NitroPack.isCounted=!0;const e=()=>{let e=performance.getEntriesByType("navigation")[0];return document.prerendering||e?.activationStart>0?"_prr":e&&e.responseStart-e.requestStart<=5?"_pre":"_dow"},i=e=>{navigator.sendBeacon("https://to.getnitropack.com/p",JSON.stringify({siteId:"ZwCNHXcYUInPGlkxtPSBefGLXZGKEkkk",url:window.location.href,isOptimized:!!window.IS_NITROPACK,coreVersion:"na",missReason:window.NPTelemetryMetadata?.missReason||"",pageType:window.NPTelemetryMetadata?.pageType||"",isEligibleForOptimization:!!window.NPTelemetryMetadata?.isEligibleForOptimization||!1,pageLoadMode:e}))};(async()=>{await new Promise(e=>{document.prerendering?document.addEventListener("prerenderingchange",e,{once:!0}):e()}),await new Promise(e=>{"complete"===document.readyState?e():window.addEventListener("load",e)}),i(e())})(),window.addEventListener("pageshow",e=>{if(e.persisted){let e=document.prerendering||self.performance?.getEntriesByType?.("navigation")[0]?.activationStart>0;"visible"!==document.visibilityState||e||i("_bfr")}})}})();</script><link rel="icon" href="https://www.forhair.com/wp-content/uploads/2022/12/cropped-forhair-favicon-2-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.forhair.com/wp-content/uploads/2022/12/cropped-forhair-favicon-2-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.forhair.com/wp-content/uploads/2022/12/cropped-forhair-favicon-2-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.forhair.com/wp-content/uploads/2022/12/cropped-forhair-favicon-2-270x270.png" />
<style id="wp-custom-css">
/*START-BPLAYER MODIFICATIONS*/
span.testimonial-quotes {
	display:block;
	font-size:150px;
	color:#bbbbbb;
}
span.testimonial-quotes.open {
	text-align:left;
	margin-bottom:-120px;
	margin-top:-50px;
}
span.testimonial-quotes.close {
	text-align:right;
	margin-bottom:-150px;
	margin-top:-40px;
}
	/*REMOVE WHEN DONE*/
.page-id-28652 .elementor-element-176f19d {
	display:none;
}
.page-id-28652 .elementor-112 .elementor-element.elementor-element-c6b5862 {
	margin-top:0;
}
.page-id-28652 .elementor-element-c6b5862>.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
	padding:0;
}
	/*REMOVE WHEN DONE*/
/*END-BPLAYER MODIFICATIONS*/
/* Header slide from top */

.header-2 {
 transform: translatey(-80px);
 -moz-transition: all .3s ease!important;
 -webkit-transition: all .3s ease!important;
 transition: all .3s ease!important;
}


.elementor-sticky--effects.header-2  {
 height: auto!important;
 transform: translatey(0px);
}

.elementor-sticky--effects.header-1 {
 display: none!important;
}
/* End Of Slide */

/* gform field alignments by gusnato */

.gform_wrapper.gravity-theme .ginput_complex fieldset, .gform_wrapper.gravity-theme .ginput_complex span {
    flex: 1;
    margin-top: -6px;
}

.gform_wrapper select {
	display: block;
	box-sizing: border-box;
	max-width: 100%;
	margin: 0;
	padding: .6em 1.4em .5em .8em !important;
	border-radius: 4px;
	line-height: 1.3;
	font-size: 16px !important;
 	font-family: sans-serif;
 	font-weight: 400;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23515253%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	-moz-appearance: none;
 	-webkit-appearance: none;
 	background-repeat: no-repeat, repeat;
 	background-position: right .7em top 50%, 0 0;
 	background-size: .65em auto, 100%;
 	transition: all ease .5s;
}
.gform_wrapper select::-ms-expand {
	display: none;
}
.gform_wrapper select:focus {
	box-shadow: inset 0px 0px 0px 3px #515253;
	color: #222;
	outline: none;
	transition: all ease .5s;
}
.gform_wrapper select option {
	font-weight: normal;
}


@media (min-width: 1024px) {
body .gform_wrapper .gform_body .gform_fields #field_1_9.gfield input[type=text] {width:185px}
}
.gform_wrapper.gravity-theme .gf_progressbar_percentage {
  height: 100% !important;
}
.gform_wrapper .gform_page input.button {
	font-size: 16px;
	min-width:416px ;
!important;font-weight:bold;
	
}
body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button {
    display:none
}

/* gform alignments ends */
.grecaptcha-badge { visibility: hidden; }

.result-page-wrap .eael-advance-tabs .eael-tabs-nav>ul li {
    flex: 0 0 auto;
}

.result-page-wrap .eael-advance-tabs .eael-tabs-nav>ul  {
    justify-content: center;
}

.result-page-wrap .eael-advance-tabs .eael-tabs-nav>ul li:first-child {
    display: none;
}


.photos-item-grid:hover .content-wrap {
    display:block;
}
.photos-item-grid .content-wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    webkit-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.photos-item-grid .content-wrap .e-con-inner {
     position: absolute;
     top: 50%;
     display: flex;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 2;
     width: 100%;
     height: 100%;
     display: flex;
     flex-direction: column;
     padding: 0 15px;
     justify-content: center;
     background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(17 61 105 / 60%)), to(rgba(17 61 105 / 60%)));
     background-image: linear-gradient(180deg, rgb(17 61 105 / 60%), rgba(17 61 105 / 60%));
    padding-left: 40px;
}

.single-before-after-photos .elementor-widget-eael-image-comparison img {
    height: 600px;
    width: auto;
    min-height: 600px;
    object-fit: cover;
    width:100%;
    object-position: top;
    object-fit: cover;
}

.single-before-after-photos .elementor-widget-eael-image-comparison .eael-img-comp-container {
    min-height: 600px;
    max-height: 600px;
    height: auto !important;
    overflow: hidden;
}

.result-link-post {
    position: absolute;
    top: 0;
    bottom: 0;
    height:100%;
    z-index: 111;
    display: block;
}

.result-link-post a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    width: 100%;
    font-size: 0 !important;
}

.result-link-post .elementor-widget-heading {    height: 100%; }

@media(max-width:1160px){
	.single-before-after-photos .elementor-widget-eael-image-comparison img {
    height: 500px;
    min-height: 500px;
}
.single-before-after-photos .elementor-widget-eael-image-comparison .eael-img-comp-container {
    min-height: 500px;
    max-height: 500px;
}

}

@media(max-width:1024px){
	.single-before-after-photos .elementor-widget-eael-image-comparison img {
    height: 400px;
    min-height: 400px;
}
.single-before-after-photos .elementor-widget-eael-image-comparison .eael-img-comp-container {
    min-height: 400px;
    max-height: 400px;
}

}
.mdp-huger-elementor-mega-menu-item .mdp-huger-elementor-mega-menu-title {font-weight:normal;}
.mdp-huger-elementor-mega-menu-item .mdp-huger-elementor-mega-menu-title:hover {font-weight:600;}
.elementor-29585 .elementor-element.elementor-element-b45d69d .elementor-pagination {
margin-top: 100px;
border-top: 1px solid #888;
padding-top: 30px;
}
</style>
</head>
<body class="home wp-singular page-template-default page page-id-28652 wp-embed-responsive wp-theme-hello-elementor hello-elementor-default elementor-default elementor-kit-4 elementor-page elementor-page-28652 elementor-page-112">


<!-- Meta Pixel Code -->
<noscript>
<img loading="lazy" height="1" width="1" style="display:none" alt="fbpx"
src="https://www.facebook.com/tr?id=233198567263721&ev=PageView&noscript=1" />
</noscript>
<!-- End Meta Pixel Code -->

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

		<header data-elementor-type="header" data-elementor-id="939" class="elementor elementor-939 elementor-location-header" data-elementor-post-type="elementor_library">
					<header data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-ee5658a elementor-section-full_width elementor-section-content-middle elementor-section-height-min-height elementor-hidden-mobile elementor-section-height-default elementor-section-items-middle" data-id="ee5658a" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;],&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-29344d1d" data-id="29344d1d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7ecf346a elementor-widget elementor-widget-image" data-id="7ecf346a" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
											<a href="/">
							<img loading="lazy" width="740" height="369" src="https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4.png" class="attachment-full size-full wp-image-25437" alt="ForHair hair transplant clinic logo" srcset="https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4.png 740w, https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4-300x150.png 300w" sizes="(max-width: 740px) 100vw, 740px" />								</a>
											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6f9c5036" data-id="6f9c5036" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8653aaf elementor-hidden-mobile elementor-hidden-tablet elementor-widget elementor-widget-mdp-huger-elementor" data-id="8653aaf" data-element_type="widget" data-e-type="widget" data-widget_type="mdp-huger-elementor.default">
				<div class="elementor-widget-container">
					        <!-- Start Huger for Elementor WordPress Plugin -->
        <div class="mdp-huger-elementor-box"
        data-breakpoint = "767px"
        data-click-area = "text"
        data-widget-id="8653aaf"
        data-submenu-hover-close="on-leave"
        data-open-submenu-onclik="no"
        data-submenu-desktop-click-area=""
        data-set-active-top-menu=""
        >
                            <div class="mdp-huger-elementor-toggle-btn">
                <div class="mdp-huger-elementor-toggle-icon">
                    <i aria-hidden="1" class="fa fa-bars"></i>                </div>
            </div>
                        <div class="mdp-huger-elementor-mega-menu-wrapper">
                                    <div class="mdp-huger-elementor-toggle-btn mdp-huger-elementor-toggle-close-btn">
                        <div class="mdp-huger-elementor-toggle-close-icon">
                            <i aria-hidden="1" class="fas fa-times"></i>                        </div>
                    </div>
                                <nav class="mdp-huger-elementor-main-nav mdp-huger-elementor-menu mdp-huger-elementor-main-nav-horizontal mdp-huger-elementor-main-nav-submenu-expand-bottom">
                                                                   <div class="mdp-huger-elementor-mega-menu-item " data-widget-id="8653aaf">
                  <a class="mdp-huger-elementor-menu-link mdp-huger-elementor-mega-menu-item-text"
                     href="https://www.forhair.com/why-forhair/"
                     data-post-link-id="2303"
                                       >
                    <div class="mdp-huger-elementor-mega-menu-icon">
                                            </div>
                    <span class="mdp-huger-elementor-mega-menu-title"> About </span>
                                        <div class="mdp-huger-elementor-submenu-indicator">
                                                <i class="fas fa-angle-down"></i>
                                            </div>
                                      </a>
                                                  <div class="mdp-huger-elementor-submenu mdp-huger-elementor-submenu-bottom"  style="opacity: 0"  >
            		<div data-elementor-type="section" data-elementor-id="20468" class="elementor elementor-20468 elementor-location-header" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-a06f6f4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a06f6f4" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-f38fd73" data-id="f38fd73" data-element_type="column" data-e-type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5bc3550 elementor-widget elementor-widget-heading" data-id="5bc3550" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">About Forhair</div>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-cea373f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cea373f" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e6b975d" data-id="e6b975d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-cec7d5a elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="cec7d5a" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/dr-cole/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Dr. John P. Cole, MD</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-e0f8cc0 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="e0f8cc0" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/why-forhair/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">About Forhair</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-db2708c elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="db2708c" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/our-hair-transplant-technology/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Our Technology</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-acd0075 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="acd0075" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/travel-to-atlanta/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Travel to Atlanta</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-7a9c6f2 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="7a9c6f2" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/forhair-nyc/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Forhair In NYC</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-1cb98e6 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="1cb98e6" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/contact-us/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Contact Us</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-e081671 elementor-shape-circle e-grid-align-left elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="e081671" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
							<div class="elementor-social-icons-wrapper elementor-grid" role="list">
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-0945a39" href="https://www.facebook.com/forhair.clinic" target="_blank">
						<span class="elementor-screen-only">Facebook</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-539a6dc" href="https://twitter.com/ForhairClinic" target="_blank">
						<span class="elementor-screen-only">Twitter</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-f6bd2d5" href="https://www.youtube.com/c/forhair/featured" target="_blank">
						<span class="elementor-screen-only">Youtube</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-6388ed3" href="https://www.instagram.com/forhair.clinic/" target="_blank">
						<span class="elementor-screen-only">Instagram</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>					</a>
				</span>
					</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-aba7dd6 elementor-widget__width-initial elementor-align-center elementor-widget elementor-widget-button" data-id="aba7dd6" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-comments" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			</span>
									<span class="elementor-button-text">Free Consultation</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9a0eda1 elementor-hidden-tablet elementor-hidden-mobile" data-id="9a0eda1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ffaa7d8 elementor-widget__width-initial elementor-widget elementor-widget-spacer" data-id="ffaa7d8" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b74771a" data-id="b74771a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c00bad2 elementor-widget elementor-widget-heading" data-id="c00bad2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Tips &amp; Guidance</div>				</div>
				</div>
				<div class="elementor-element elementor-element-58a14f9 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="58a14f9" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/blog/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">The Hair Restoration Blog</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-88e89b8 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="88e89b8" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Feedback</div>				</div>
				</div>
				<div class="elementor-element elementor-element-e5a43ae elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="e5a43ae" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-transplant-stories/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Hair Transplant Stories</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-54a8d01 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="54a8d01" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/patient-reviews/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Patient Reviews</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f087059 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="f087059" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Where To Find Us </div>				</div>
				</div>
				<div class="elementor-element elementor-element-4eed408 elementor-widget__width-initial elementor-widget elementor-widget-icon-box" data-id="4eed408" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://g.page/forhair-hair-transplant-clinic?share" target="_blank" >
							Atlanta Clinic						</a>
					</div>
				
									<p class="elementor-icon-box-description">
						1070 Powers Place, Alpharetta, Georgia<br>30009 U.S.					</p>
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-4001d40 elementor-widget__width-initial elementor-widget elementor-widget-icon-box" data-id="4001d40" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://goo.gl/maps/jNwb4HFoNX6cgtss6" target="_blank" >
							New York Clinic						</a>
					</div>
				
									<p class="elementor-icon-box-description">
						200 west 57th St, Suite 403, New York, NY<br>
10019 U.S.					</p>
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		        </div>

                                          </div>
                                                                                   <div class="mdp-huger-elementor-mega-menu-item " data-widget-id="8653aaf">
                  <a class="mdp-huger-elementor-menu-link mdp-huger-elementor-mega-menu-item-text"
                     href="https://www.forhair.com/hair-transplant-procedure-overview/"
                     data-post-link-id="618"
                                       >
                    <div class="mdp-huger-elementor-mega-menu-icon">
                                            </div>
                    <span class="mdp-huger-elementor-mega-menu-title"> Hair Transplants </span>
                                        <div class="mdp-huger-elementor-submenu-indicator">
                                                <i class="fas fa-angle-down"></i>
                                            </div>
                                      </a>
                                                  <div class="mdp-huger-elementor-submenu mdp-huger-elementor-submenu-bottom"  style="opacity: 0"  >
            		<div data-elementor-type="section" data-elementor-id="20387" class="elementor elementor-20387 elementor-location-header" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-4b0f5e6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4b0f5e6" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a96562b elementor-hidden-tablet elementor-hidden-mobile" data-id="a96562b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-24e3c25 elementor-widget__width-initial elementor-widget elementor-widget-spacer" data-id="24e3c25" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c3aef6b" data-id="c3aef6b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a9a003b elementor-widget elementor-widget-heading" data-id="a9a003b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Our Procedures &amp; Techniques</div>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-b3974db elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b3974db" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-fbf7c1e" data-id="fbf7c1e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7a9c6f2 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="7a9c6f2" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/advanced-fue-hair-transplant-cit/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Advanced FUE - CIT®</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-acd0075 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="acd0075" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/no-shave-fue/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">No Shave FUE - C2G </span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-c1c4a04 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="c1c4a04" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/body-hair-transplant-bht/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Body Hair Transplant</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-58a14f9 elementor-widget elementor-widget-button" data-id="58a14f9" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-transplant-repair/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Hair Transplant Repair</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-71aa369 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="71aa369" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-medium">Schedule a Free consultation today. </div>				</div>
				</div>
				<div class="elementor-element elementor-element-592de2a elementor-widget elementor-widget-text-editor" data-id="592de2a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Dr. Cole carefully assesses each case on an individual basis and offers candid feedback and treatment alternatives.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-a347779 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="a347779" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Free Consultation</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-292df95" data-id="292df95" data-element_type="column" data-e-type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-fca701d elementor-widget elementor-widget-heading" data-id="fca701d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">About Hair Transplants</div>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-341fcba elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="341fcba" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-28b88c1" data-id="28b88c1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-cec7d5a elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="cec7d5a" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-transplant-procedure-overview/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Procedure Overview</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-e0f8cc0 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="e0f8cc0" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/fut-vs-fue-method/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">FUT vs FUE Method    </span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-1cb98e6 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="1cb98e6" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/what-does-it-cost/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">How Much Does it Cost?</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-e258783 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="e258783" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/frequently-asked-questions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Frequently Asked Questions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-0873fab elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="0873fab" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-medium">FUE Hair Transplant Graft Calculator</div>				</div>
				</div>
				<div class="elementor-element elementor-element-4e3c1a1 elementor-widget elementor-widget-text-editor" data-id="4e3c1a1" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Get a personalized hair transplant graft estimate based on the Norwood Scale classification, treatment area and hair density.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-a2e2059 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="a2e2059" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-transplant-calculator/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">FUE Graft Calculator</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		        </div>

                                          </div>
                                                                                   <div class="mdp-huger-elementor-mega-menu-item " data-widget-id="8653aaf">
                  <a class="mdp-huger-elementor-menu-link mdp-huger-elementor-mega-menu-item-text"
                     href="https://www.forhair.com/non-surgical-solutions/"
                     data-post-link-id="1865"
                                       >
                    <div class="mdp-huger-elementor-mega-menu-icon">
                                            </div>
                    <span class="mdp-huger-elementor-mega-menu-title"> Non-Surgical </span>
                                        <div class="mdp-huger-elementor-submenu-indicator">
                                                <i class="fas fa-angle-down"></i>
                                            </div>
                                      </a>
                                                  <div class="mdp-huger-elementor-submenu mdp-huger-elementor-submenu-bottom"  style="opacity: 0"  >
            		<div data-elementor-type="section" data-elementor-id="20456" class="elementor elementor-20456 elementor-location-header" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-11f3fc5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="11f3fc5" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-9d6ecfb" data-id="9d6ecfb" data-element_type="column" data-e-type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-4126ae6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4126ae6" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2aa3e66" data-id="2aa3e66" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ee6e50c elementor-widget elementor-widget-heading" data-id="ee6e50c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Regenerative Medicine</div>				</div>
				</div>
				<div class="elementor-element elementor-element-9003ad2 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="9003ad2" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/alma-ted-hair-restoration-device/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Alma TED</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-be74083 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="be74083" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.forhair.com/crp-cole-prp-treatment/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">CRP - Cole PRP</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-36f976d elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="36f976d" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/stem-cell-treatments/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Stem Cell Treatments</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-80daa14 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="80daa14" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.forhair.com/exosomes-hair-restoration-treatment/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Exosomes Treatments</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-ed23135 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="ed23135" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="https://www.forhair.com/tricopat-regenerative-hair-loss-therapy/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Tricopat Treatments</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-ac4ad79 elementor-widget elementor-widget-image" data-id="ac4ad79" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.forhair.com/hair-cycle-products/">
							<img loading="lazy" width="500" height="290" src="https://www.forhair.com/wp-content/uploads/2023/06/haircycle.jpg" class="attachment-large size-large wp-image-38378" alt="HairCycle hair growth products for men and women" />								</a>
															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6e98a44" data-id="6e98a44" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ac8e429 elementor-widget elementor-widget-button" data-id="ac8e429" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/scalp-micro-pigmentation/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Scalp Micro Pigmentation (SMP)</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-fc83053 elementor-widget elementor-widget-heading" data-id="fc83053" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small">Hair Loss Information</div>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-fc8e0ad elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fc8e0ad" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f63f0de" data-id="f63f0de" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-b8a5288 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="b8a5288" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/non-surgical-solutions/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Non-Surgical Solutions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-008e494 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="008e494" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-loss-causes-treatments/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Hair Loss Causes</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-064d5be elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="064d5be" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-loss-pattern/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Hair Loss Pattern</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f6c08da elementor-widget elementor-widget-button" data-id="f6c08da" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/hair-growth-cycles/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Hair Growth Cycles </span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-bcca121 elementor-widget elementor-widget-text-editor" data-id="bcca121" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									Discover <a href="https://www.forhair.com/hair-cycle-products/">HairCycle Products</a>: physician-formulated natural shampoo and conditioner system revolutionizing hair growth and scalp health. Goodbye harsh chemicals! Developed by Dr. John Cole, pioneer of FUE hair transplant techniques, these all-natural products support optimal healing after hair restoration procedures. Plus, HairCycle&#8217;s advanced formulation benefits both hair follicles and skin health with DHT-blocking ingredients and growth-stimulating botanicals.								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		        </div>

                                          </div>
                                                                                   <div class="mdp-huger-elementor-mega-menu-item " data-widget-id="8653aaf">
                  <a class="mdp-huger-elementor-menu-link mdp-huger-elementor-mega-menu-item-text"
                     href="https://www.forhair.com/before-after-photos/"
                     data-post-link-id=""
                                       >
                    <div class="mdp-huger-elementor-mega-menu-icon">
                                            </div>
                    <span class="mdp-huger-elementor-mega-menu-title"> Results </span>
                                        <div class="mdp-huger-elementor-submenu-indicator">
                                                <i class="fas fa-angle-down"></i>
                                            </div>
                                      </a>
                                                  <div class="mdp-huger-elementor-submenu mdp-huger-elementor-submenu-bottom"  style="opacity: 0"  >
            		<div data-elementor-type="section" data-elementor-id="20460" class="elementor elementor-20460 elementor-location-header" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-e94e65e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e94e65e" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-9ec9235" data-id="9ec9235" data-element_type="column" data-e-type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ea8b5b3 elementor-widget elementor-widget-heading" data-id="ea8b5b3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-small"><a href="/before-after-photos/">Real Results, Real Patients</a></div>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-5029e64 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5029e64" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-1d9fd34" data-id="1d9fd34" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7a9c6f2 elementor-widget__width-initial elementor-widget elementor-widget-button" data-id="7a9c6f2" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/before-after-photos/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-right" viewBox="0 0 256 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>			</span>
									<span class="elementor-button-text">Before &amp; After Photos</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-0024d45 elementor-widget elementor-widget-testimonial" data-id="0024d45" data-element_type="widget" data-e-type="widget" data-widget_type="testimonial.default">
				<div class="elementor-widget-container">
							<div class="elementor-testimonial-wrapper">
							<div class="elementor-testimonial-content">"Dr. Cole offers world-class, cutting-edge procedures with a level of skill, perfection, and care that is far beyond any other doctors that I have experienced in the past."</div>
			
						<div class="elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside">
				<div class="elementor-testimonial-meta-inner">
											<div class="elementor-testimonial-image">
							<img src="https://www.forhair.com/wp-content/uploads/elementor/thumbs/scott-king-forhair-patient-rm8qdbju5krxut63g9sbhdvmjpuyb8y5k8otb1snvs.png" title="scott-king-forhair-patient" alt="Happy hair transplant patient review" loading="lazy" />						</div>
					
										<div class="elementor-testimonial-details">
														<div class="elementor-testimonial-name">Scott King</div>
																						<div class="elementor-testimonial-job">FUE/CIT Patient</div>
													</div>
									</div>
			</div>
					</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a186d1b elementor-hidden-tablet elementor-hidden-mobile" data-id="a186d1b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6c21f27 elementor-widget__width-initial elementor-widget elementor-widget-spacer" data-id="6c21f27" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default">
				<div class="elementor-widget-container">
							<div class="elementor-spacer">
			<div class="elementor-spacer-inner"></div>
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7370657" data-id="7370657" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-e669eb3 elementor-widget elementor-widget-image" data-id="e669eb3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://www.forhair.com/before-after-photos/">
							<img loading="lazy" width="351" height="253" src="https://www.forhair.com/wp-content/uploads/2023/06/Before-After-Hair-Transplant-Procedure.png" class="attachment-large size-large wp-image-20635" alt="Before &amp; After Hair Transplant Procedure" srcset="https://www.forhair.com/wp-content/uploads/2023/06/Before-After-Hair-Transplant-Procedure.png 351w, https://www.forhair.com/wp-content/uploads/2023/06/Before-After-Hair-Transplant-Procedure-300x216.png 300w" sizes="(max-width: 351px) 100vw, 351px" />								</a>
															</div>
				</div>
				<div class="elementor-element elementor-element-376abb6 elementor-widget__width-initial elementor-align-center elementor-widget elementor-widget-button" data-id="376abb6" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://www.forhair.com/before-after-photos/">
						<span class="elementor-button-content-wrapper">
						<span class="elementor-button-icon">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-eye" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z"></path></svg>			</span>
									<span class="elementor-button-text">View Photo Results</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-03a8576 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="03a8576" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-medium">Let us make your hair restoration goals our next success story!</div>				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		        </div>

                                          </div>
                                                    </nav>
            </div>
                                <style>
                @media only screen and (max-width:  767px) {
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu{
                        display: inline-flex;
                        flex-direction: column;
                        padding-top: 50px;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu {
                        padding-top: 0 !important;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-left .mdp-huger-elementor-submenu-indicator,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-left a .mdp-huger-elementor-submenu-indicator,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-left .mdp-huger-wp-menu-submenu-indicator {
                        transform: rotate(0deg);
                        order: 1;
                        margin-right: 0;
                        margin-left: 10px;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-right .mdp-huger-elementor-submenu-indicator,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-right a .mdp-huger-elementor-submenu-indicator,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-right .mdp-huger-wp-menu-submenu-indicator {
                        transform: rotate(0deg);
                        margin-left: 10px;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-submenu,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-dropdown {
                      animation: initial !important;
                      position: relative;
                      top: 0;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-submenu.mdp-huger-elementor-submenu-show,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-dropdown.mdp-huger-elementor-wp-menu-dropdown-show {
                        display: block;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-toggle-btn {
                        display: flex !important;
                        align-items: center;
                        position: relative !important;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-toggle-close-icon {
                        cursor: pointer;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-toggle-icon {
                        cursor: pointer;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-mega-menu-wrapper {
                        position: fixed;
                        overflow-y: auto;
                        top: 0;
                        left: -200%;
                                                width: 85%;
                                                 height: 100%;
                        z-index: 1000;
                        background-color: #fff;
                        padding: 10px;
                        transition: all .3s ease;
                    }
                    .elementor-element-8653aaf .mdp-huger-elementor-mega-menu-wrapper.mdp-huger-elementor-mega-menu-wrapper--active{
                    left: 0;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-mega-menu-item{
                        display: flex;
                        flex-direction: column
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-item  {
                        display: block;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-dropdown .mdp-huger-elementor-wp-menu-item > .mdp-huger-elementor-wp-menu-dropdown {
                        left: 0 !important;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-menu-dropdown-active {
                        display: block !important;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-bottom .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-bottom .mdp-huger-elementor-submenu,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-bottom .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-bottom .mdp-huger-elementor-submenu {
                        top: 0 !important;
                    }

                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-left .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-left .mdp-huger-elementor-submenu,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-left .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-left .mdp-huger-elementor-submenu {
                        top: 0 !important;
                        left: 0 !important;
                        right: auto !important;
                    }
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-right .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-right .mdp-huger-elementor-submenu,
                    .elementor-element-8653aaf .mdp-huger-elementor-wp-menu-submenu-expand-right .mdp-huger-elementor-wp-menu-dropdown,
                    .elementor-element-8653aaf .mdp-huger-elementor-main-nav-submenu-expand-right .mdp-huger-elementor-submenu {
                        top: 0 !important;
                        right: 0 !important;
                        left: auto;
                    }

                }
            </style>
                        </div>
        <!-- End Huger for Elementor WordPress Plugin -->
	            <script>
                window.addEventListener( 'load', () => {
                    document.querySelectorAll( '.elementor-element-8653aaf .mdp-huger-elementor-submenu' ).forEach( dropdown => {
                        dropdown.style.opacity = 1;
                    } );
                } );
            </script>
        				</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-39fc2e0f elementor-hidden-tablet" data-id="39fc2e0f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-d48b095 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d48b095" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-no">
					<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-a5abf64" data-id="a5abf64" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-92ab515 elementor-hidden-tablet elementor-view-default elementor-widget elementor-widget-icon" data-id="92ab515" 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">
			<svg aria-hidden="true" class="e-font-icon-svg e-fas-phone-alt" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z"></path></svg>			</div>
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8cad777" data-id="8cad777" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-9b07bb0 elementor-hidden-mobile elementor-widget elementor-widget-heading" data-id="9b07bb0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<div class="elementor-heading-title elementor-size-default"><a href="tel:8003684247">Call (800)-368-4247</a></div>				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2e345f6d elementor-hidden-tablet elementor-hidden-mobile" data-id="2e345f6d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-0b5cdb4 elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="0b5cdb4" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;tada&quot;}" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--winona eael-cb-icon-position-" href="/free-online-consultation/" data-text="Start Now!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Free Consultation</span>

                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
					</div>
		</div>
					</div>
		</header>
		<header data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-7dafd29 e-con-full elementor-hidden-desktop e-flex e-con e-parent" data-id="7dafd29" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky_effects_offset&quot;:150,&quot;sticky_on&quot;:[&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-53616a2 e-con-full e-flex e-con e-child" data-id="53616a2" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-d62e3be elementor-widget elementor-widget-image" data-id="d62e3be" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="/">
							<img src="https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-full.png" class="attachment-full size-full wp-image-3809" alt="Forhair - Atlanta &amp; New York" />								</a>
															</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-0acbebd e-con-full e-flex e-con e-child" data-id="0acbebd" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f62fd1c elementor-invisible elementor-widget elementor-widget-eael-creative-button" data-id="f62fd1c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;tada&quot;}" data-widget_type="eael-creative-button.default">
				<div class="elementor-widget-container">
					        <div class="eael-creative-button-wrapper">

            <a class="eael-creative-button eael-creative-button--saqui eael-cb-icon-position-" href="/free-online-consultation/" data-text="Start Now!">
            	    
                <div class="creative-button-inner">

                    
                    <span class="cretive-button-text">Free Consultation</span>

                                    </div>
	                        </a>
        </div>
        				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ede78cc e-con-full e-flex e-con e-child" data-id="ede78cc" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-4c0a255 elementor-widget-mobile__width-auto elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box" data-id="4c0a255" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="tel:8003684247" class="elementor-icon" tabindex="-1" aria-label="Call">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-phone-alt" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z"></path></svg>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="tel:8003684247" >
							Call						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-0d3ad6c e-con-full e-flex e-con e-child" data-id="0d3ad6c" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f59ccf7 elementor-nav-menu--stretch elementor-widget-mobile__width-auto elementor-hidden-desktop 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="f59ccf7" data-element_type="widget" data-e-type="widget" data-settings="{&quot;full_width&quot;:&quot;stretch&quot;,&quot;sticky_on&quot;:[&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky&quot;:&quot;top&quot;,&quot;toggle_icon_hover_animation&quot;:&quot;pulse-grow&quot;,&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;svg aria-hidden=\&quot;true\&quot; class=\&quot;e-font-icon-svg e-fas-caret-down\&quot; viewBox=\&quot;0 0 320 512\&quot; xmlns=\&quot;http:\/\/www.w3.org\/2000\/svg\&quot;&gt;&lt;path d=\&quot;M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\&quot;&gt;&lt;\/path&gt;&lt;\/svg&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;,&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}" 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-none">
				<ul id="menu-1-f59ccf7" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-535"><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-post_type menu-item-object-page menu-item-3836"><a href="https://www.forhair.com/dr-cole/" class="elementor-sub-item">Dr. John P. Cole, MD</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3835"><a href="https://www.forhair.com/why-forhair/" class="elementor-sub-item">About Forhair</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13953"><a href="https://www.forhair.com/our-hair-transplant-technology/" class="elementor-sub-item">Our Hair Transplant Technology</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3837"><a href="https://www.forhair.com/forhair-nyc/" class="elementor-sub-item">Forhair in NYC</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5366"><a href="https://www.forhair.com/travel-to-atlanta/" class="elementor-sub-item">Travel to Atlanta</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5215"><a href="https://www.forhair.com/contact-us/" class="elementor-sub-item">Contact Us</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3839"><a href="https://www.forhair.com/blog/" class="elementor-sub-item">Hair Care Blog, Tips &#038; Guidance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-531"><a class="elementor-item">Hair Transplants</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3815"><a href="https://www.forhair.com/hair-transplant-procedure-overview/" class="elementor-sub-item">Procedure Overview</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3816"><a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/" class="elementor-sub-item">Advanced FUE: CIT® vs. Neograft &#038; ARTAS</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3817"><a href="https://www.forhair.com/no-shave-fue/" class="elementor-sub-item">No Shave FUE – C2G</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3818"><a href="https://www.forhair.com/hair-transplant-repair/" class="elementor-sub-item">Hair Transplant Repair: Fix Botched Results, Plugs &#038; FUT Scars</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3819"><a href="https://www.forhair.com/body-hair-transplant-bht/" class="elementor-sub-item">Body Hair Transplant: Beard &#038; Chest to Scalp FUE</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3814"><a href="https://www.forhair.com/fut-vs-fue-method/" class="elementor-sub-item">FUT vs FUE Method</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3820"><a href="https://www.forhair.com/what-does-it-cost/" class="elementor-sub-item">How Much Does It Cost?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3821"><a href="https://www.forhair.com/frequently-asked-questions/" class="elementor-sub-item">Frequently Asked Questions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39654"><a href="https://www.forhair.com/hair-transplant-calculator/" class="elementor-sub-item">Hair Transplant Graft Calculator</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-532"><a href="#" class="elementor-item elementor-item-anchor">Non-Surgical</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3822"><a href="https://www.forhair.com/hair-loss-causes-treatments/" class="elementor-sub-item">Hair Loss Causes &amp; Treatments</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5916"><a href="https://www.forhair.com/non-surgical-solutions/" class="elementor-sub-item">Non-Surgical Solutions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5182"><a href="https://www.forhair.com/alma-ted-hair-restoration-device/" class="elementor-sub-item">Alma TED Hair Restoration</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38196"><a href="https://www.forhair.com/crp-cole-prp-treatment/" class="elementor-sub-item">CRP (Cole PRP) Treatment</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3829"><a href="https://www.forhair.com/scalp-micro-pigmentation/" class="elementor-sub-item">Scalp Micro Pigmentation (SMP)</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3828"><a href="https://www.forhair.com/stem-cell-treatments/" class="elementor-sub-item">Stem Cell Treatments</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3824"><a href="https://www.forhair.com/hair-growth-cycles/" class="elementor-sub-item">Hair Growth Cycles</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3825"><a href="https://www.forhair.com/hair-loss-pattern/" class="elementor-sub-item">Hair Loss Pattern</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3823"><a href="https://www.forhair.com/hair-cycle-products/" class="elementor-sub-item">Hair Cycle Products</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-533"><a href="#" class="elementor-item elementor-item-anchor">Results</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type_archive menu-item-object-before-after-photos menu-item-32630"><a href="https://www.forhair.com/before-after-photos/" class="elementor-sub-item">Before &#038; After Patient Photos</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3833"><a href="https://www.forhair.com/hair-transplant-stories/" class="elementor-sub-item">Hair Transplant Stories</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5208"><a href="https://www.forhair.com/patient-reviews/" class="elementor-sub-item">Patient Reviews</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38947"><a href="https://www.forhair.com/contact-us/" class="elementor-item">Contact Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38946"><a href="https://www.forhair.com/free-online-consultation/" class="elementor-item">Free Consultation</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41630"><a href="tel:8003684247" class="elementor-item">Call Free: (800)-368-4247</a></li>
</ul>			</nav>
					<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
			<svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open elementor-animation-pulse-grow e-font-icon-svg e-eicon-menu-bar" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z"></path></svg><svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close elementor-animation-pulse-grow e-font-icon-svg e-eicon-close" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z"></path></svg>		</div>
					<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-f59ccf7" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-535"><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-post_type menu-item-object-page menu-item-3836"><a href="https://www.forhair.com/dr-cole/" class="elementor-sub-item" tabindex="-1">Dr. John P. Cole, MD</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3835"><a href="https://www.forhair.com/why-forhair/" class="elementor-sub-item" tabindex="-1">About Forhair</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13953"><a href="https://www.forhair.com/our-hair-transplant-technology/" class="elementor-sub-item" tabindex="-1">Our Hair Transplant Technology</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3837"><a href="https://www.forhair.com/forhair-nyc/" class="elementor-sub-item" tabindex="-1">Forhair in NYC</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5366"><a href="https://www.forhair.com/travel-to-atlanta/" class="elementor-sub-item" tabindex="-1">Travel to Atlanta</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5215"><a href="https://www.forhair.com/contact-us/" class="elementor-sub-item" tabindex="-1">Contact Us</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3839"><a href="https://www.forhair.com/blog/" class="elementor-sub-item" tabindex="-1">Hair Care Blog, Tips &#038; Guidance</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-531"><a class="elementor-item" tabindex="-1">Hair Transplants</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3815"><a href="https://www.forhair.com/hair-transplant-procedure-overview/" class="elementor-sub-item" tabindex="-1">Procedure Overview</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3816"><a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/" class="elementor-sub-item" tabindex="-1">Advanced FUE: CIT® vs. Neograft &#038; ARTAS</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3817"><a href="https://www.forhair.com/no-shave-fue/" class="elementor-sub-item" tabindex="-1">No Shave FUE – C2G</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3818"><a href="https://www.forhair.com/hair-transplant-repair/" class="elementor-sub-item" tabindex="-1">Hair Transplant Repair: Fix Botched Results, Plugs &#038; FUT Scars</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3819"><a href="https://www.forhair.com/body-hair-transplant-bht/" class="elementor-sub-item" tabindex="-1">Body Hair Transplant: Beard &#038; Chest to Scalp FUE</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3814"><a href="https://www.forhair.com/fut-vs-fue-method/" class="elementor-sub-item" tabindex="-1">FUT vs FUE Method</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3820"><a href="https://www.forhair.com/what-does-it-cost/" class="elementor-sub-item" tabindex="-1">How Much Does It Cost?</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3821"><a href="https://www.forhair.com/frequently-asked-questions/" class="elementor-sub-item" tabindex="-1">Frequently Asked Questions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39654"><a href="https://www.forhair.com/hair-transplant-calculator/" class="elementor-sub-item" tabindex="-1">Hair Transplant Graft Calculator</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-532"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Non-Surgical</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3822"><a href="https://www.forhair.com/hair-loss-causes-treatments/" class="elementor-sub-item" tabindex="-1">Hair Loss Causes &amp; Treatments</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5916"><a href="https://www.forhair.com/non-surgical-solutions/" class="elementor-sub-item" tabindex="-1">Non-Surgical Solutions</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5182"><a href="https://www.forhair.com/alma-ted-hair-restoration-device/" class="elementor-sub-item" tabindex="-1">Alma TED Hair Restoration</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38196"><a href="https://www.forhair.com/crp-cole-prp-treatment/" class="elementor-sub-item" tabindex="-1">CRP (Cole PRP) Treatment</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3829"><a href="https://www.forhair.com/scalp-micro-pigmentation/" class="elementor-sub-item" tabindex="-1">Scalp Micro Pigmentation (SMP)</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3828"><a href="https://www.forhair.com/stem-cell-treatments/" class="elementor-sub-item" tabindex="-1">Stem Cell Treatments</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3824"><a href="https://www.forhair.com/hair-growth-cycles/" class="elementor-sub-item" tabindex="-1">Hair Growth Cycles</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3825"><a href="https://www.forhair.com/hair-loss-pattern/" class="elementor-sub-item" tabindex="-1">Hair Loss Pattern</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3823"><a href="https://www.forhair.com/hair-cycle-products/" class="elementor-sub-item" tabindex="-1">Hair Cycle Products</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-533"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Results</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-post_type_archive menu-item-object-before-after-photos menu-item-32630"><a href="https://www.forhair.com/before-after-photos/" class="elementor-sub-item" tabindex="-1">Before &#038; After Patient Photos</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3833"><a href="https://www.forhair.com/hair-transplant-stories/" class="elementor-sub-item" tabindex="-1">Hair Transplant Stories</a></li>
	<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5208"><a href="https://www.forhair.com/patient-reviews/" class="elementor-sub-item" tabindex="-1">Patient Reviews</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38947"><a href="https://www.forhair.com/contact-us/" class="elementor-item" tabindex="-1">Contact Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38946"><a href="https://www.forhair.com/free-online-consultation/" class="elementor-item" tabindex="-1">Free Consultation</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41630"><a href="tel:8003684247" class="elementor-item" tabindex="-1">Call Free: (800)-368-4247</a></li>
</ul>			</nav>
						</div>
				</div>
				</div>
				</header>
				</header>
				<div data-elementor-type="single-page" data-elementor-id="112" class="elementor elementor-112 elementor-location-single post-28652 page type-page status-publish has-post-thumbnail hentry" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-176f19d elementor-section-height-min-height elementor-reverse-mobile elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="176f19d" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}">
							<div class="elementor-background-overlay"></div>
						<div class="elementor-shape elementor-shape-bottom" aria-hidden="true" data-negative="false">
			<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
	<path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/>
</svg>		</div>
					<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e61a4be" data-id="e61a4be" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
							</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-c6b5862 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="c6b5862" 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-ff9d294" data-id="ff9d294" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c1b232c elementor-widget elementor-widget-theme-post-content" data-id="c1b232c" data-element_type="widget" data-e-type="widget" data-widget_type="theme-post-content.default">
				<div class="elementor-widget-container">
							<div data-elementor-type="wp-page" data-elementor-id="28652" class="elementor elementor-28652" data-elementor-post-type="page">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-38585c9 e-con-full e-flex e-con e-parent" data-id="38585c9" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;}">
				<div class="elementor-shape elementor-shape-bottom" aria-hidden="true" data-negative="false">
			<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
	<path class="elementor-shape-fill" d="M0,6V0h1000v100L0,6z"/>
</svg>		</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ad67f5b e-con-full e-flex e-con e-child" data-id="ad67f5b" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-4afe2a3 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="4afe2a3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img fetchpriority="high" fetchpriority="high" decoding="async" width="750" height="750" src="https://www.forhair.com/wp-content/uploads/2023/12/hair-restoration-results-slider-bbv.png" class="attachment-large size-large wp-image-28295" alt="Hair Restoration Results Slider 1" srcset="https://www.forhair.com/wp-content/uploads/2023/12/hair-restoration-results-slider-bbv.png 750w, https://www.forhair.com/wp-content/uploads/2023/12/hair-restoration-results-slider-bbv-300x300.png 300w, https://www.forhair.com/wp-content/uploads/2023/12/hair-restoration-results-slider-bbv-150x150.png 150w" sizes="(max-width: 750px) 100vw, 750px" />															</div>
				</div>
				<div class="elementor-element elementor-element-9bf13ec elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="9bf13ec" 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">Internationally Acclaimed FUE Hair Transplant Clinic in Atlanta &amp; New York</p>				</div>
				</div>
				<div class="elementor-element elementor-element-bc3d07d elementor-widget elementor-widget-heading" data-id="bc3d07d" 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">Rated as the Leading Hair Transplant Clinic Worldwide.</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-4dabba9 elementor-widget elementor-widget-heading" data-id="4dabba9" 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">Led by America's FUE Hair Transplant Pioneer, Dr. John P. Cole</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-6e17e1b elementor-hidden-mobile elementor-widget elementor-widget-text-editor" data-id="6e17e1b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Founded and led from our Alpharetta, Georgia headquarters, Forhair delivers world-class hair restoration with care coordinated across Atlanta and New York. With over three decades in hair transplant surgery, Dr. Cole is a pioneering Diplomat of the American Board of Hair Restoration Surgery, excelling in <a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/">FUE</a> transplantation and leading-edge <a href="https://www.forhair.com/stem-cell-treatments/">stem cell treatments</a>. A respected industry leader, He served as the Chairman of prominent organizations specializing in hair restoration surgery, advocates for industry integrity, and has invented several key <a href="https://www.forhair.com/our-hair-transplant-technology/" target="_blank" rel="noopener">hair transplant surgical tools</a> that are used globally today.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-1471f1e elementor-align-left elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="1471f1e" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-lg" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Talk to a Hair Restoration Specialist</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-9b993fe e-con-full e-flex e-con e-child" data-id="9b993fe" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-ecad16c elementor-hidden-mobile elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-image-carousel" data-id="ecad16c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;pause_on_interaction&quot;:&quot;no&quot;,&quot;speed&quot;:1001,&quot;autoplay_speed&quot;:3000,&quot;effect&quot;:&quot;fade&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;}" data-widget_type="image-carousel.default">
				<div class="elementor-widget-container">
							<div class="elementor-image-carousel-wrapper swiper" role="region" aria-roledescription="carousel" aria-label="Image Carousel" dir="ltr">
			<div class="elementor-image-carousel swiper-wrapper" aria-live="off">
								<div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 3"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://www.forhair.com/wp-content/uploads/2023/12/hair-restoration-results-slider-bbv.png" alt="Hair Restoration Results Slider 1" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 3"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://www.forhair.com/wp-content/uploads/2024/08/hair-restoration-slider-results-1-1-1024x1024.png" alt="Hair Restoration Results Slider 2" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="3 of 3"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="https://www.forhair.com/wp-content/uploads/2024/08/hair-restoration-slider-results-3-1024x1024.png" alt="Hair Restoration Results Slider 2" /></figure></div>			</div>
												<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
						<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-left" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					</div>
					<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
						<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-right" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					</div>
				
									<div class="swiper-pagination"></div>
									</div>
						</div>
				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-89a1eea elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="89a1eea" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-ccd52fa elementor-invisible elementor-widget elementor-widget-heading" data-id="ccd52fa" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Our Treatments</h2>				</div>
				</div>
					</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-05ebd1d elementor-reverse-mobile elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="05ebd1d" 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-c813856" data-id="c813856" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a801d0c elementor-invisible elementor-widget elementor-widget-heading" data-id="a801d0c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Your Hair Restoration Journey Starts Here</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-192c60f elementor-widget elementor-widget-text-editor" data-id="192c60f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><span style="color: var( --e-global-color-text );">As you embark on your journey to restore your hair, it&#8217;s important to keep in mind that the choice of practice goes beyond just the end result. It&#8217;s about entrusting your care to a team that prioritizes patient support.</span></p><p>When you <a href="https://www.forhair.com/why-forhair/">choose Forhair</a>, you&#8217;re choosing a practice that not only delivers superior outcomes but also actively cares for its patients. Effective communication is a fundamental aspect of our approach. You can expect complete and honest consultations designed to provide you with a clear understanding of what to expect from your hair restoration experience. Our team will make every effort to ensure that you are comfortable and informed throughout the process, so that together, we can reach your hair restoration goals. Our patient support team is anchored at our Georgia headquarters, providing consistent, in-person care coordination that supports patients before, during, and long after treatment.</p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2ed1693" data-id="2ed1693" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-ddf3b5d elementor-widget elementor-widget-eael-image-comparison" data-id="ddf3b5d" data-element_type="widget" data-e-type="widget" data-widget_type="eael-image-comparison.default">
				<div class="elementor-widget-container">
					<div class="eael-img-comp-wrapper"><div id="eael-image-comparison-ddf3b5d" class="eael-img-comp-container twentytwenty-container" data-offset="0.5" data-orientation="horizontal" data-before_label="Before" data-after_label="Patient BLL after slider" data-overlay="yes" data-onhover="no" data-onclick="no">
			<img decoding="async" class="eael-before-img" alt="Patient BLL before slider" src="https://www.forhair.com/wp-content/uploads/2023/12/patient-bll-before-top-comparison.jpg">
			<img decoding="async" class="eael-after-img" alt="www.forhair.com/" src="https://www.forhair.com/wp-content/uploads/2023/12/patient-bll-after-top-comparison.jpg">
        </div></div>				</div>
				</div>
				<div class="elementor-element elementor-element-8cf0e6f elementor-align-center elementor-widget elementor-widget-button" data-id="8cf0e6f" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://www.forhair.com/before-after-photos/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">View Our Results</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-22381d3 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="22381d3" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-fabd79a elementor-align-center elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="fabd79a" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-xl" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Get Started Today</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-be3267c e-flex e-con-boxed e-con e-parent" data-id="be3267c" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-c367e75 elementor-widget elementor-widget-heading" data-id="c367e75" 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">Solutions for Every Hair Goal</h2>				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-84ed5d3 e-grid e-con-boxed e-con e-parent" data-id="84ed5d3" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-46a6afb content-align-cta-default elementor-widget elementor-widget-eael-cta-box" data-id="46a6afb" data-element_type="widget" data-e-type="widget" data-widget_type="eael-cta-box.default">
				<div class="elementor-widget-container">
							<div class="eael-call-to-action cta-basic bg-lite cta-preset-1">
        <h2 class="title eael-cta-heading">Men’s Hair Restoration</h2><p><span class="relative -mx-px my-[-0.2rem] rounded px-px py-[0.2rem] transition-colors duration-100 ease-in-out">Male hair loss is unique, so every plan begins with a detailed, microscope-level scalp analysis. Our specialists use advanced <strong>CIT® FUE</strong> techniques along with regenerative options such as PRP and exosome therapy to restore density and protect your follicles.</span></p><a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/" class="cta-button cta-preset-1  ">Read More</a><a href="https://www.forhair.com/free-online-consultation/" class="cta-button cta-secondary-button ">Free Consult</a>	</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bacd5e6 content-align-cta-default elementor-widget elementor-widget-eael-cta-box" data-id="bacd5e6" data-element_type="widget" data-e-type="widget" data-widget_type="eael-cta-box.default">
				<div class="elementor-widget-container">
							<div class="eael-call-to-action cta-basic bg-lite cta-preset-1">
        <h2 class="title eael-cta-heading">Facial Hair &amp; Eyebrows</h2><div class="border bg-card text-card-foreground rounded-2xl shadow-md hover:shadow-lg transition-shadow"><div class="p-6 pt-0 space-y-4 text-sm leading-relaxed"><p>From fuller brows to a sharper beard line, our precision <strong>CIT® FUE</strong> places each graft at the ideal angle for effortless, natural flow. Perfect for sparse brows, patchy beards, or gender‑affirming styling—results that grow with you for life.</p></div></div><div class="border bg-card text-card-foreground rounded-2xl shadow-md hover:shadow-lg transition-shadow"><div class="flex flex-col space-y-1.5 p-6"> </div></div><a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/" class="cta-button cta-preset-1  ">Read More</a><a href="https://www.forhair.com/free-online-consultation/" class="cta-button cta-secondary-button ">Free Consult</a>	</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-f010dfc content-align-cta-default elementor-widget elementor-widget-eael-cta-box" data-id="f010dfc" data-element_type="widget" data-e-type="widget" data-widget_type="eael-cta-box.default">
				<div class="elementor-widget-container">
							<div class="eael-call-to-action cta-basic bg-lite cta-preset-1">
        <h2 class="title eael-cta-heading">Discrete No-Shave FUE</h2><div class="grid gap-8 w-full md:grid-cols-3"><div class="border bg-card text-card-foreground rounded-2xl shadow-md hover:shadow-lg transition-shadow"><div class="p-6 pt-0 space-y-4 text-sm leading-relaxed"><p>Looking for a completely discrete solution? Our No-Shave FUE lets you restore your hair with <b>zero shaving required</b> for the recipient area. You can <b>completely conceal the procedure</b> and return to work immediately—nobody will even know you were here.</p></div></div></div><a href="https://www.forhair.com/no-shave-fue/" class="cta-button cta-preset-1  ">Read More</a><a href="https://www.forhair.com/free-online-consultation/" class="cta-button cta-secondary-button ">Free Consult</a>	</div>
								</div>
				</div>
					</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-ef656a8 elementor-section-full_width elementor-section-height-min-height elementor-section-height-default elementor-section-items-middle" data-id="ef656a8" 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-f2986cc" data-id="f2986cc" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7bbcb0c elementor-invisible elementor-widget elementor-widget-heading" data-id="7bbcb0c" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInLeft&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Why Choose FORHAIR?</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-2564ff5 elementor-widget elementor-widget-text-editor" data-id="2564ff5" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p class="m-text-align-center">Forhair is among the world’s leading hair restoration clinics for good reason. Our clinic brings 34+ years cumulative experience in FUE, including our advanced method, Cole Isolation Technique (CIT®). The namesake innovation of Forhair’s founder, Dr. John P Cole, CIT®, uses minimal invasiveness for unnoticeable scarring and maximum yield.</p><p class="m-text-align-center">Choosing Forhair is choosing an innovative clinic with a global reputation for excellence and artistry.</p>								</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-df50aed e-con-full e-flex e-con e-parent" data-id="df50aed" data-element_type="container" data-e-type="container">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-3e19618 e-con-full e-flex e-con e-child" data-id="3e19618" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-3746d63 elementor-widget elementor-widget-image" data-id="3746d63" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" src="https://www.forhair.com/wp-content/uploads/elementor/thumbs/4300985-90w-pysk73xsggsjp30rwgf2jg9dwy6509y2e721ow7ot4.png" title="4300985-90w" alt="FUE / CIT Hand placed grafts" loading="lazy" />															</div>
				</div>
				<div class="elementor-element elementor-element-eda1ec1 elementor-widget elementor-widget-heading" data-id="eda1ec1" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">30K+ Successful Cases</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-826aa1c elementor-view-default elementor-widget elementor-widget-icon" data-id="826aa1c" 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">
			<svg aria-hidden="true" class="e-font-icon-svg e-fas-hand-holding-medical" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M159.88,175.82h64v64a16,16,0,0,0,16,16h64a16,16,0,0,0,16-16v-64h64a16,16,0,0,0,16-16v-64a16,16,0,0,0-16-16h-64v-64a16,16,0,0,0-16-16h-64a16,16,0,0,0-16,16v64h-64a16,16,0,0,0-16,16v64A16,16,0,0,0,159.88,175.82ZM568.07,336.13a39.91,39.91,0,0,0-55.93-8.47L392.47,415.84H271.86a16,16,0,0,1,0-32H350.1c16,0,30.75-10.87,33.37-26.61a32.06,32.06,0,0,0-31.62-37.38h-160a117.7,117.7,0,0,0-74.12,26.25l-46.5,37.74H15.87a16.11,16.11,0,0,0-16,16v96a16.11,16.11,0,0,0,16,16h347a104.8,104.8,0,0,0,61.7-20.27L559.6,392A40,40,0,0,0,568.07,336.13Z"></path></svg>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-1c86f20 elementor-widget elementor-widget-heading" data-id="1c86f20" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Advanced Regenerative Therapies</h4>				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-14c413c e-con-full e-flex e-con e-child" data-id="14c413c" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-b3272f1 elementor-view-default elementor-widget elementor-widget-icon" data-id="b3272f1" 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">
			<svg aria-hidden="true" class="e-font-icon-svg e-fas-award" viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"></path></svg>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-37a4bae elementor-widget elementor-widget-heading" data-id="37a4bae" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">20+ Hair Restoration Awards </h4>				</div>
				</div>
				<div class="elementor-element elementor-element-2c7c277 elementor-widget elementor-widget-image" data-id="2c7c277" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" src="https://www.forhair.com/wp-content/uploads/elementor/thumbs/hair-90w-pysk73xsggsjp30rwgf2jg9dwy6509y2e721ow7ot4.png" title="hair-90w" alt="Hair Loss Clinic" loading="lazy" />															</div>
				</div>
				<div class="elementor-element elementor-element-bbfb4ab elementor-widget elementor-widget-heading" data-id="bbfb4ab" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Inventor of CIT<sup>®</sup> FUE	</h4>				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-82ba1d9 e-con-full e-flex e-con e-child" data-id="82ba1d9" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-7c7b17e elementor-view-default elementor-widget elementor-widget-icon" data-id="7c7b17e" 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">
			<svg aria-hidden="true" class="e-font-icon-svg e-far-calendar-alt" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"></path></svg>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-0ed6ac8 elementor-widget elementor-widget-heading" data-id="0ed6ac8" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">30+ years of experience </h4>				</div>
				</div>
				<div class="elementor-element elementor-element-78e1c08 elementor-view-default elementor-widget elementor-widget-icon" data-id="78e1c08" 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">
			<svg aria-hidden="true" class="e-font-icon-svg e-far-building" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"></path></svg>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-8562609 elementor-widget elementor-widget-heading" data-id="8562609" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Clinics in ATL &amp; NYC</h4>				</div>
				</div>
				</div>
				</div>
				<div class="elementor-element elementor-element-9d8e698 elementor-align-center elementor-mobile-align-center elementor-tablet-align-center elementor-widget elementor-widget-button" data-id="9d8e698" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="https://www.forhair.com/why-forhair/" aria-label="Learn more about ForHair clinic">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Learn  About ForHair</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5a0fce5" data-id="5a0fce5" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-de482fe elementor-widget elementor-widget-image" data-id="de482fe" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img decoding="async" width="800" height="800" src="https://www.forhair.com/wp-content/uploads/2025/02/why-dr-john-cole-md-bg-blue1.jpg" class="attachment-full size-full wp-image-36793" alt="Why us - Dr. John P. Cole" srcset="https://www.forhair.com/wp-content/uploads/2025/02/why-dr-john-cole-md-bg-blue1.jpg 800w, https://www.forhair.com/wp-content/uploads/2025/02/why-dr-john-cole-md-bg-blue1-150x150.jpg 150w, https://www.forhair.com/wp-content/uploads/2025/02/why-dr-john-cole-md-bg-blue1-768x768.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-7384b54 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7384b54" 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-859c08e" data-id="859c08e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-f54b320 elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="f54b320" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1101" height="153" src="https://www.forhair.com/wp-content/uploads/2024/05/credentials_desktop-2024-2.png" class="attachment-full size-full wp-image-33015" alt="Hair Restoration Clinic Atlanta - Forhair Credentials" srcset="https://www.forhair.com/wp-content/uploads/2024/05/credentials_desktop-2024-2.png 1101w, https://www.forhair.com/wp-content/uploads/2024/05/credentials_desktop-2024-2-300x42.png 300w, https://www.forhair.com/wp-content/uploads/2024/05/credentials_desktop-2024-2-1024x142.png 1024w, https://www.forhair.com/wp-content/uploads/2024/05/credentials_desktop-2024-2-768x107.png 768w" sizes="(max-width: 1101px) 100vw, 1101px" />															</div>
				</div>
				<div class="elementor-element elementor-element-d08aa74 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="d08aa74" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
												<figure class="wp-caption">
										<img loading="lazy" loading="lazy" decoding="async" width="293" height="385" src="https://www.forhair.com/wp-content/uploads/2024/05/credentials_mobile-2024.png" class="attachment-large size-large wp-image-33026" alt="Hair Restoration Clinic Atlanta - Forhair Credentials" srcset="https://www.forhair.com/wp-content/uploads/2024/05/credentials_mobile-2024.png 293w, https://www.forhair.com/wp-content/uploads/2024/05/credentials_mobile-2024-228x300.png 228w" sizes="(max-width: 293px) 100vw, 293px" />											<figcaption class="widget-image-caption wp-caption-text"></figcaption>
										</figure>
									</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-0bb0217 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0bb0217" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9019e10" data-id="9019e10" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-e397d6f elementor-invisible elementor-widget elementor-widget-heading" data-id="e397d6f" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Groundbreaking Innovation &amp; Superior Artistry</h2>				</div>
				</div>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-204978a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="204978a" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6e97615" data-id="6e97615" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-0968e88 elementor-widget elementor-widget-eael-lightbox" data-id="0968e88" data-element_type="widget" data-e-type="widget" data-widget_type="eael-lightbox.default">
				<div class="elementor-widget-container">
					

		<div data-lightbox-type="lightbox_type_url" data-lightbox-type-url="https://www.youtube.com/watch?v=8Pn6kJFcEiA   " data-lightbox-trigger-pageload="1" class="eael-lightbox-wrapper" data-trigger="eael_lightbox_trigger_button" data-lightbox-id="lightbox_6a1bb0ce4d624" data-type="iframe" data-src="https://www.youtube.com/watch?v=8Pn6kJFcEiA" data-iframe-class="eael-lightbox-popup-window eael-lightbox-modal-window-0968e88" data-popup-layout="eael-lightbox-popup-standard" data-main-class="eael-lightbox-modal-popup-0968e88" data-close_button="yes" data-esc_exit="yes" data-click_exit="yes" data-effect="animated " data-trigger-element=".eael-modal-popup-link-6a1bb0ce4d624">
			<div class="eael-lightbox-btn">
				<img decoding="async" class="eael-trigger-image eael-modal-popup-link eael-modal-popup-link-6a1bb0ce4d624" src="https://www.forhair.com/wp-content/uploads/2023/09/Forhair-0results.jpg" alt="Dr. Cole Forhair Results">			</div><!-- close .eael-lightbox-btn -->
		</div>

		<div class="eael-lightbox-popup-window eael-lightbox-popup-window-0968e88 lightbox_type_url" id="eael-lightbox-window-6a1bb0ce4d624">
			<div class="eael-lightbox-container">
							</div>
		</div>
				</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-826155c" data-id="826155c" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-53ed93b elementor-widget elementor-widget-text-editor" data-id="53ed93b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>When it comes to dealing with hair loss, it&#8217;s important to find the right solution that works for you. Luckily, with advancements in hair restoration procedures like FUE, there are highly effective options available. Not only are these procedures permanent, they are also quick to heal and produce natural-looking results.&nbsp;</p>
<p>If you&#8217;re someone who has unfortunately experienced unsatisfactory results from a previous hair clinic, there are still options available. The CIT® procedure can help add density and improve the appearance of hairlines. And for those worried about visible scars, rest assured that Forhair offers a range of scar-correcting procedures that can render most scars unnoticeable. </p>
<p></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<div class="elementor-element elementor-element-ecc7f27 elementor-widget elementor-widget-testimonial" data-id="ecc7f27" data-element_type="widget" data-e-type="widget" data-widget_type="testimonial.default">
				<div class="elementor-widget-container">
							<div class="elementor-testimonial-wrapper">
							<div class="elementor-testimonial-content">"Dr. Cole is the originator of FUE Hair transplant Technique in the western world. He is an innovator and a great Physician. Many Clinics around the world are using his Techniques and his Tools, like us here in HDC Hair Clinic."</div>
			
						<div class="elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside">
				<div class="elementor-testimonial-meta-inner">
											<div class="elementor-testimonial-image">
							<img loading="lazy" loading="lazy" decoding="async" width="80" height="80" src="https://www.forhair.com/wp-content/uploads/2023/01/Dr-Kyriacos-Maras-MD.gif" class="attachment-full size-full wp-image-9492" alt="Dr. Kyriacos Maras,MD" />						</div>
					
										<div class="elementor-testimonial-details">
														<div class="elementor-testimonial-name">Dr. Kyriakos Maras, MD</div>
																						<div class="elementor-testimonial-job">HDC, Cyprus</div>
													</div>
									</div>
			</div>
					</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-d2411a7 elementor-align-center elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="d2411a7" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-lg" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Start a Free  Consultation</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-afbbe90 elementor-widget elementor-widget-text-editor" data-id="afbbe90" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Prefer to talk? Call now  <a href="tel:8003684247">(800)-368-4247</a></strong></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-2a743ce elementor-section-full_width elementor-section-height-min-height elementor-section-height-default elementor-section-items-middle" data-id="2a743ce" 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-de8dfb9" data-id="de8dfb9" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c25b686 elementor-invisible elementor-widget elementor-widget-heading" data-id="c25b686" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Experience The Life-Changing Confidence of Hair Restoration</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-8fdb992 elementor-widget elementor-widget-text-editor" data-id="8fdb992" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><span class="">Hair restoration procedures like FUE are the most effective treatment for hair loss. Done properly, such procedures are permanent, quick to heal, and achieve a natural look. Modern hair restoration procedures minimize scarring. In fact, </span><b>Forhair emphasizes zero noticeable scars</b>.</p><p>Forhair <a href="https://www.forhair.com/hair-transplant-procedure-overview/">hair restoration procedures</a> are performed by experts using the latest techniques. This approach recreates a head of hair indistinguishable from your original. Exceptional dedication leads to exceptional results.</p><p>But it&#8217;s not just about the procedure itself &#8211; it&#8217;s important to ensure that the person performing the procedure is a true expert using the latest techniques. This dedication to excellence is what allows Forhair to achieve truly exceptional results that recreate a head of hair that&#8217;s indistinguishable from the original.</p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-fcd3df6" data-id="fcd3df6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a8ed37b elementor-invisible elementor-widget elementor-widget-image" data-id="a8ed37b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInLeft&quot;}" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" loading="lazy" decoding="async" width="600" height="698" src="https://www.forhair.com/wp-content/uploads/2023/03/25Years-FUE-Experience-2.webp" class="attachment-large size-large wp-image-14667" alt="FUE Hair Transplant Pioneer Clinic" srcset="https://www.forhair.com/wp-content/uploads/2023/03/25Years-FUE-Experience-2.webp 600w, https://www.forhair.com/wp-content/uploads/2023/03/25Years-FUE-Experience-2-258x300.webp 258w" sizes="(max-width: 600px) 100vw, 600px" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-2894d00 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2894d00" 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-2b67018" data-id="2b67018" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5962beb elementor-invisible elementor-widget elementor-widget-heading" data-id="5962beb" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">10 Good Reasons to Receive the  CIT® (Cole FUE) Hair Transplant Procedure</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-bda57d9 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="bda57d9" data-element_type="widget" data-e-type="widget" data-widget_type="icon-list.default">
				<div class="elementor-widget-container">
							<ul class="elementor-icon-list-items">
							<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">CIT® is less invasive and does not leave a tell-tale linear scar</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Faster and less painful recovery</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Low transection rate of under 3 percent</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Natural hair lines and optimal aesthetic results</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Maximizes donor hair for harvesting</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Allows physician to “cherry-pick” grafts that will result in an optimal yield</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">CIT® is virtually undetectable</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">Can be performed even when the scalp is too tight for a strip procedure</span>
									</li>
								<li class="elementor-icon-list-item">
											<span class="elementor-icon-list-icon">
							<svg aria-hidden="true" class="e-font-icon-svg e-fas-check-circle" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path></svg>						</span>
										<span class="elementor-icon-list-text">C2G is an un-shaven version of CIT®, no need to shave your head!</span>
									</li>
						</ul>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e992521" data-id="e992521" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-inner-section elementor-element elementor-element-4110be2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4110be2" 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-inner-column elementor-element elementor-element-3c50ef2" data-id="3c50ef2" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a3b535b elementor-view-stacked elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-invisible elementor-widget elementor-widget-icon-box" data-id="a3b535b" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;flash&quot;}" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="tel:8003684247" class="elementor-icon" tabindex="-1" aria-label="Talk to a hair transplant specialist today!">
				<svg aria-hidden="true" class="e-font-icon-svg e-far-comments" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<h3 class="elementor-icon-box-title">
						<a href="tel:8003684247" >
							Talk to a hair transplant specialist today!						</a>
					</h3>
				
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-028cad3 eael-gravity-form-button-full-width elementor-widget elementor-widget-eael-gravity-form" data-id="028cad3" data-element_type="widget" data-e-type="widget" data-widget_type="eael-gravity-form.default">
				<div class="elementor-widget-container">
								<div class="eael-contact-form eael-gravity-form eael-contact-form-align-default">
		        
                <div class='gf_browser_unknown gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_4' >
                        <div class='gform_heading'>
							<p class='gform_required_legend'></p>
                        </div><form method='post' enctype='multipart/form-data'  id='gform_4'  action='/?option=com_jmap&#038;view=sitemap&#038;format=rss' data-formid='4' novalidate><div class='gf_invisible ginput_recaptchav3' data-sitekey='6Lf-VNAjAAAAAGuoodZt8HkelJusT9vyho6LhYK1' data-tabindex='0'><input id="input_1c9cb9763a57953039690a5d3630d98b" class="gfield_recaptcha_response" type="hidden" name="input_1c9cb9763a57953039690a5d3630d98b" value=""/></div>
                        <div class='gform-body gform_body'><div id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id="field_4_9" class="gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible"  ><label class='gfield_label gform-field-label' for='input_4_9'>Facebook</label><div class='ginput_container'><input name='input_9' id='input_4_9' type='text' value='' autocomplete='new-password'/></div><div class='gfield_description' id='gfield_description_4_9'>This field is for validation purposes and should be left unchanged.</div></div><fieldset id="field_4_1" class="gfield gfield--type-name gfield--width-half gfield_contains_required field_sublabel_hidden_label gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >First Name<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name no_last_name no_suffix gf_name_has_1 ginput_container_name gform-grid-row' id='input_4_1'>
                            
                            <span id='input_4_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >
                                                    <input type='text' name='input_1.3' id='input_4_1_3' value=''   aria-required='true'   placeholder='First Name'  />
                                                    <label for='input_4_1_3' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>First Name</label>
                                                </span>
                            
                            
                            
                        </div></fieldset><fieldset id="field_4_6" class="gfield gfield--type-name gfield--width-half gfield_contains_required field_sublabel_hidden_label gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Last Name<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></legend><div class='ginput_complex ginput_container ginput_container--name no_prefix no_first_name no_middle_name has_last_name no_suffix gf_name_has_1 ginput_container_name gform-grid-row' id='input_4_6'>
                            
                            
                            
                            <span id='input_4_6_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >
                                                    <input type='text' name='input_6.6' id='input_4_6_6' value=''   aria-required='true'   placeholder='Last Name'  />
                                                    <label for='input_4_6_6' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Last Name</label>
                                                </span>
                            
                        </div></fieldset><div id="field_4_3" class="gfield gfield--type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible"  ><label class='gfield_label gform-field-label' for='input_4_3'>Email<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_email'>
                            <input name='input_3' id='input_4_3' type='email' value='' class='large'   placeholder='Email' aria-required="true" aria-invalid="false"  />
                        </div></div><div id="field_4_4" class="gfield gfield--type-phone gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible"  ><label class='gfield_label gform-field-label' for='input_4_4'>Phone<span class="gfield_required"><span class="gfield_required gfield_required_asterisk">*</span></span></label><div class='ginput_container ginput_container_phone'><input name='input_4' id='input_4_4' type='tel' value='' class='large'  placeholder='Phone' aria-required="true" aria-invalid="false"   /></div></div><div id="field_4_7" class="gfield gfield--type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible"  ><div class='ginput_container ginput_container_text'><input name='input_7' id='input_4_7' type='hidden' class='gform_hidden'  aria-invalid="false" value='Frontpage Form' /></div></div><div id="field_4_8" class="gfield gfield--type-hidden gfield--width-full gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible"  ><div class='ginput_container ginput_container_text'><input name='input_8' id='input_4_8' type='hidden' class='gform_hidden'  aria-invalid="false" value='' /></div></div></div></div>
        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Schedule My Free Consultation'  /> 
            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' />
            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='gravity-theme' />
            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='' />
            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' />
            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' />
            
            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='+OebcRmAuPC+82hjFzlaSnRnNdWbauRAtQXXUXcboObwnwYUw8mDWhmCPFvnimefixwSecIbOp862ycEwSX3kRylV9+Ejtbzfk0AoGDBCeqX8cs=' />
            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' />
            <input type='hidden' class='gform_hidden' name='state_4' value='WyJbXSIsIjFkMjMyNTQ0NTA5OTVjMzIyMmNlODc5ZDc3MGQwNTkyIl0=' />
            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' />
            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' />
            <input type='hidden' name='gform_field_values' value='' />
            
        </div>
                        </form>
                        </div><script data-cfasync="false">
gform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https://www.forhair.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery('#gform_ajax_frame_4').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { /* delay the scroll by 50 milliseconds to fix a bug in chrome */  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https://www.forhair.com/wp-content/plugins/gravityforms/images/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger("gform_pre_post_render", [{ formId: "4", currentPage: "current_page", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( "gform_wrapper_4" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( "span" );            visibilitySpan.id = "gform_visibility_test_4";            gformWrapperDiv.insertAdjacentElement( "afterend", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( "gform_visibility_test_4" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );
</script>
			</div>

            <script type="text/javascript">
                var gf_global = {"gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2,"code":"USD"},"base_url":"https:\/\/www.forhair.com\/wp-content\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.forhair.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg","version_hash":"4c79b33ed49edced39cce4059d196c7d","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved.  The content contains the link to return and complete the form."}};				var gf_vars = {"active":"Active","inactive":"Inactive","save":"Save","update":"Update","previousLabel":"Previous","selectFormat":"Select a format","column":"Column","editToViewAll":"5 of %d items shown. Edit field to view all","selectAll":"Select All","enterValue":"Enter a value","formTitle":"Untitled Form","formDescription":"We would love to hear from you! Please fill out this form and we will get in touch with you shortly.","formConfirmationMessage":"Thanks for contacting us! We will get in touch with you shortly.","buttonText":"Submit","buttonDescription":"The submit button for this form","loading":"Loading...","thisFieldIf":"this field if","thisSectionIf":"this section if","thisPage":"this page if","thisFormButton":"this form button if","show":"Show","hide":"Hide","enable":"Enable","disable":"Disable","enabled":"Enabled","disabled":"Disabled","configure":"Configure","conditional_logic_text":"Conditional Logic","conditional_logic_desc":"Conditional logic allows you to change what the user sees depending on the fields they select.","conditional_logic_a11y":"Adding conditional logic to the form submit button could cause usability problems for some users and negatively impact the accessibility of your form. Learn more about button conditional logic in our <a href=\"https:\/\/docs.gravityforms.com\/field-accessibility-warning\/\" target=\"_blank\" rel=\"noopener\">documentation<span class=\"screen-reader-text\">(opens in a new tab)<\/span>&nbsp;<span class=\"gform-icon gform-icon--external-link\" aria-hidden=\"true\"><\/span><\/a>.","page":"Page","next_button":"Next Button","button":"Submit Button","all":"All","any":"Any","ofTheFollowingMatch":"of the following match:","is":"is","isNot":"is not","greaterThan":"greater than","lessThan":"less than","contains":"contains","startsWith":"starts with","endsWith":"ends with","emptyChoice":"Empty (no choices selected)","alertLegacyMode":"This form has legacy markup enabled and doesn\u2019t support field resizing within the editor. Please disable legacy markup in the form settings to enable live resizing.","thisConfirmation":"Use this confirmation if","thisNotification":"Send this notification if","confirmationSave":"Save","confirmationSaving":"Saving...","confirmationAreYouSure":"Are you sure you wish to cancel these changes?","confirmationIssueSaving":"There was an issue saving this confirmation.","confirmationConfirmDelete":"Are you sure you wish to delete this confirmation?","confirmationIssueDeleting":"There was an issue deleting this confirmation.","confirmationConfirmDiscard":"There are unsaved changes to the current confirmation. Would you like to discard these changes?","confirmationDefaultName":"Untitled Confirmation","confirmationDefaultMessage":"Thanks for contacting us! We will get in touch with you shortly.","confirmationInvalidPageSelection":"Please select a page.","confirmationInvalidRedirect":"Please enter a URL.","confirmationInvalidName":"Please enter a confirmation name.","confirmationDeleteField":"Deleting this field will also delete all entry data associated with it. 'Cancel' to abort. 'OK' to delete.","confirmationDeleteDisplayField":"You're about to delete this field. 'Cancel' to stop. 'OK' to delete","confirmationDeleteDisplayFieldTitle":"Warning","conditionalLogicDependency":"This form contains {type} conditional logic dependent upon this field. Deleting this field will deactivate those conditional logic rules and also delete all entry data associated with the field. 'Cancel' to abort. 'OK' to delete.","conditionalLogicDependencyChoice":"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to delete this choice? 'Cancel' to abort. 'OK' to delete.","conditionalLogicDependencyChoiceEdit":"This form contains {type} conditional logic dependent upon this choice. Are you sure you want to modify this choice? 'Cancel' to abort. 'OK' to continue.","conditionalLogicDependencyAdminOnly":"This form contains {type} conditional logic dependent upon this field. Are you sure you want to mark this field as Administrative? 'Cancel' to abort. 'OK' to continue.","conditionalLogicRichTextEditorWarning":"This form contains conditional logic dependent upon this field. This will no longer work if the Rich Text Editor is enabled.  Are you sure you want to enable the Rich Text Editor?  'Cancel' to abort. 'OK' to continue.","conditionalLogicTypeButton":"button","conditionalLogicTypeConfirmation":"confirmation","conditionalLogicTypeNotification":"notification","conditionalLogicTypeNoficationRouting":"notification routing","conditionalLogicTypeField":"field","conditionalLogicTypeFeed":"feed","conditionalLogicWarningTitle":"Conditional Logic Warning","mergeTagsText":"Insert Merge Tags","baseUrl":"https:\/\/www.forhair.com\/wp-content\/plugins\/gravityforms","gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2,"code":"USD"},"otherChoiceValue":"Other","isFormTrash":false,"currentlyAddingField":false,"visibilityOptions":[{"label":"Visible","value":"visible","description":"Default option. The field is visible when viewing the form."},{"label":"Hidden","value":"hidden","description":"The field is hidden when viewing the form. Useful when you require the functionality of this field but do not want the user to be able to see this field."},{"label":"Administrative","value":"administrative","description":"The field is only visible when administering submitted entries. The field is not visible or functional when viewing the form."}],"addFieldFilter":"Add a condition","removeFieldFilter":"Remove a condition","filterAndAny":"{0} of the following match:","customChoices":"Custom Choices","predefinedChoices":"Predefined Choices","fieldLabelAriaLabel":"{field_label} - {field_type}, jump to this field&#039;s settings","fieldCanBeAddedTitle":"Field Limit","fieldCanBeAddedCaptcha":"A form can only contain one CAPTCHA field.","fieldCanBeAddedShipping":"A form can only contain one Shipping field.","fieldCanBeAddedPostContent":"A form can only contain one Post Body field.","fieldCanBeAddedPostTitle":"A form can only contain one Post Title field.","fieldCanBeAddedPostExcerpt":"A form can only contain one Post Excerpt field.","fieldCanBeAddedCreditCard":"A form can only contain one Credit Card field.","fieldCanBeAddedProductTitle":"Missing Product field","fieldCanBeAddedProduct":"You must add a Product field to the form first.","legacyMarkupTitle":"Unsupported Markup","fieldCanBeAddedMultipleChoice":"You cannot add a Multiple Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.","fieldCanBeAddedImageChoice":"You cannot add an Image Choice field to a form that uses legacy markup. Please edit the form settings and turn off Legacy Markup.","FieldAjaxonErrorTitle":"Error","StartAddFieldAjaxonError":"Ajax error while adding field. Please refresh the page and try again.","StartChangeInputTypeAjaxonError":"Ajax error while changing input type. Please refresh the page and try again.","MissingNameCustomChoicesTitle":"Missing Name","MissingNameCustomChoices":"Please give this custom choice a name.","DuplicateNameCustomChoicesTitle":"Duplicate Name","DuplicateNameCustomChoices":"This custom choice name is already in use. Please enter another name.","DuplicateTitleMessageTitle":"Duplicate Title","DuplicateTitleMessage":"The form title you have entered is already taken. Please enter a unique form title.","ValidateFormMissingFormTitleTitle":"Missing Form Title","ValidateFormMissingFormTitle":"Please enter a Title for this form. When adding the form to a page or post, you will have the option to hide the title.","ValidateFormEmptyPageTitle":"Empty Page","ValidateFormEmptyPage":"This form currently has one or more pages without any fields. Blank pages are a result of Page Breaks that are positioned as the first or last field in the form or right after each other. Please adjust the Page Breaks.","ValidateFormMissingProductLabelTitle":"Missing Product Label","ValidateFormMissingProductLabel":"This form has a Product field with a blank label. Please enter a label for every Product field.","ValidateFormMissingProductFieldTitle":"Missing Product field","ValidateFormMissingProductField":"This form has an Option field without a Product field. You must add a Product field to your form.","FormulaIsValidTitle":"Success","FormulaIsValid":"The formula appears to be valid.","FormulaIsInvalid":"There appears to be a problem with the formula.","DeleteFormTitle":"Confirm","DeleteForm":"You are about to move this form to the trash. &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.","DeleteCustomChoice":"Delete this custom choice list? &#039;Cancel&#039; to abort. &#039;OK&#039; to delete.","FieldAdded":"&nbsp;field added to form","nameFieldDefaultPrefixes":[{"text":"Dr.","value":"Dr."},{"text":"Miss","value":"Miss"},{"text":"Mr.","value":"Mr."},{"text":"Mrs.","value":"Mrs."},{"text":"Ms.","value":"Ms."},{"text":"Mx.","value":"Mx."},{"text":"Prof.","value":"Prof."},{"text":"Rev.","value":"Rev."}]};			</script>
            				</div>
				</div>
					</div>
		</div>
					</div>
		</section>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-e2fbd6d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e2fbd6d" 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-f9e6706" data-id="f9e6706" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-dabf226 elementor-invisible elementor-widget elementor-widget-heading" data-id="dabf226" data-element_type="widget" data-e-type="widget" id="atlanta" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Atlanta's Premier Hair Transplant Clinic</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-567189c elementor-widget elementor-widget-text-editor" data-id="567189c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><span style="font-weight: 400;">Forhair is headquartered in Alpharetta, Georgia, where clinical leadership, physician training, and surgical standards are established under the direction of Dr. John P. Cole. This headquarters serves as the foundation for long-term clinical oversight and the development of advanced hair restoration techniques.</span></p><p><span style="font-weight: 400;">From this base, ForHair provides </span><b>hair restoration in Atlanta</b><span style="font-weight: 400;"> and across the United States, supporting patients who seek meticulous, physician-led care. </span></p><p>Dr. Cole&#8217;s reputation as the premier hair transplant expert in Atlanta is well-earned. <span style="font-weight: 400;">As a practice known for its precision and consistency, Forhair is frequently chosen by individuals researching hair transplant in Atlanta who want outcomes guided by decades of surgical expertise rather than volume-driven models.</span></p><p><span style="font-weight: 400;">In addition to our Georgia headquarters, we maintain a secondary care location in New York. </span></p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-a12f4d1" data-id="a12f4d1" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-3881214 elementor-widget elementor-widget-image" data-id="3881214" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" loading="lazy" decoding="async" width="680" height="469" src="https://www.forhair.com/wp-content/uploads/2026/03/2025-12-23.webp" class="attachment-medium size-medium wp-image-41187" alt="ForHair Hair Transplant Clinic Georgia" />															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-fa4361f elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="fa4361f" 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-3a3dbce" data-id="3a3dbce" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8fa68e9 elementor-invisible elementor-widget elementor-widget-heading" data-id="8fa68e9" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Start Your Hair Restoration Treatment with a Video Consultation</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-d6c93cd elementor-widget elementor-widget-text-editor" data-id="d6c93cd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We believe in outreach at Forhair. You have a life, a schedule, and an opening. We appreciate the difference that 5 minutes can make in that schedule. Sign up for a hair transplant video consultation to save yourself the pain of commuting.</p><p>After the analysis, we can schedule an appointment for further review.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-2b47a1e elementor-align-left elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="2b47a1e" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-xl" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Start a Free  Consultation</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d4b8a55" data-id="d4b8a55" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap">
							</div>
		</div>
					</div>
		</section>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-bceaff6 e-flex e-con-boxed e-con e-parent" data-id="bceaff6" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-64ab07f e-con-full e-flex e-con e-child" data-id="64ab07f" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-44765c9 elementor-invisible elementor-widget elementor-widget-heading" data-id="44765c9" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Our Patients Just Love Us!</h3>				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-bfcfd83 e-grid e-con-full e-con e-child" data-id="bfcfd83" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-0c21533 elementor-widget elementor-widget-eael-testimonial" data-id="0c21533" data-element_type="widget" data-e-type="widget" data-widget_type="eael-testimonial.default">
				<div class="elementor-widget-container">
					
	<div id="eael-testimonial-0c21533" class="eael-testimonial-item clearfix  content-top-icon-title-inline rating-five">
				
		
		
		
		
					<div class="eael-testimonial-content eael-testimonial-inline-bio">
							<div class="eael-testimonial-image">
									<figure><img loading="lazy" loading="lazy" width="800" height="543" src="https://www.forhair.com/wp-content/uploads/2026/02/results2-1.jpg" class="attachment-medium size-medium wp-image-41069" alt="ForHair patient ״Michael McCalla״ Before and after review photo results" decoding="async" srcset="https://www.forhair.com/wp-content/uploads/2026/02/results2-1.jpg 800w, https://www.forhair.com/wp-content/uploads/2026/02/results2-1-768x521.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></figure>
							</div>
							<div class="bio-text"><p class="eael-testimonial-user" style="display: block; float: none;">Michael McCalla</p><p class="eael-testimonial-user-company">FUE Hair Transplant</p></div>
						<ul class="testimonial-star-rating">
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
		</ul>
					</div>
			<div class="eael-testimonial-content">
				<div class="eael-testimonial-text"><p>I highly recommend Dr. Cole and the ForHair Clinic.</p><p>The procedure was painless and the recovery was no problem. I drove in to town, had the procedure, and was back home the next day.</p><p>My results have been incredible!</p></div>			</div>
		
		
		
		<span class="eael-testimonial-quote"></span>
	</div>

					</div>
				</div>
				<div class="elementor-element elementor-element-3c70e5e elementor-widget elementor-widget-eael-testimonial" data-id="3c70e5e" data-element_type="widget" data-e-type="widget" data-widget_type="eael-testimonial.default">
				<div class="elementor-widget-container">
					
	<div id="eael-testimonial-3c70e5e" class="eael-testimonial-item clearfix  content-top-icon-title-inline rating-five">
				
		
		
		
		
					<div class="eael-testimonial-content eael-testimonial-inline-bio">
							<div class="eael-testimonial-image">
									<figure><img loading="lazy" loading="lazy" width="800" height="543" src="https://www.forhair.com/wp-content/uploads/2026/02/results3-1.jpg" class="attachment-medium size-medium wp-image-41070" alt="ForHair patient ״Chris Buckner״ Before and after review photo results" decoding="async" srcset="https://www.forhair.com/wp-content/uploads/2026/02/results3-1.jpg 800w, https://www.forhair.com/wp-content/uploads/2026/02/results3-1-768x521.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></figure>
							</div>
							<div class="bio-text"><p class="eael-testimonial-user" style="display: block; float: none;">Chris Buckner</p><p class="eael-testimonial-user-company">FUE Hair Transplant</p></div>
						<ul class="testimonial-star-rating">
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
		</ul>
					</div>
			<div class="eael-testimonial-content">
				<div class="eael-testimonial-text"><p>Wow. Looking at it now and then. That&#8217;s crazy. The difference. I love it. It&#8217;s great. I feel happy. I&#8217;m confident. It&#8217;s made everything so much better. In so many ways. So thank you, Doctor Cole and the staff at ForHair.<br />I love you guys. You&#8217;re amazing. You have my recommendation to anybody that ever wants to do a hair transplant.</p></div>			</div>
		
		
		
		<span class="eael-testimonial-quote"></span>
	</div>

					</div>
				</div>
				<div class="elementor-element elementor-element-22bbcc0 elementor-widget elementor-widget-eael-testimonial" data-id="22bbcc0" data-element_type="widget" data-e-type="widget" data-widget_type="eael-testimonial.default">
				<div class="elementor-widget-container">
					
	<div id="eael-testimonial-22bbcc0" class="eael-testimonial-item clearfix  content-top-icon-title-inline rating-five">
				
		
		
		
		
					<div class="eael-testimonial-content eael-testimonial-inline-bio">
							<div class="eael-testimonial-image">
									<figure><img loading="lazy" loading="lazy" width="800" height="543" src="https://www.forhair.com/wp-content/uploads/2026/02/results4-1.jpg" class="attachment-medium size-medium wp-image-41071" alt="ForHair patient ״Ty Antoine DeSouza״ Before and after review photo results" decoding="async" srcset="https://www.forhair.com/wp-content/uploads/2026/02/results4-1.jpg 800w, https://www.forhair.com/wp-content/uploads/2026/02/results4-1-768x521.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></figure>
							</div>
							<div class="bio-text"><p class="eael-testimonial-user" style="display: block; float: none;">Ty Antoine DeSouza</p><p class="eael-testimonial-user-company">FUE Hair Transplant</p></div>
						<ul class="testimonial-star-rating">
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
			<li><i class="fas fa-star" aria-hidden="true"></i></li>
		</ul>
					</div>
			<div class="eael-testimonial-content">
				<div class="eael-testimonial-text"><p>I cannot thank Dr Cole enough for taking away the consistent sadness that I experienced about my receding hairline. </p><p>I am so satisfied that I found Dr. Cole. His dedication to the art and the science of hair restoration is evident in my results and in my confidence.</p></div>			</div>
		
		
		
		<span class="eael-testimonial-quote"></span>
	</div>

					</div>
				</div>
				</div>
				<div class="elementor-element elementor-element-f1f12b7 elementor-align-center elementor-widget elementor-widget-button" data-id="f1f12b7" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-md" href="/hair-transplant-stories/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Read our patient success stories</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-5a1261a e-flex e-con-boxed e-con e-parent" data-id="5a1261a" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-47b7516 elementor-invisible elementor-widget elementor-widget-heading" data-id="47b7516" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Latest from Instagram</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-fccba1f elementor-widget elementor-widget-sbi-widget" data-id="fccba1f" data-element_type="widget" data-e-type="widget" data-widget_type="sbi-widget.default">
				<div class="elementor-widget-container">
					
<div id="sb_instagram"  class="sbi sbi_mob_col_1 sbi_tab_col_3 sbi_col_3 sbi_width_resp sbi-theme sbi-default_theme sbi-style-boxed" style="padding-bottom: 12px;" data-post-style="boxed"	 data-feedid="*1"  data-res="auto" data-cols="3" data-colsmobile="1" data-colstablet="3" data-num="3" data-nummobile="3" data-header-size="medium" data-item-padding="6"	 data-shortcode-atts="{&quot;feed&quot;:&quot;1&quot;}"  data-postid="28652" data-locatornonce="f5694e5342" data-options="{&quot;grid&quot;:true,&quot;avatars&quot;:{&quot;forhair.clinic&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.2885-19\/431855972_926540355606495_4289159451672817910_n.jpg?stp=dst-jpg_s206x206_tt6&amp;_nc_cat=105&amp;ccb=7-5&amp;_nc_sid=bf7eb4&amp;efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy43NTAuQzMifQ%3D%3D&amp;_nc_ohc=8lDYgBShR5EQ7kNvwEPdJrg&amp;_nc_oc=AdoVS2u16ldZyFpWhnLMNGWdYjPHzBdtLeDWulYAjcepe_LdlhO5oLS80nCo2fUBRpg&amp;_nc_zt=24&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=AP4hL3IEAAAA&amp;_nc_tpa=Q5bMBQEt_T51ej179iLzIQm7pG4-S29JijSS1gJSzB3CmNptYu2iSqdjimByxcXhXM2RLRAFPbdS9x8luQ&amp;oh=00_AfycWhDvlbD2oJz3nSg2aPvHD1k_S3qUeCPu-J_g_no-hw&amp;oe=69C9D9A0&quot;,&quot;LCLforhair.clinic&quot;:&quot;https:\/\/www.forhair.com\/wp-content\/uploads\/sb-instagram-feed-images\/forhair.clinic.webp&quot;},&quot;lightboxcomments&quot;:20,&quot;colsmobile&quot;:1,&quot;colstablet&quot;:&quot;3&quot;,&quot;captionsize&quot;:12,&quot;captionlength&quot;:100,&quot;hovercaptionlength&quot;:150,&quot;feedtheme&quot;:&quot;default_theme&quot;,&quot;imageaspectratio&quot;:&quot;3:4&quot;}" data-sbi-flags="favorLocal">

	
	<div id="sbi_images" style="gap: 12px;">
		<div class="sbi_item sbi_type_image sbi_new sbi_transition"
	 id="sbi_18028077059805048" data-date="1776704942"
	 data-numcomments="0" data-template=ft_simple_grid>
	<div class="sbi_inner_wrap" style="background-color: #cccccc;  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.05);">

		
			<div class="sbi_photo_wrap"  style="border-radius: inherit;">
						
		<div  style="background: rgba(35,35,35,0.85)"  class="sbi_link " >
			<div class="sbi_hover_top">

					<p class="sbi_hover_caption_wrap"
		>
		<span
			class="sbi_caption">Large crown. Advanced loss.<br><br>He came in with a wide, fully exposed crown.<br>Limited native density. Weak coverage potential.<br><br>Dr. John Cole, MD rebuilt the entire zone.<br>Strategic graft placement. Natural swirl recreated.<br><br>Now?<br>Balanced density. Scalp no longer visible.<br><br>This is what precise crown work looks like.<br><br>Thinking about your crown?<br>Start with a real evaluation.<br><br>👉 Link in bio to schedule<br><br>#hairtransplant #crownrestoration #fuehairtransplant #hairlosshelp #drjohncole #forhair #hairrestoration #menshairloss #norwoodscale #hairtransformation</span>
	</p>

			</div>

			
			<div class="sbi_hover_bottom " >

				
									<div
						class="sbi_meta" >

							<span
		class="sbi_likes" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-heart fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="heart" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M414.9 24C361.8 24 312 65.7 288 89.3 264 65.7 214.2 24 161.1 24 70.3 24 16 76.9 16 165.5c0 72.6 66.8 133.3 69.2 135.4l187 180.8c8.8 8.5 22.8 8.5 31.6 0l186.7-180.2c2.7-2.7 69.5-63.5 69.5-136C560 76.9 505.7 24 414.9 24z"></path></svg>		17	</span>
	<span
		class="sbi_comments" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-comment fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="comment" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M576 240c0 115-129 208-288 208-48.3 0-93.9-8.6-133.9-23.8-40.3 31.2-89.8 50.3-142.4 55.7-5.2.6-10.2-2.8-11.5-7.7-1.3-5 2.7-8.1 6.6-11.8 19.3-18.4 42.7-32.8 51.9-94.6C21.9 330.9 0 287.3 0 240 0 125.1 129 32 288 32s288 93.1 288 208z"></path></svg>		0	</span>
					</div>
				
			</div>

			<a class="sbi_link_area nofancybox" rel="nofollow noopener" href="https://scontent-lga3-3.cdninstagram.com/v/t51.82787-15/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=106&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&#038;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&#038;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-3.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&#038;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&#038;oe=6A2150FC" data-lightbox-sbi="" data-title="Large crown. Advanced loss.&lt;br&gt;
&lt;br&gt;
He came in with a wide, fully exposed crown.&lt;br&gt;
Limited native density. Weak coverage potential.&lt;br&gt;
&lt;br&gt;
Dr. John Cole, MD rebuilt the entire zone.&lt;br&gt;
Strategic graft placement. Natural swirl recreated.&lt;br&gt;
&lt;br&gt;
Now?&lt;br&gt;
Balanced density. Scalp no longer visible.&lt;br&gt;
&lt;br&gt;
This is what precise crown work looks like.&lt;br&gt;
&lt;br&gt;
Thinking about your crown?&lt;br&gt;
Start with a real evaluation.&lt;br&gt;
&lt;br&gt;
👉 Link in bio to schedule&lt;br&gt;
&lt;br&gt;
#hairtransplant #crownrestoration #fuehairtransplant #hairlosshelp #drjohncole #forhair #hairrestoration #menshairloss #norwoodscale #hairtransformation" data-video="" data-carousel="" data-id="sbi_18028077059805048" data-user="forhair.clinic" data-url="https://www.instagram.com/p/DXXH-VVFD3C/" data-avatar="https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/431855972_926540355606495_4289159451672817910_n.jpg?stp=dst-jpg_s206x206_tt6&amp;_nc_cat=105&amp;ccb=7-5&amp;_nc_sid=bf7eb4&amp;efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy43NTAuQzMifQ%3D%3D&amp;_nc_ohc=8lDYgBShR5EQ7kNvwEPdJrg&amp;_nc_oc=AdoVS2u16ldZyFpWhnLMNGWdYjPHzBdtLeDWulYAjcepe_LdlhO5oLS80nCo2fUBRpg&amp;_nc_zt=24&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=AP4hL3IEAAAA&amp;_nc_tpa=Q5bMBQEt_T51ej179iLzIQm7pG4-S29JijSS1gJSzB3CmNptYu2iSqdjimByxcXhXM2RLRAFPbdS9x8luQ&amp;oh=00_AfycWhDvlbD2oJz3nSg2aPvHD1k_S3qUeCPu-J_g_no-hw&amp;oe=69C9D9A0" data-account-type="business" data-iframe="" data-media-type="feed" data-posted-on="" data-custom-avatar="" target="_blank">
				<span class="sbi-screenreader">
					Open post by forhair.clinic with ID 18028077059805048				</span>
							</a>
		</div>

		<a class="sbi_photo" target="_blank" rel="nofollow noopener" href="https://www.instagram.com/p/DXXH-VVFD3C/" data-full-res="https://scontent-lga3-3.cdninstagram.com/v/t51.82787-15/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=106&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&#038;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&#038;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-3.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&#038;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&#038;oe=6A2150FC" data-img-src-set="{&quot;d&quot;:&quot;https:\/\/scontent-lga3-3.cdninstagram.com\/v\/t51.82787-15\/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=106&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&amp;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&amp;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&amp;oe=6A2150FC&quot;,&quot;150&quot;:&quot;https:\/\/scontent-lga3-3.cdninstagram.com\/v\/t51.82787-15\/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=106&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&amp;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&amp;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&amp;oe=6A2150FC&quot;,&quot;320&quot;:&quot;https:\/\/scontent-lga3-3.cdninstagram.com\/v\/t51.82787-15\/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=106&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&amp;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&amp;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&amp;oe=6A2150FC&quot;,&quot;640&quot;:&quot;https:\/\/scontent-lga3-3.cdninstagram.com\/v\/t51.82787-15\/671113916_18332300167220531_2604482566709165526_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=106&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiRkVFRC5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=dAzXgsrwD30Q7kNvwFffvw6&amp;_nc_oc=AdqrWjOZlKsqLACUYAMbIvEhsIr3p-Xje4swnaLOC5kAuZ71IxqjW-FAXp4_jqkNOlY&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQG-nj_h6kI3C0Yhc7qRaQdgBisRNIMJ0FNVKGJk_zpMlHEzrDYg9cW3XTZ4JaSOatvAWsm_sSBJEA&amp;oh=00_Af9_hDb9mJqQrfea44th2Y7G0c9UISVrLnlEk5a4yLuycA&amp;oe=6A2150FC&quot;}" tabindex="-1">
			<img decoding="async" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/img/placeholder.png" alt="Large crown. Advanced loss.

He came in with a wide, fully exposed crown.
Limited native density. Weak coverage potential.

Dr. John Cole, MD rebuilt the entire zone.
Strategic graft placement. Natural swirl recreated.

Now?
Balanced density. Scalp no longer visible.

This is what precise crown work looks like.

Thinking about your crown?
Start with a real evaluation.

👉 Link in bio to schedule

#hairtransplant #crownrestoration #fuehairtransplant #hairlosshelp #drjohncole #forhair #hairrestoration #menshairloss #norwoodscale #hairtransformation">
		</a>
	</div>


		
		<div class="sbi_info_wrapper">
			<div class="sbi_info ">

				
				<div class="sbi_meta_wrap">
					
									</div>
			</div>
		</div>
	</div>

	<div class="sbi-divider"></div>
</div>
<div class="sbi_item sbi_type_carousel sbi_new sbi_transition"
	 id="sbi_18138055846507687" data-date="1774523851"
	 data-numcomments="1" data-template=ft_simple_grid>
	<div class="sbi_inner_wrap" style="background-color: #cccccc;  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.05);">

		
			<div class="sbi_photo_wrap"  style="border-radius: inherit;">
				<svg class="svg-inline--fa fa-clone fa-w-16 sbi_lightbox_carousel_icon" aria-hidden="true" aria-label="Clone" data-fa-proƒcessed="" data-prefix="far" data-icon="clone" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
                    <path fill="currentColor" d="M464 0H144c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h320c26.51 0 48-21.49 48-48v-48h48c26.51 0 48-21.49 48-48V48c0-26.51-21.49-48-48-48zM362 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h42v224c0 26.51 21.49 48 48 48h224v42a6 6 0 0 1-6 6zm96-96H150a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h308a6 6 0 0 1 6 6v308a6 6 0 0 1-6 6z"></path>
                </svg>		
		<div  style="background: rgba(35,35,35,0.85)"  class="sbi_link " >
			<div class="sbi_hover_top">

					<p class="sbi_hover_caption_wrap"
		>
		<span
			class="sbi_caption">🎥 2,551 grafts. Front only. No crown work.<br><br>This patient recently sent in his post-op results after an FUE hair transplant focused entirely on the frontal zone.<br><br>We:<br>• Slightly lowered the hairline<br>• Dense packed the frontal area<br>• Focused on maximum visual impact<br><br>No grafts were placed in the crown — this was all about framing the face and creating density where it matters most.<br><br>The result? A stronger, natural-looking hairline with strategic use of grafts.<br><br>💬 Thinking about restoring your hairline?<br>👉 Click the link in bio to learn more or book your consultation.<br><br>#HairTransplant #FUE #HairlineRestoration #HairRestoration #ForHair #DrCole #HairLossSolution #HairGoals #NaturalResults #MensGrooming</span>
	</p>

			</div>

			
			<div class="sbi_hover_bottom " >

				
									<div
						class="sbi_meta" >

							<span
		class="sbi_likes" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-heart fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="heart" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M414.9 24C361.8 24 312 65.7 288 89.3 264 65.7 214.2 24 161.1 24 70.3 24 16 76.9 16 165.5c0 72.6 66.8 133.3 69.2 135.4l187 180.8c8.8 8.5 22.8 8.5 31.6 0l186.7-180.2c2.7-2.7 69.5-63.5 69.5-136C560 76.9 505.7 24 414.9 24z"></path></svg>		11	</span>
	<span
		class="sbi_comments" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-comment fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="comment" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M576 240c0 115-129 208-288 208-48.3 0-93.9-8.6-133.9-23.8-40.3 31.2-89.8 50.3-142.4 55.7-5.2.6-10.2-2.8-11.5-7.7-1.3-5 2.7-8.1 6.6-11.8 19.3-18.4 42.7-32.8 51.9-94.6C21.9 330.9 0 287.3 0 240 0 125.1 129 32 288 32s288 93.1 288 208z"></path></svg>		1	</span>
					</div>
				
			</div>

			<a class="sbi_link_area nofancybox" rel="nofollow noopener" href="https://scontent-lga3-2.cdninstagram.com/v/t51.82787-15/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=100&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&#038;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&#038;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-2.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&#038;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&#038;oe=6A21601E" data-lightbox-sbi="" data-title="🎥 2,551 grafts. Front only. No crown work.&lt;br&gt;
&lt;br&gt;
This patient recently sent in his post-op results after an FUE hair transplant focused entirely on the frontal zone.&lt;br&gt;
&lt;br&gt;
We:&lt;br&gt;
• Slightly lowered the hairline&lt;br&gt;
• Dense packed the frontal area&lt;br&gt;
• Focused on maximum visual impact&lt;br&gt;
&lt;br&gt;
No grafts were placed in the crown — this was all about framing the face and creating density where it matters most.&lt;br&gt;
&lt;br&gt;
The result? A stronger, natural-looking hairline with strategic use of grafts.&lt;br&gt;
&lt;br&gt;
💬 Thinking about restoring your hairline?&lt;br&gt;
👉 Click the link in bio to learn more or book your consultation.&lt;br&gt;
&lt;br&gt;
#HairTransplant #FUE #HairlineRestoration #HairRestoration #ForHair #DrCole #HairLossSolution #HairGoals #NaturalResults #MensGrooming" data-video="" data-carousel="{&quot;data&quot;:[{&quot;type&quot;:&quot;image&quot;,&quot;media&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=100&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&amp;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQFqqvmwxCXhhXIvfRV0pcHyVubChhZECy-RdoV5NifJxD1PyKYBPTml1Xan-ThpNZTJlaGVjaIEqQ&amp;oh=00_Af_fPGaFo4ccuYGpjOrj1KW5U-k7OxbhGBigKiiS3Hmjjw&amp;oe=6A21601E&quot;},{&quot;type&quot;:&quot;image&quot;,&quot;media&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/658862841_18329315476220531_8604696587295852674_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=107&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=HobmkH4XAQUQ7kNvwFadXvH&amp;_nc_oc=AdobAFo7FXa3xQC3let00z2TyfNIaQHS64AM8dAW2jQOD3Y4w_h-B7YhBL1JavLrrxo&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQGyDpmvgmUoWgDputjj_npO7GsK0Ak0MMLZxqDeBTGFb4NpGrXB3AbTDEsVySsV0P6snwpBPR9nXw&amp;oh=00_Af-3mcZRQYhaiLgACaY_Od4ykq0AOl7JCBXcxTFCkRycZQ&amp;oe=6A21548B&quot;},{&quot;type&quot;:&quot;image&quot;,&quot;media&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/656700167_18329315488220531_5003224139458687247_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=105&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=ewPFeoi6DUIQ7kNvwFfNjYI&amp;_nc_oc=AdorEnvtbwsycjSLHLdxHM_1eK1HC7rThOtAEgLn_NEkk_VqXnOxCqIcDQxhEikAJ2A&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQFULYt_MH5su6MSPlRI_SezFVHqABi__NrTHMzWfw0DC5zMwPY5eqdsf8LMzv6MPEVM0FKl-rlPqg&amp;oh=00_Af_6GJ8XxN9H3tGuyHRFRWL78I6RREfJvG3BlSGlQeh9CQ&amp;oe=6A216530&quot;},{&quot;type&quot;:&quot;image&quot;,&quot;media&quot;:&quot;https:\/\/scontent-lga3-3.cdninstagram.com\/v\/t51.82787-15\/656666080_18329315503220531_7768713302750549507_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=106&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=bNj51YdqveEQ7kNvwF19sd7&amp;_nc_oc=AdrRaX_ksRVSQkddrJkJX5HRqStkLvJLFFcE0TPW_pGUCSWxhsG73GSEmxIPF-ytZuQ&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-3.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQH0uRGn7s6te2RIFfkAGZbmvQNqDtDBHTxCW3bpNMX0E12_fjokhCFwrNfEe_Tpk-SCg6x0XfmFKg&amp;oh=00_Af9flgI6ywNj5yXqulRaYqvpZV1_XypVo5EOBECLGcs-Tg&amp;oe=6A216A55&quot;}],&quot;vid_first&quot;:false}" data-id="sbi_18138055846507687" data-user="forhair.clinic" data-url="https://www.instagram.com/p/DWWH30elLgF/" data-avatar="https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/431855972_926540355606495_4289159451672817910_n.jpg?stp=dst-jpg_s206x206_tt6&amp;_nc_cat=105&amp;ccb=7-5&amp;_nc_sid=bf7eb4&amp;efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy43NTAuQzMifQ%3D%3D&amp;_nc_ohc=8lDYgBShR5EQ7kNvwEPdJrg&amp;_nc_oc=AdoVS2u16ldZyFpWhnLMNGWdYjPHzBdtLeDWulYAjcepe_LdlhO5oLS80nCo2fUBRpg&amp;_nc_zt=24&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=AP4hL3IEAAAA&amp;_nc_tpa=Q5bMBQEt_T51ej179iLzIQm7pG4-S29JijSS1gJSzB3CmNptYu2iSqdjimByxcXhXM2RLRAFPbdS9x8luQ&amp;oh=00_AfycWhDvlbD2oJz3nSg2aPvHD1k_S3qUeCPu-J_g_no-hw&amp;oe=69C9D9A0" data-account-type="business" data-iframe="" data-media-type="feed" data-posted-on="" data-custom-avatar="" target="_blank">
				<span class="sbi-screenreader">
					Open post by forhair.clinic with ID 18138055846507687				</span>
							</a>
		</div>

		<a class="sbi_photo" target="_blank" rel="nofollow noopener" href="https://www.instagram.com/p/DWWH30elLgF/" data-full-res="https://scontent-lga3-2.cdninstagram.com/v/t51.82787-15/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=100&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&#038;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&#038;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-2.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&#038;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&#038;oe=6A21601E" data-img-src-set="{&quot;d&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=100&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&amp;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&amp;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&amp;oe=6A21601E&quot;,&quot;150&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=100&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&amp;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&amp;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&amp;oe=6A21601E&quot;,&quot;320&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=100&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&amp;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&amp;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&amp;oe=6A21601E&quot;,&quot;640&quot;:&quot;https:\/\/scontent-lga3-2.cdninstagram.com\/v\/t51.82787-15\/657317888_18329315461220531_8159801655918369758_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=100&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0FST1VTRUxfSVRFTS5iZXN0X2ltYWdlX3VybGdlbi5DMyJ9&amp;_nc_ohc=cSCvg9EXEwEQ7kNvwF_bc0T&amp;_nc_oc=AdrK1n1aW8vLH-Icz04TmkH58MrDTE10yLE_IwduGb4KCosJzAJGQlb2O7oh8qFrqCg&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHf3pCyJdwYf7YvLDtFLQlXi9Eqa94yZ1ZzgxIHSkAW7zE-I8F4tHmTFlqsVZfJ3FmSuUVMIAXMSA&amp;oh=00_Af8zerWGEuMUSmfdl_GI_CDfVl2OmAo8Rw3zTpXBNCAnLg&amp;oe=6A21601E&quot;}" tabindex="-1">
			<img decoding="async" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/img/placeholder.png" alt="🎥 2,551 grafts. Front only. No crown work.

This patient recently sent in his post-op results after an FUE hair transplant focused entirely on the frontal zone.

We:
• Slightly lowered the hairline
• Dense packed the frontal area
• Focused on maximum visual impact

No grafts were placed in the crown — this was all about framing the face and creating density where it matters most.

The result? A stronger, natural-looking hairline with strategic use of grafts.

💬 Thinking about restoring your hairline?
👉 Click the link in bio to learn more or book your consultation.

#HairTransplant #FUE #HairlineRestoration #HairRestoration #ForHair #DrCole #HairLossSolution #HairGoals #NaturalResults #MensGrooming">
		</a>
	</div>


		
		<div class="sbi_info_wrapper">
			<div class="sbi_info ">

				
				<div class="sbi_meta_wrap">
					
									</div>
			</div>
		</div>
	</div>

	<div class="sbi-divider"></div>
</div>
<div class="sbi_item sbi_type_video sbi_new sbi_transition"
	 id="sbi_17875740603556725" data-date="1774451892"
	 data-numcomments="5" data-template=ft_simple_grid>
	<div class="sbi_inner_wrap" style="background-color: #cccccc;  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.05);">

		
			<div class="sbi_photo_wrap"  style="border-radius: inherit;">
						<svg style="color: rgba(255,255,255,1)" class="svg-inline--fa fa-play fa-w-14 sbi_playbtn" aria-label="Play" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="play" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"></path></svg>
		<div  style="background: rgba(35,35,35,0.85)"  class="sbi_link " >
			<div class="sbi_hover_top">

					<p class="sbi_hover_caption_wrap"
		>
		<span
			class="sbi_caption">In this video, our patient shares his real FUE experience — from the initial nerves… to the confidence after choosing a top-tier surgeon.<br>No hype. Just a real perspective on modern hair restoration.<br><br>💬 If you’ve been on the fence, this is what you need to see.<br>👉 Click the link in bio to learn more or book your consultation.<br><br>#HairTransplant #FUE #HairRestoration #HairLossSolution #HairJourney MensConfidence ForHair DrCole HairClinic RealResults</span>
	</p>

			</div>

			
			<div class="sbi_hover_bottom " >

				
									<div
						class="sbi_meta" >

							<span
		class="sbi_likes" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-heart fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="heart" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M414.9 24C361.8 24 312 65.7 288 89.3 264 65.7 214.2 24 161.1 24 70.3 24 16 76.9 16 165.5c0 72.6 66.8 133.3 69.2 135.4l187 180.8c8.8 8.5 22.8 8.5 31.6 0l186.7-180.2c2.7-2.7 69.5-63.5 69.5-136C560 76.9 505.7 24 414.9 24z"></path></svg>		20	</span>
	<span
		class="sbi_comments" style="font-size: 13px;" >
		<svg  style="font-size: 13px;" class="svg-inline--fa fa-comment fa-w-18" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="comment" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="currentColor" d="M576 240c0 115-129 208-288 208-48.3 0-93.9-8.6-133.9-23.8-40.3 31.2-89.8 50.3-142.4 55.7-5.2.6-10.2-2.8-11.5-7.7-1.3-5 2.7-8.1 6.6-11.8 19.3-18.4 42.7-32.8 51.9-94.6C21.9 330.9 0 287.3 0 240 0 125.1 129 32 288 32s288 93.1 288 208z"></path></svg>		5	</span>
					</div>
				
			</div>

			<a class="sbi_link_area nofancybox" rel="nofollow noopener" href="https://scontent-lga3-1.cdninstagram.com/v/t51.82787-15/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=110&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&#038;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&#038;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-1.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&#038;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&#038;oe=6A217169" data-lightbox-sbi="" data-title="In this video, our patient shares his real FUE experience — from the initial nerves… to the confidence after choosing a top-tier surgeon.&lt;br&gt;
No hype. Just a real perspective on modern hair restoration.&lt;br&gt;
&lt;br&gt;
💬 If you’ve been on the fence, this is what you need to see.&lt;br&gt;
👉 Click the link in bio to learn more or book your consultation.&lt;br&gt;
&lt;br&gt;
#HairTransplant #FUE #HairRestoration #HairLossSolution #HairJourney MensConfidence ForHair DrCole HairClinic RealResults" data-video="https://scontent-lga3-2.cdninstagram.com/o1/v/t2/f2/m86/AQOntaNAqLiiIkLUj0TfKbsX6LTYHef_66gWC1pFxI-gZn3aX8fCDVyNZUAbwrPMCjohr3PS07p2P5FDjn8Abp5XdR7tvQqSPdCRHQs.mp4?_nc_cat=105&amp;_nc_sid=5e9851&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;_nc_ohc=wZgTlGvw-gcQ7kNvwECzCvc&amp;efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTgzMjkxOTA2MjIyMjA1MzEsImFzc2V0X2FnZV9kYXlzIjo2NiwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjM3LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&amp;ccb=17-1&amp;vs=e7cbef12dfa90271&amp;_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC9DNDRFQjBBODg2NDlDNkIxMTA4QTcwNUZGNEE5RDg4MF92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYUWlnX3hwdl9wbGFjZW1lbnRfcGVybWFuZW50X3YyLzgzNEQxMUEwOUY4QTc2MTNCQjE3OTY3M0IxN0E5ODhBX2F1ZGlvX2Rhc2hpbml0Lm1wNBUCAsgBEgAoABgAGwKIB3VzZV9vaWwBMRJwcm9ncmVzc2l2ZV9yZWNpcGUBMRUAACbmw_aAqJOPQRUCKAJDMywXQELmZmZmZmYYEmRhc2hfYmFzZWxpbmVfMV92MREAdf4HZeadAQA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;edm=ANo9K5cEAAAA&amp;_nc_zt=28&amp;_nc_tpa=Q5bMBQFzE9_FzKDm_YSuil_5QIaYlCQaKQkKRo078AqcUWg-tI8waZFUFgaD0BdtF7qAk4CbDy5iMOZn0A&amp;oh=00_Af8VvEmSiM7ZuwwYqsy-CHOeM1YA4Vgen3o7Hv7y_0GHVw&amp;oe=6A1D7D86" data-carousel="" data-id="sbi_17875740603556725" data-user="forhair.clinic" data-url="https://www.instagram.com/reel/DWT-fomileN/" data-avatar="https://scontent-lga3-2.cdninstagram.com/v/t51.2885-19/431855972_926540355606495_4289159451672817910_n.jpg?stp=dst-jpg_s206x206_tt6&amp;_nc_cat=105&amp;ccb=7-5&amp;_nc_sid=bf7eb4&amp;efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLnd3dy43NTAuQzMifQ%3D%3D&amp;_nc_ohc=8lDYgBShR5EQ7kNvwEPdJrg&amp;_nc_oc=AdoVS2u16ldZyFpWhnLMNGWdYjPHzBdtLeDWulYAjcepe_LdlhO5oLS80nCo2fUBRpg&amp;_nc_zt=24&amp;_nc_ht=scontent-lga3-2.cdninstagram.com&amp;edm=AP4hL3IEAAAA&amp;_nc_tpa=Q5bMBQEt_T51ej179iLzIQm7pG4-S29JijSS1gJSzB3CmNptYu2iSqdjimByxcXhXM2RLRAFPbdS9x8luQ&amp;oh=00_AfycWhDvlbD2oJz3nSg2aPvHD1k_S3qUeCPu-J_g_no-hw&amp;oe=69C9D9A0" data-account-type="business" data-iframe="" data-media-type="reels" data-posted-on="" data-custom-avatar="" target="_blank">
				<span class="sbi-screenreader">
					Open post by forhair.clinic with ID 17875740603556725				</span>
				<svg style="color: rgba(255,255,255,1)" class="svg-inline--fa fa-play fa-w-14 sbi_playbtn" aria-label="Play" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="play" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"></path></svg>			</a>
		</div>

		<a class="sbi_photo" target="_blank" rel="nofollow noopener" href="https://www.instagram.com/reel/DWT-fomileN/" data-full-res="https://scontent-lga3-1.cdninstagram.com/v/t51.82787-15/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&#038;_nc_cat=110&#038;ccb=7-5&#038;_nc_sid=18de74&#038;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&#038;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&#038;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&#038;_nc_zt=23&#038;_nc_ht=scontent-lga3-1.cdninstagram.com&#038;edm=ANo9K5cEAAAA&#038;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&#038;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&#038;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&#038;oe=6A217169" data-img-src-set="{&quot;d&quot;:&quot;https:\/\/scontent-lga3-1.cdninstagram.com\/v\/t51.82787-15\/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&amp;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&amp;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&amp;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&amp;oe=6A217169&quot;,&quot;150&quot;:&quot;https:\/\/scontent-lga3-1.cdninstagram.com\/v\/t51.82787-15\/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&amp;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&amp;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&amp;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&amp;oe=6A217169&quot;,&quot;320&quot;:&quot;https:\/\/scontent-lga3-1.cdninstagram.com\/v\/t51.82787-15\/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&amp;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&amp;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&amp;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&amp;oe=6A217169&quot;,&quot;640&quot;:&quot;https:\/\/scontent-lga3-1.cdninstagram.com\/v\/t51.82787-15\/656128274_18329194291220531_2423534062348201294_n.jpg?stp=dst-jpg_e35_tt6&amp;_nc_cat=110&amp;ccb=7-5&amp;_nc_sid=18de74&amp;efg=eyJlZmdfdGFnIjoiQ0xJUFMuYmVzdF9pbWFnZV91cmxnZW4uQzMifQ%3D%3D&amp;_nc_ohc=yPGOtOtlo60Q7kNvwEzEupw&amp;_nc_oc=Ados6SrM7pJwEDX22bTZQrkmU9YX8A7qQn74URhZZ6Kux_nWaSgMqJ0jJVKhuwWZNXM&amp;_nc_zt=23&amp;_nc_ht=scontent-lga3-1.cdninstagram.com&amp;edm=ANo9K5cEAAAA&amp;_nc_gid=_Ok3nFbg1pVQkcpcoB5RIw&amp;_nc_tpa=Q5bMBQHdGJfwHgpeasiAb2Fz1nJcUgcwolfsdXm_uzXYKPkdbZxzOYpBCOqexPYH150yPW--PjielgLtfQ&amp;oh=00_Af9FYP3XxWLB2JHX2cAjCiTicUSpm_P-bmSBpu6s1IxOlA&amp;oe=6A217169&quot;}" tabindex="-1">
			<img decoding="async" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/img/placeholder.png" alt="In this video, our patient shares his real FUE experience — from the initial nerves… to the confidence after choosing a top-tier surgeon.
No hype. Just a real perspective on modern hair restoration.

💬 If you’ve been on the fence, this is what you need to see.
👉 Click the link in bio to learn more or book your consultation.

#HairTransplant #FUE #HairRestoration #HairLossSolution #HairJourney MensConfidence ForHair DrCole HairClinic RealResults">
		</a>
	</div>


		
		<div class="sbi_info_wrapper">
			<div class="sbi_info ">

				
				<div class="sbi_meta_wrap">
					
									</div>
			</div>
		</div>
	</div>

	<div class="sbi-divider"></div>
</div>
	</div>

	<div id="sbi_load" >

			<button class="sbi_load_btn"
				type="button"  style="background: rgb(210,105,26);color: rgb(243,243,247);" data-button-hover="#9F7624">
						<span
				class="sbi_btn_text" >Load More...</span>
			<span class="sbi_loader sbi_hidden" style="background-color: rgb(255, 255, 255);" aria-hidden="true"></span>
		</button>
	
			<span
			class="sbi_follow_btn sbi_custom" >
			<a target="_blank" rel="nofollow noopener" href="https://www.instagram.com/forhair.clinic/" style="background: rgb(0,104,160);color: rgb(255,255,255);">
				<svg class="svg-inline--fa fa-instagram fa-w-14" aria-hidden="true" data-fa-processed="" aria-label="Instagram" data-prefix="fab" data-icon="instagram" role="img" viewBox="0 0 448 512">
                    <path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
                </svg>				<span>Follow on Instagram</span>
			</a>
		</span>
	
</div>

		<span class="sbi_resized_image_data" data-feed-id="*1"
		  data-resized="{&quot;17875740603556725&quot;:{&quot;id&quot;:&quot;655286314_18329190799220531_9193239305733554797_n&quot;,&quot;ratio&quot;:&quot;0.56&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;},&quot;18138055846507687&quot;:{&quot;id&quot;:&quot;657317888_18329315461220531_8159801655918369758_n&quot;,&quot;ratio&quot;:&quot;0.80&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;},&quot;18028077059805048&quot;:{&quot;id&quot;:&quot;671113916_18332300167220531_2604482566709165526_n&quot;,&quot;ratio&quot;:&quot;0.80&quot;,&quot;sizes&quot;:{&quot;full&quot;:640,&quot;low&quot;:320,&quot;thumb&quot;:150},&quot;extension&quot;:&quot;.webp&quot;}}">
	</span>
	
</div>

	<style type="text/css">
				#sb_instagram #sbi_load .sbi_load_btn:focus,
		#sb_instagram #sbi_load .sbi_load_btn:hover {
			outline: none;
			box-shadow: inset 0 0 20px 20px#9F7624;
		}

						#sb_instagram .sbi_follow_btn a:hover,
		#sb_instagram .sbi_follow_btn a:focus {
			outline: none;
			box-shadow: inset 0 0 10px 20px#005B8C;
		}

			</style>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-744fb98 e-con-full e-flex e-con e-child" data-id="744fb98" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-6190372 elementor-invisible elementor-widget elementor-widget-heading" data-id="6190372" data-element_type="widget" data-e-type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeInUp&quot;}" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">Frequently Asked Questions<span style="letter-spacing: -1.02px"></span></h2>				</div>
				</div>
				<div class="elementor-element elementor-element-0a48dc6 elementor-widget elementor-widget-eael-adv-accordion" data-id="0a48dc6" data-element_type="widget" data-e-type="widget" data-widget_type="eael-adv-accordion.default">
				<div class="elementor-widget-container">
					            <div class="eael-adv-accordion" id="eael-adv-accordion-0a48dc6" data-scroll-on-click="no" data-scroll-speed="300" data-accordion-id="0a48dc6" data-accordion-type="accordion" data-toogle-speed="300">
            <div class="eael-accordion-list">
					<div id="does-a-hair-transplant-in-atlanta-hurt" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="1" aria-controls="elementor-tab-content-1071"><span class="eael-accordion-tab-title">Does a Hair Transplant in Atlanta Hurt?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1071" class="eael-accordion-content clearfix" data-tab="1" aria-labelledby="does-a-hair-transplant-in-atlanta-hurt"><p>Most patients are surprised by how manageable the experience is. The procedure begins with a local anesthetic applied to the scalp. Once it takes effect, the majority of patients report only mild pressure or tugging during extraction and placement. No general anesthesia is required, and most people remain comfortable enough to watch a film or listen to music throughout.</p><p><b>Dr. Cole&#8217;s CIT® technique </b><span style="font-weight: 400">is specifically designed to minimize trauma to surrounding tissue, which contributes to a more comfortable recovery compared with more invasive strip procedures.</span></p><p><i><span style="font-weight: 400">Individual experiences vary. A full discussion of what to expect during and after your procedure is part of every Forhair consultation.</span></i></p></div>
					</div><div class="eael-accordion-list">
					<div id="how-long-does-recovery-take-after-a-hair-transplant" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="2" aria-controls="elementor-tab-content-1072"><span class="eael-accordion-tab-title">How Long Does Recovery Take After a Hair Transplant?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1072" class="eael-accordion-content clearfix" data-tab="2" aria-labelledby="how-long-does-recovery-take-after-a-hair-transplant"><p><span style="font-weight: 400">Recovery timelines vary depending on the technique used and the size of the procedure, but most Forhair patients return to desk work within two to three days. Physical activity, including gym work and strenuous exercise, is generally resumed after about ten days. Redness and minor scabbing in the recipient area typically resolves within one to two weeks.</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="am-i-a-good-candidate-for-a-hair-transplant-in-atlanta" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="3" aria-controls="elementor-tab-content-1073"><span class="eael-accordion-tab-title">Am I a Good Candidate for a Hair Transplant in Atlanta?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1073" class="eael-accordion-content clearfix" data-tab="3" aria-labelledby="am-i-a-good-candidate-for-a-hair-transplant-in-atlanta"><p><span style="font-weight: 400">Factors that influence candidacy include the current </span><b>degree of hair loss,</b><span style="font-weight: 400"> the</span><b> density and quality of the donor area, age</b><span style="font-weight: 400">, and whether </span><b>hair loss has stabilized. </b></p><p><span style="font-weight: 400">There is no single standard that qualifies or disqualifies someone outright. The only way to know for certain is through a detailed scalp evaluation. Forhair offers complimentary c</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="how-much-does-a-hair-transplant-cost-in-atlanta" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="4" aria-controls="elementor-tab-content-1074"><span class="eael-accordion-tab-title">How Much Does a Hair Transplant Cost in Atlanta?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1074" class="eael-accordion-content clearfix" data-tab="4" aria-labelledby="how-much-does-a-hair-transplant-cost-in-atlanta"><p><span style="font-weight: 400">Hair transplant pricing is determined by the number of grafts required, the complexity of the procedure, and the specific technique used. At Forhair, individual treatments typically range </span><b>from $6,000 to $28,000.</b><span style="font-weight: 400"> Every quote is all-inclusive, covering surgeon fees, anesthesia, and twelve months of post-procedure care. There are no hidden charges added after the fact.</span></p><p><span style="font-weight: 400">For patients who prefer to spread the investment over time, </span><a href="https://www.forhair.com/what-does-it-cost/"><span style="font-weight: 400">Forhair works with a financing partner</span></a><span style="font-weight: 400"> that allows qualified applicants to begin treatment in manageable monthly installments, subject to credit approval, subject to credit approval.</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="what-is-included-in-a-free-consultation-at-forhairs-atlanta-clinic" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="5" aria-controls="elementor-tab-content-1075"><span class="eael-accordion-tab-title">What Is Included in a Free Consultation at Forhair's Atlanta Clinic?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1075" class="eael-accordion-content clearfix" data-tab="5" aria-labelledby="what-is-included-in-a-free-consultation-at-forhairs-atlanta-clinic"><p><span style="font-weight: 400">Consultation is a substantive, no-obligation appointment designed to give you a clear picture of your options before you make any decisions. It includes a microscope-level scalp analysis, a personalized graft count estimate, a review of the techniques best suited to your hair type and loss pattern, and an honest assessment of the results you can realistically expect.</span></p><p><span style="font-weight: 400">Consultations are available in person at our Alpharetta, Georgia clinic or </span><a href="https://www.forhair.com/free-online-consultation/"><span style="font-weight: 400">virtually via video</span></a><span style="font-weight: 400">. Our patient support team, based at the Atlanta headquarters, coordinates every step so there is no gap in communication before, during, or after your appointment. There is no pressure to book and no cost to attend.</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="how-is-cit-different-from-standard-fue-hair-transplants-in-atlanta" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="6" aria-controls="elementor-tab-content-1076"><span class="eael-accordion-tab-title">How Is CIT® Different From Standard FUE Hair Transplants in Atlanta?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1076" class="eael-accordion-content clearfix" data-tab="6" aria-labelledby="how-is-cit-different-from-standard-fue-hair-transplants-in-atlanta"><p><a href="https://www.forhair.com/advanced-fue-hair-transplant-cit/"><span style="font-weight: 400">CIT® (Cole Isolation Technique)</span></a><span style="font-weight: 400"> is Dr. Cole&#8217;s patented refinement of Follicular Unit Extraction. Standard FUE involves extracting individual follicular units from the donor area using a cylindrical punch. CIT® improves on this process through purpose-built instrumentation that reduces trauma to the follicle during extraction, preserves the stem cell layer at the base of the graft, and produces a lower transection rate than conventional punches.</span></p><p><span style="font-weight: 400">We observe results such as a graft survival rate exceeding 97%, minimal to no visible scarring in the donor area, and stronger long-term yield. Because CIT® instruments were designed specifically for the technique, the procedure can also be adapted for patients whose scalps would not be suitable for a strip (FUT) procedure due to tightness or previous scarring.</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="how-many-grafts-will-i-need-for-my-hair-transplant" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="7" aria-controls="elementor-tab-content-1077"><span class="eael-accordion-tab-title">How Many Grafts Will I Need for My Hair Transplant?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1077" class="eael-accordion-content clearfix" data-tab="7" aria-labelledby="how-many-grafts-will-i-need-for-my-hair-transplant"><p><span style="font-weight: 400">Graft count depends on several variables: the size of the area being restored, the degree of thinning or loss, your target density, and the characteristics of your donor hair. A patient addressing a receding hairline at the temples may require </span><b>1,500 to 2,500 grafts. </b><span style="font-weight: 400">A patient treating significant crown loss or seeking full frontal restoration may need 3,000 or more.</span></p></div>
					</div><div class="eael-accordion-list">
					<div id="can-forhair-repair-a-bad-hair-transplant-from-another-clinic" class="elementor-tab-title eael-accordion-header" tabindex="0" data-tab="8" aria-controls="elementor-tab-content-1078"><span class="eael-accordion-tab-title">Can Forhair Repair a Bad Hair Transplant From Another Clinic?</span><svg aria-hidden="true" class="fa-toggle e-font-icon-svg e-fas-chevron-down" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path></svg></div><div id="elementor-tab-content-1078" class="eael-accordion-content clearfix" data-tab="8" aria-labelledby="can-forhair-repair-a-bad-hair-transplant-from-another-clinic"><p><span style="font-weight: 400">Yes. Corrective hair restoration is one of Forhair&#8217;s areas of specialization. </span><a href="https://www.forhair.com/hair-transplant-repair/"><span style="font-weight: 400">Approximately 40% of patients treated</span></a><span style="font-weight: 400"> at the Atlanta and New York clinics come specifically seeking repair work following unsuccessful procedures elsewhere. Common issues include pluggy or unnatural hairlines, visible donor scarring, low graft survival rates, and poor density distribution.</span></p><p><span style="font-weight: 400">Every repair case begins with a thorough assessment of the existing work, the remaining donor supply, and what is realistically achievable. Forhair provides honest guidance on what correction is possible before any commitment is made.</span></p></div>
					</div></div>				</div>
				</div>
				</div>
					</div>
				</div>
				</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-dbe94a6 e-con-full e-flex e-con e-parent" data-id="dbe94a6" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-04a7c14 e-con-full e-flex e-con e-child" data-id="04a7c14" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-4112062 content-align-cta-center elementor-widget elementor-widget-eael-cta-box" data-id="4112062" data-element_type="widget" data-e-type="widget" data-widget_type="eael-cta-box.default">
				<div class="elementor-widget-container">
							<div class="eael-call-to-action cta-basic bg-lite cta-preset-1">
        <h2 class="title eael-cta-heading">What's Your Next Step?</h2><p>Are you eager to explore your hair restoration possibilities? Get ready to take action against that frustrating bald spot or thinning hair today!</p><a href="https://www.forhair.com/free-online-consultation/" class="cta-button cta-preset-1  ">Free Consultation</a>	</div>
								</div>
				</div>
				</div>
				</div>
				</div>
		
<script nitro-exclude>
    var heartbeatData = new FormData(); heartbeatData.append('nitroHeartbeat', '1');
    fetch(location.href, {method: 'POST', body: heartbeatData, credentials: 'omit'});
</script>
<script nitro-exclude>
    document.cookie = 'nitroCachedPage=' + (!window.NITROPACK_STATE ? '0' : '1') + '; path=/; SameSite=Lax';
</script>
<script nitro-exclude>
    if (!window.NITROPACK_STATE || window.NITROPACK_STATE != 'FRESH') {
        var proxyPurgeOnly = 0;
        if (typeof navigator.sendBeacon !== 'undefined') {
            var nitroData = new FormData(); nitroData.append('nitroBeaconUrl', 'aHR0cHM6Ly93d3cuZm9yaGFpci5jb20vP2Zvcm1hdD1yc3Mmb3B0aW9uPWNvbV9qbWFwJnZpZXc9c2l0ZW1hcA=='); nitroData.append('nitroBeaconCookies', 'W10='); nitroData.append('nitroBeaconHash', 'f88813c10865fa85b93c7146d4868fbec5433ace19444ff6622302020f4158fa2f7a2656429c230e2bd095e732b47c6dcbe85b3d0d50277b67dea201f63788d7'); nitroData.append('proxyPurgeOnly', ''); nitroData.append('layout', 'home'); navigator.sendBeacon(location.href, nitroData);
        } else {
            var xhr = new XMLHttpRequest(); xhr.open('POST', location.href, true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.send('nitroBeaconUrl=aHR0cHM6Ly93d3cuZm9yaGFpci5jb20vP2Zvcm1hdD1yc3Mmb3B0aW9uPWNvbV9qbWFwJnZpZXc9c2l0ZW1hcA==&nitroBeaconCookies=W10=&nitroBeaconHash=f88813c10865fa85b93c7146d4868fbec5433ace19444ff6622302020f4158fa2f7a2656429c230e2bd095e732b47c6dcbe85b3d0d50277b67dea201f63788d7&proxyPurgeOnly=&layout=home');
        }
    }
</script>		<footer data-elementor-type="footer" data-elementor-id="1519" class="elementor elementor-1519 elementor-location-footer" data-elementor-post-type="elementor_library">
					<section data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-section elementor-top-section elementor-element elementor-element-fd95512 elementor-section-height-min-height elementor-section-content-middle elementor-section-items-top elementor-section-boxed elementor-section-height-default" data-id="fd95512" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
							<div class="elementor-background-overlay"></div>
							<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-c299a5e" data-id="c299a5e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-90919df elementor-widget elementor-widget-image" data-id="90919df" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img loading="lazy" width="740" height="369" src="https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4.png" class="attachment-full size-full wp-image-25437" alt="ForHair hair transplant clinic logo" srcset="https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4.png 740w, https://www.forhair.com/wp-content/uploads/2022/12/forhair-logo-4-300x150.png 300w" sizes="(max-width: 740px) 100vw, 740px" />															</div>
				</div>
				<div class="elementor-element elementor-element-eefaf54 elementor-widget elementor-widget-text-editor" data-id="eefaf54" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Get the best hair transplant results, guaranteed.</p><p>Find out if FUE hair transplant is right for you and schedule a FREE consultation today.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-9cf89ee elementor-align-left elementor-mobile-align-left elementor-widget__width-inherit elementor-widget elementor-widget-button" data-id="9cf89ee" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-lg" href="/free-online-consultation/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Free Consultation</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-1e16f0b" data-id="1e16f0b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8fb90d4 elementor-widget elementor-widget-heading" data-id="8fb90d4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">About</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-11944f8 elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="11944f8" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;svg aria-hidden=\&quot;true\&quot; class=\&quot;e-font-icon-svg e-fas-caret-down\&quot; viewBox=\&quot;0 0 320 512\&quot; xmlns=\&quot;http:\/\/www.w3.org\/2000\/svg\&quot;&gt;&lt;path d=\&quot;M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\&quot;&gt;&lt;\/path&gt;&lt;\/svg&gt;&quot;,&quot;library&quot;:&quot;fa-solid&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-vertical e--pointer-none">
				<ul id="menu-1-11944f8" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5470"><a href="https://www.forhair.com/hair-transplant-procedure-overview/" class="elementor-item">Procedure Overview</a></li>
<li class="menu-item menu-item-type-post_type_archive menu-item-object-before-after-photos menu-item-32631"><a href="https://www.forhair.com/before-after-photos/" class="elementor-item">Before &#038; After Photos</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5469"><a href="https://www.forhair.com/frequently-asked-questions/" class="elementor-item">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5472"><a href="https://www.forhair.com/contact-us/" class="elementor-item">Contact Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6091"><a href="https://www.forhair.com/blog/" class="elementor-item">Blog</a></li>
</ul>			</nav>
						<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-11944f8" class="elementor-nav-menu sm-vertical"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5470"><a href="https://www.forhair.com/hair-transplant-procedure-overview/" class="elementor-item" tabindex="-1">Procedure Overview</a></li>
<li class="menu-item menu-item-type-post_type_archive menu-item-object-before-after-photos menu-item-32631"><a href="https://www.forhair.com/before-after-photos/" class="elementor-item" tabindex="-1">Before &#038; After Photos</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5469"><a href="https://www.forhair.com/frequently-asked-questions/" class="elementor-item" tabindex="-1">Frequently Asked Questions</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5472"><a href="https://www.forhair.com/contact-us/" class="elementor-item" tabindex="-1">Contact Us</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6091"><a href="https://www.forhair.com/blog/" class="elementor-item" tabindex="-1">Blog</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-0cf7ecd" data-id="0cf7ecd" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-e747c3d elementor-widget elementor-widget-heading" data-id="e747c3d" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Clinic Locations</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-ad727bd elementor-widget elementor-widget-icon-box" data-id="ad727bd" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://g.page/forhair-hair-transplant-clinic?share" >
							Atlanta Clinic						</a>
					</div>
				
									<p class="elementor-icon-box-description">
						1070 Powers Place<br>
Alpharetta, Georgia<br>
30009 U.S.					</p>
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-2e4e299 elementor-position-inline-start elementor-mobile-position-inline-start elementor-view-framed elementor-shape-circle elementor-widget elementor-widget-icon-box" data-id="2e4e299" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="tel:6785661011" class="elementor-icon" tabindex="-1" aria-label="(678) 566-1011">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-phone-alt" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z"></path></svg>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="tel:6785661011" >
							(678) 566-1011						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-0ab62db elementor-widget elementor-widget-icon-box" data-id="0ab62db" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="https://goo.gl/maps/jNwb4HFoNX6cgtss6" >
							New York Clinic						</a>
					</div>
				
									<p class="elementor-icon-box-description">
						200 West 57th St, Suite 403<br>
New York, NY<br>
10019 U.S.					</p>
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-34cb2b5 elementor-position-inline-start elementor-mobile-position-inline-start elementor-view-framed elementor-shape-circle elementor-widget elementor-widget-icon-box" data-id="34cb2b5" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="tel:12124535000" class="elementor-icon" tabindex="-1" aria-label="(212) 453-5000">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-phone-alt" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z"></path></svg>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="tel:12124535000" >
							(212) 453-5000						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-043b705" data-id="043b705" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-89d0eeb elementor-widget elementor-widget-heading" data-id="89d0eeb" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h4 class="elementor-heading-title elementor-size-default">Working Hours</h4>				</div>
				</div>
				<div class="elementor-element elementor-element-d18435d elementor-widget elementor-widget-text-editor" data-id="d18435d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><strong>Monday-Friday</strong><br />8:00 am to 6:00 pm<br /><strong>Weekends</strong><br />Closed</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5f485b4 elementor-position-inline-start elementor-mobile-position-inline-start elementor-view-framed elementor-shape-circle elementor-widget elementor-widget-icon-box" data-id="5f485b4" data-element_type="widget" data-e-type="widget" data-widget_type="icon-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-box-wrapper">

						<div class="elementor-icon-box-icon">
				<a href="tel:18003684247" class="elementor-icon" tabindex="-1" aria-label="(800) 368-4247 (HAIR)">
				<svg aria-hidden="true" class="e-font-icon-svg e-fas-phone-alt" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z"></path></svg>				</a>
			</div>
			
						<div class="elementor-icon-box-content">

									<div class="elementor-icon-box-title">
						<a href="tel:18003684247" >
							(800) 368-4247 (HAIR)						</a>
					</div>
				
				
			</div>
			
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-bc5c58c elementor-shape-circle e-grid-align-left elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="bc5c58c" data-element_type="widget" data-e-type="widget" data-widget_type="social-icons.default">
				<div class="elementor-widget-container">
							<div class="elementor-social-icons-wrapper elementor-grid" role="list">
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-0945a39" href="https://www.facebook.com/forhair.clinic" target="_blank">
						<span class="elementor-screen-only">Facebook</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-facebook" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-539a6dc" href="https://x.com/ForhairClinic" target="_blank">
						<span class="elementor-screen-only">X-twitter</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-x-twitter" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-f6bd2d5" href="https://www.youtube.com/c/forhair/featured" target="_blank">
						<span class="elementor-screen-only">Youtube</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-youtube" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>					</a>
				</span>
							<span class="elementor-grid-item" role="listitem">
					<a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-6388ed3" href="https://www.instagram.com/forhair.clinic/" target="_blank">
						<span class="elementor-screen-only">Instagram</span>
						<svg aria-hidden="true" class="e-font-icon-svg e-fab-instagram" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>					</a>
				</span>
					</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-8dfaf53 e-flex e-con-boxed e-con e-parent" data-id="8dfaf53" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-d1c183d e-flex e-con-boxed e-con e-parent" data-id="d1c183d" data-element_type="container" data-e-type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-940e76d e-con-full e-flex e-con e-child" data-id="940e76d" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-d47738c elementor-widget elementor-widget-text-editor" data-id="d47738c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									© 2026 | ForHair &#8211; Hair Transplant in Atlanta, GA &amp; New York, NYC								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-d7c79df e-con-full e-flex e-con e-child" data-id="d7c79df" data-element_type="container" data-e-type="container">
				<div class="elementor-element elementor-element-f68c73c elementor-widget elementor-widget-text-editor" data-id="f68c73c" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><span style="color: #003366;"><a style="color: #003366;" href="https://www.forhair.com/terms/" target="_blank" rel="noopener">Terms of Use</a> | <a style="color: #003366;" href="https://www.forhair.com/privacy-policy/" target="_blank" rel="noopener">Privacy Policy</a><strong> | </strong><a style="color: #003366;" href="https://www.forhair.com/sitemap/" target="_blank" rel="noopener">Sitemap</a></span></p>								</div>
				</div>
				</div>
					</div>
				</div>
				</footer>
		
        <!-- Meta Pixel Event Code -->
        <script type='text/javascript'>
        (function () {
            function runPixelCode( response ) {
                if ( ! response || ! response.data || ! response.data.fb_pxl_code ) {
                    return;
                }

                try {
                    new Function( response.data.fb_pxl_code )();
                } catch ( e ) {
                    console && console.warn
                        && console.warn( 'Meta Pixel response parsing failed. Please check if your pixel is connected.', e );
                }
            }

            var radio = window.nfRadio
                || ( window.Backbone && window.Backbone.Radio );
            if ( radio && radio.channel ) {
                radio.channel( 'forms' ).on( 'submit:response', runPixelCode );
            }

            if ( window.jQuery ) {
                window.jQuery( document ).on(
                    'nfFormSubmitResponse',
                    function ( event, data ) {
                        if ( data && data.response ) {
                            runPixelCode( data.response );
                        }
                    }
                );
            }
        })();
        </script>
        <!-- End Meta Pixel Event Code -->
                <!-- Meta Pixel Event Code -->
        <script type='text/javascript'>
        (function ( $ ) {
            if ( ! $ || typeof document === 'undefined' ) {
                return;
            }
            // WPForms triggers this jQuery event and passes the AJAX response object.
            $( document ).on( 'wpformsAjaxSubmitSuccess', function ( event, data ) {
                if ( data && data.data && data.data.fb_pxl_code ) {
                    try {
                        new Function( data.data.fb_pxl_code )();
                    } catch ( e ) {
                        console && console.warn && console.warn( 'Meta Pixel eval failed', e );
                    }
                }
            } );
        })( window.jQuery );
        </script>
        <!-- End Meta Pixel Event Code -->
        <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>
<!-- HFCM by 99 Robots - Snippet # 8: Google Tag Manager - footer -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KP2VQM33"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- /end HFCM by 99 Robots -->
<div id="eael-reading-progress-28652" class="eael-reading-progress-wrap eael-reading-progress-wrap-local"><div class="eael-reading-progress eael-reading-progress-local eael-reading-progress-bottom">
                        <div class="eael-reading-progress-fill"></div>
                    </div></div>            <!-- EA FAQ Schema : Starts-->
            <script type="application/ld+json">
                {"@context":"https:\/\/schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"Does a Hair Transplant in Atlanta Hurt?","acceptedAnswer":{"@type":"Answer","text":"<p>Most patients are surprised by how manageable the experience is. The procedure begins with a local anesthetic applied to the scalp. Once it takes effect, the majority of patients report only mild pressure or tugging during extraction and placement. No general anesthesia is required, and most people remain comfortable enough to watch a film or listen to music throughout.<\/p><p><b>Dr. Cole's CIT® technique <\/b><span style=\"font-weight: 400;\">is specifically designed to minimize trauma to surrounding tissue, which contributes to a more comfortable recovery compared with more invasive strip procedures.<\/span><\/p><p><i><span style=\"font-weight: 400;\">Individual experiences vary. A full discussion of what to expect during and after your procedure is part of every Forhair consultation.<\/span><\/i><\/p>"}},{"@type":"Question","name":"How Long Does Recovery Take After a Hair Transplant?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Recovery timelines vary depending on the technique used and the size of the procedure, but most Forhair patients return to desk work within two to three days. Physical activity, including gym work and strenuous exercise, is generally resumed after about ten days. Redness and minor scabbing in the recipient area typically resolves within one to two weeks.<\/span><\/p>"}},{"@type":"Question","name":"Am I a Good Candidate for a Hair Transplant in Atlanta?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Factors that influence candidacy include the current <\/span><b>degree of hair loss,<\/b><span style=\"font-weight: 400;\"> the<\/span><b> density and quality of the donor area, age<\/b><span style=\"font-weight: 400;\">, and whether <\/span><b>hair loss has stabilized. <\/b><\/p><p><span style=\"font-weight: 400;\">There is no single standard that qualifies or disqualifies someone outright. The only way to know for certain is through a detailed scalp evaluation. Forhair offers complimentary c<\/span><\/p>"}},{"@type":"Question","name":"How Much Does a Hair Transplant Cost in Atlanta?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Hair transplant pricing is determined by the number of grafts required, the complexity of the procedure, and the specific technique used. At Forhair, individual treatments typically range <\/span><b>from $6,000 to $28,000.<\/b><span style=\"font-weight: 400;\"> Every quote is all-inclusive, covering surgeon fees, anesthesia, and twelve months of post-procedure care. There are no hidden charges added after the fact.<\/span><\/p><p><span style=\"font-weight: 400;\">For patients who prefer to spread the investment over time, <\/span><a href=\"https:\/\/www.forhair.com\/what-does-it-cost\/\"><span style=\"font-weight: 400;\">Forhair works with a financing partner<\/span><\/a><span style=\"font-weight: 400;\"> that allows qualified applicants to begin treatment in manageable monthly installments, subject to credit approval, subject to credit approval.<\/span><\/p>"}},{"@type":"Question","name":"What Is Included in a Free Consultation at Forhair's Atlanta Clinic?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Consultation is a substantive, no-obligation appointment designed to give you a clear picture of your options before you make any decisions. It includes a microscope-level scalp analysis, a personalized graft count estimate, a review of the techniques best suited to your hair type and loss pattern, and an honest assessment of the results you can realistically expect.<\/span><\/p><p><span style=\"font-weight: 400;\">Consultations are available in person at our Alpharetta, Georgia clinic or <\/span><a href=\"https:\/\/www.forhair.com\/free-online-consultation\/\"><span style=\"font-weight: 400;\">virtually via video<\/span><\/a><span style=\"font-weight: 400;\">. Our patient support team, based at the Atlanta headquarters, coordinates every step so there is no gap in communication before, during, or after your appointment. There is no pressure to book and no cost to attend.<\/span><\/p>"}},{"@type":"Question","name":"How Is CIT® Different From Standard FUE Hair Transplants in Atlanta?","acceptedAnswer":{"@type":"Answer","text":"<p><a href=\"https:\/\/www.forhair.com\/advanced-fue-hair-transplant-cit\/\"><span style=\"font-weight: 400;\">CIT® (Cole Isolation Technique)<\/span><\/a><span style=\"font-weight: 400;\"> is Dr. Cole's patented refinement of Follicular Unit Extraction. Standard FUE involves extracting individual follicular units from the donor area using a cylindrical punch. CIT® improves on this process through purpose-built instrumentation that reduces trauma to the follicle during extraction, preserves the stem cell layer at the base of the graft, and produces a lower transection rate than conventional punches.<\/span><\/p><p><span style=\"font-weight: 400;\">We observe results such as a graft survival rate exceeding 97%, minimal to no visible scarring in the donor area, and stronger long-term yield. Because CIT® instruments were designed specifically for the technique, the procedure can also be adapted for patients whose scalps would not be suitable for a strip (FUT) procedure due to tightness or previous scarring.<\/span><\/p>"}},{"@type":"Question","name":"How Many Grafts Will I Need for My Hair Transplant?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Graft count depends on several variables: the size of the area being restored, the degree of thinning or loss, your target density, and the characteristics of your donor hair. A patient addressing a receding hairline at the temples may require <\/span><b>1,500 to 2,500 grafts. <\/b><span style=\"font-weight: 400;\">A patient treating significant crown loss or seeking full frontal restoration may need 3,000 or more.<\/span><\/p>"}},{"@type":"Question","name":"Can Forhair Repair a Bad Hair Transplant From Another Clinic?","acceptedAnswer":{"@type":"Answer","text":"<p><span style=\"font-weight: 400;\">Yes. Corrective hair restoration is one of Forhair's areas of specialization. <\/span><a href=\"https:\/\/www.forhair.com\/hair-transplant-repair\/\"><span style=\"font-weight: 400;\">Approximately 40% of patients treated<\/span><\/a><span style=\"font-weight: 400;\"> at the Atlanta and New York clinics come specifically seeking repair work following unsuccessful procedures elsewhere. Common issues include pluggy or unnatural hairlines, visible donor scarring, low graft survival rates, and poor density distribution.<\/span><\/p><p><span style=\"font-weight: 400;\">Every repair case begins with a thorough assessment of the existing work, the remaining donor supply, and what is realistically achievable. Forhair provides honest guidance on what correction is possible before any commitment is made.<\/span><\/p>"}}]}            </script>
            <!-- EA FAQ Schema : Ends-->
            <!-- Meta Pixel Event Code -->
    <script type='text/javascript'>
        document.addEventListener( 'wpcf7mailsent', function( event ) {
        if( "fb_pxl_code" in event.detail.apiResponse){
            eval(event.detail.apiResponse.fb_pxl_code);
        }
        }, false );
    </script>
    <!-- End Meta Pixel Event Code -->
        <div id="fb-pxl-ajax-code"></div><!-- Custom Feeds for Instagram JS -->
<script type="text/javascript">
var sbiajaxurl = "https://www.forhair.com/wp-admin/admin-ajax.php";

</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>
			<link rel='stylesheet' id='elementor-post-20468-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-20468.css?ver=1780196599' media='all' />
<link rel='stylesheet' id='widget-spacer-css' href='https://www.forhair.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=4.0.9' media='all' />
<link rel='stylesheet' id='elementor-post-20387-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-20387.css?ver=1780196599' media='all' />
<link rel='stylesheet' id='elementor-post-20456-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-20456.css?ver=1780196599' media='all' />
<link rel='stylesheet' id='elementor-post-20460-css' href='https://www.forhair.com/wp-content/uploads/elementor/css/post-20460.css?ver=1780196600' media='all' />
<link rel='stylesheet' id='gp-advanced-phone-field-css' href='https://www.forhair.com/wp-content/plugins/gp-advanced-phone-field/styles/frontend.min.css?ver=1.1.10' media='all' />
<link rel='stylesheet' id='gform_basic-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/basic.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='gform_theme_components-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/theme-components.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='gform_theme-css' href='https://www.forhair.com/wp-content/plugins/gravityforms/assets/css/dist/theme.min.css?ver=2.10.3' media='all' />
<link rel='stylesheet' id='sbi_styles-css' href='https://www.forhair.com/wp-content/plugins/instagram-feed-pro/css/sbi-styles.min.css?ver=6.9.0' media='all' />
<link rel='stylesheet' id='eael-reading-progress-css' href='https://www.forhair.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/reading-progress.min.css?ver=6.6.5' media='all' />
<style id="eael-reading-progress-inline-css">

				#eael-reading-progress-28652 .eael-reading-progress .eael-reading-progress-fill {
					background-color: var( --e-global-color-secondary );	
				}
			
/*# sourceURL=eael-reading-progress-inline-css */
</style>
<script id="essential-blocks-blocks-localize-js-extra">
var eb_conditional_localize = [];
var EssentialBlocksLocalize = {"eb_plugins_url":"https://www.forhair.com/wp-content/plugins/essential-blocks/","image_url":"https://www.forhair.com/wp-content/plugins/essential-blocks/assets/images","eb_wp_version":"7","eb_version":"6.1.3","eb_admin_url":"https://www.forhair.com/wp-admin/","rest_rootURL":"https://www.forhair.com/wp-json/","ajax_url":"https://www.forhair.com/wp-admin/admin-ajax.php","nft_nonce":"49d8c8db4b","post_grid_pagination_nonce":"c7c98a6c55","placeholder_image":"https://www.forhair.com/wp-content/plugins/essential-blocks/assets/images/placeholder.png","is_pro_active":"true","upgrade_pro_url":"https://essential-blocks.com/upgrade","responsiveBreakpoints":{"tablet":1024,"mobile":767},"wp_timezone":"+00:00","gmt_offset":"0"};
var EssentialBlocksProLocalize = {"eb_pro_plugins_url":"https://www.forhair.com/wp-content/plugins/essential-blocks-pro/","image_url":"https://www.forhair.com/wp-content/plugins/essential-blocks-pro/assets/images","eb_pro_version":"2.9.1","ajax_url":"https://www.forhair.com/wp-admin/admin-ajax.php","adv_search_nonce":"e8de159307","eb_dynamic_tags":"eb-dynamic-tags","data_table_nonce":"d7c55a77fd","recaptcha_type":null,"post_grid_search_nonce":"81731f240a","fancy_chart_nonce":"33b6150e76","partial_allowed_blocks":["essential-blocks/accordion","essential-blocks/text","essential-blocks/advanced-heading","essential-blocks/notice","essential-blocks/infobox","essential-blocks/feature-list","essential-blocks/call-to-action","essential-blocks/team-member","essential-blocks/testimonial","essential-blocks/pricing-table","essential-blocks/pro-business-hours"],"protected_content_disabled_blocks":["essential-blocks/column","essential-blocks/tab","essential-blocks/accordion-item","essential-blocks/price","essential-blocks/pro-mega-menu-item","essential-blocks/pro-pricing-cell","essential-blocks/pro-pricing-column","essential-blocks/form-text-field","essential-blocks/form-email-field","essential-blocks/form-number-field","essential-blocks/form-textarea-field","essential-blocks/form-checkbox-field","essential-blocks/form-radio-field","essential-blocks/form-select-field","essential-blocks/pro-form-phone-field","essential-blocks/pro-form-country-field","essential-blocks/pro-form-datetime-picker","essential-blocks/pro-form-recaptcha","essential-blocks/pro-form-multistep-wrapper","essential-blocks/pro-post-template","essential-blocks/pro-loop-pagination"]};
//# sourceURL=essential-blocks-blocks-localize-js-extra
</script>
<script id="essential-blocks-blocks-localize-js" src="https://www.forhair.com/wp-content/plugins/essential-blocks/assets/js/eb-blocks-localize.js?ver=31d6cfe0d16ae931b73c"></script>
<script id="hello-theme-frontend-js" src="https://www.forhair.com/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver=3.4.9"></script>
<script id="elementor-webpack-runtime-js" src="https://www.forhair.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.0.9"></script>
<script id="elementor-frontend-modules-js" src="https://www.forhair.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.0.9"></script>
<script id="jquery-ui-core-js" src="https://www.forhair.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script>
<script id="elementor-frontend-js-extra">
var EAELImageMaskingConfig = {"svg_dir_url":"https://www.forhair.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/img/image-masking/svg-shapes/"};
//# sourceURL=elementor-frontend-js-extra
</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":"4.0.9","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"theme_builder_v2":true,"hello-theme-header-footer":true,"nested-elements":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.forhair.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.forhair.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.forhair.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"0a18aef6ec","atomicFormsSendForm":"3b2327e271"},"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":28652,"title":"ForHair%20FUE%20Hair%20Transplant%20%7C%20Dr.%20John%20P.%20Cole%20%7C%20Pioneer%20FUE%20Clinic","excerpt":"","featuredImage":"https:\/\/www.forhair.com\/wp-content\/uploads\/2022\/12\/images_2020_05_17_hair-transplant-doctors-nyc2-john-cole.webp"}};
//# sourceURL=elementor-frontend-js-before
</script>
<script id="elementor-frontend-js" src="https://www.forhair.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.0.9"></script>
<script id="mdp-huger-elementor-js" src="https://www.forhair.com/wp-content/plugins/huger-elementor/js/huger-elementor.min.js?ver=1.1.6"></script>
<script id="e-sticky-js" src="https://www.forhair.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=4.0.4"></script>
<script id="smartmenus-js" src="https://www.forhair.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script>
<script id="swiper-js" src="https://www.forhair.com/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js?ver=8.4.5"></script>
<script id="sbiscripts-js-extra">
var sb_instagram_js_options = {"font_method":"svg","placeholder":"https://www.forhair.com/wp-content/plugins/instagram-feed-pro/img/placeholder.png","resized_url":"https://www.forhair.com/wp-content/uploads/sb-instagram-feed-images/","ajax_url":"https://www.forhair.com/wp-admin/admin-ajax.php"};
//# sourceURL=sbiscripts-js-extra
</script>
<script id="sbiscripts-js" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/js/sbi-scripts.min.js?ver=6.9.0"></script>
<script id="elementor-preview-js" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/admin/assets/js/elementor-preview.js?ver=6.9.0"></script>
<script id="wccp_pro_admin_bar_ajax-js-extra">
var ajax_object = {"ajaxurl":"https://www.forhair.com/wp-admin/admin-ajax.php","link":"https://www.forhair.com/?option=com_jmap&view=sitemap&format=rss"};
//# sourceURL=wccp_pro_admin_bar_ajax-js-extra
</script>
<script id="wccp_pro_admin_bar_ajax-js" src="https://www.forhair.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=7.0"></script>
<script data-cfasync="false" id="gforms_recaptcha_recaptcha-js-extra">
var gforms_recaptcha_recaptcha_strings = {"nonce":"b3e1285f80","disconnect":"Disconnecting","change_connection_type":"Resetting","spinner":"https://www.forhair.com/wp-content/plugins/gravityforms/images/spinner.svg","connection_type":"classic","disable_badge":"1","change_connection_type_title":"Change Connection Type","change_connection_type_message":"Changing the connection type will delete your current settings.  Do you want to proceed?","disconnect_title":"Disconnect","disconnect_message":"Disconnecting from reCAPTCHA will delete your current settings.  Do you want to proceed?","site_key":"6Lf-VNAjAAAAAGuoodZt8HkelJusT9vyho6LhYK1"};
//# sourceURL=gforms_recaptcha_recaptcha-js-extra
</script>
<script data-wp-strategy="defer" defer id="gforms_recaptcha_recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6Lf-VNAjAAAAAGuoodZt8HkelJusT9vyho6LhYK1&#038;ver=2.2.2"></script>
<script data-wp-strategy="defer" defer id="gforms_recaptcha_frontend-js" src="https://www.forhair.com/wp-content/plugins/gravityformsrecaptcha/js/frontend.min.js?ver=2.2.2"></script>
<script id="eael-general-js-extra">
var localize = {"ajaxurl":"https://www.forhair.com/wp-admin/admin-ajax.php","nonce":"6b4b62ca4e","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https://www.forhair.com/","cart_redirectition":"no","cart_page_url":"","el_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}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http://wiki.lexisnexis.com/academic/images/f/fb/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"ebf1b2b995","eael_register_nonce":"528e1e4dfe","eael_lostpassword_nonce":"bb26f1d116","eael_resetpassword_nonce":"a3fb257a1e"};
//# sourceURL=eael-general-js-extra
</script>
<script id="eael-general-js" src="https://www.forhair.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.6.5"></script>
<script id="wp-dom-ready-js" data-cfasync="false" src="https://www.forhair.com/wp-includes/js/dist/dom-ready.min.js?ver=a06281ae5cf5500e9317"></script>
<script id="wp-hooks-js" src="https://www.forhair.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>
<script id="wp-i18n-js" data-cfasync="false" src="https://www.forhair.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="wp-a11y-js" data-cfasync="false" src="https://www.forhair.com/wp-includes/js/dist/a11y.min.js?ver=af934e5259bc51b8718e"></script>
<script id="gform_json-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/js/jquery.json.min.js?ver=2.10.3"></script>
<script data-cfasync="false" id="gform_gravityforms-js-extra">
var gform_i18n = {"datepicker":{"days":{"monday":"Mo","tuesday":"Tu","wednesday":"We","thursday":"Th","friday":"Fr","saturday":"Sa","sunday":"Su"},"months":{"january":"January","february":"February","march":"March","april":"April","may":"May","june":"June","july":"July","august":"August","september":"September","october":"October","november":"November","december":"December"},"firstDay":1,"iconText":"Select date"}};
var gf_legacy_multi = [];
var gform_gravityforms = {"strings":{"invalid_file_extension":"This type of file is not allowed. Must be one of the following:","delete_file":"Delete this file","in_progress":"in progress","file_exceeds_limit":"File exceeds size limit","illegal_extension":"This type of file is not allowed.","max_reached":"Maximum number of files reached","unknown_error":"There was a problem while saving the file on the server","currently_uploading":"Please wait for the uploading to complete","cancel":"Cancel","cancel_upload":"Cancel this upload","cancelled":"Cancelled","error":"Error","message":"Message"},"vars":{"images_url":"https://www.forhair.com/wp-content/plugins/gravityforms/images"}};
var gf_global = {"gf_currency_config":{"name":"U.S. Dollar","symbol_left":"$","symbol_right":"","symbol_padding":"","thousand_separator":",","decimal_separator":".","decimals":2,"code":"USD"},"base_url":"https://www.forhair.com/wp-content/plugins/gravityforms","number_formats":[],"spinnerUrl":"https://www.forhair.com/wp-content/plugins/gravityforms/images/spinner.svg","version_hash":"4c79b33ed49edced39cce4059d196c7d","strings":{"newRowAdded":"New row added.","rowRemoved":"Row removed","formSaved":"The form has been saved.  The content contains the link to return and complete the form."}};
//# sourceURL=gform_gravityforms-js-extra
</script>
<script id="gform_gravityforms-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/js/gravityforms.min.js?ver=2.10.3"></script>
<script id="gform_placeholder-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/js/placeholders.jquery.min.js?ver=2.10.3"></script>
<script id="gform_gravityforms_utils-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/assets/js/dist/utils.min.js?ver=3f278756f0a3032bed328ff6a9f6c01d"></script>
<script id="gform_gravityforms_theme_vendors-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/assets/js/dist/vendor-theme.min.js?ver=7c651d0ba638ce98b9c65141edddd567"></script>
<script data-cfasync="false" id="gform_gravityforms_theme-js-extra">
var gform_theme_config = {"common":{"form":{"honeypot":{"version_hash":"4c79b33ed49edced39cce4059d196c7d"},"ajax":{"ajaxurl":"https://www.forhair.com/wp-admin/admin-ajax.php","ajax_submission_nonce":"a112a31afe","i18n":{"step_announcement":"Step %1$s of %2$s, %3$s","unknown_error":"There was an unknown error processing your request. Please try again.","error_403":"The request was blocked (403 error) for unknown security reasons. Remove any code-like text (scripts or DB queries) and try again."}}}},"hmr_dev":"","public_path":"https://www.forhair.com/wp-content/plugins/gravityforms/assets/js/dist/","config_nonce":"6bb3d5abac"};
//# sourceURL=gform_gravityforms_theme-js-extra
</script>
<script id="gform_gravityforms_theme-js" defer='defer' data-cfasync="false" src="https://www.forhair.com/wp-content/plugins/gravityforms/assets/js/dist/scripts-theme.min.js?ver=301fdc9aa6144168f3b854c4c2c8f6d3"></script>
<script id="gp-advanced-phone-field-js-extra">
var GPAPF = {"pluginUrl":"https://www.forhair.com/wp-content/plugins/gp-advanced-phone-field","localizedCountries":null};
//# sourceURL=gp-advanced-phone-field-js-extra
</script>
<script id="gp-advanced-phone-field-js" defer='defer' src="https://www.forhair.com/wp-content/plugins/gp-advanced-phone-field/js/built/gp-advanced-phone-field.js?ver=1.1.10"></script>
<script id="sbi_scripts-js-extra">
var sb_instagram_js_options = {"font_method":"svg","resized_url":"https://www.forhair.com/wp-content/uploads/sb-instagram-feed-images/","placeholder":"https://www.forhair.com/wp-content/plugins/instagram-feed-pro/img/placeholder.png","br_adjust":"1"};
var sbiTranslations = {"share":"Share"};
//# sourceURL=sbi_scripts-js-extra
</script>
<script id="sbi_scripts-js" src="https://www.forhair.com/wp-content/plugins/instagram-feed-pro/js/sbi-scripts.min.js?ver=6.9.0"></script>
<script id="eael-reading-progress-js" src="https://www.forhair.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/reading-progress.min.js?ver=6.6.5"></script>
<script id="elementor-pro-webpack-runtime-js" src="https://www.forhair.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=4.0.4"></script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.forhair.com\/wp-admin\/admin-ajax.php","nonce":"b6172066ee","urls":{"assets":"https:\/\/www.forhair.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.forhair.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"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":"en_US","app_id":"1577870203019028"},"lottie":{"defaultAnimationUrl":"https:\/\/www.forhair.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
//# sourceURL=elementor-pro-frontend-js-before
</script>
<script id="elementor-pro-frontend-js" src="https://www.forhair.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=4.0.4"></script>
<script id="pro-elements-handlers-js" src="https://www.forhair.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=4.0.4"></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.forhair.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=https://www.forhair.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script>var localize ={"ajaxurl":"https:\/\/www.forhair.com\/wp-admin\/admin-ajax.php","nonce":"6b4b62ca4e","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/www.forhair.com\/","cart_redirectition":"no","cart_page_url":"","el_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}},"ParticleThemesData":{"default":"{\"particles\":{\"number\":{\"value\":160,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":true,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"repulse\"},\"onclick\":{\"enable\":true,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nasa":"{\"particles\":{\"number\":{\"value\":250,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":1,\"random\":true,\"anim\":{\"enable\":true,\"speed\":1,\"opacity_min\":0,\"sync\":false}},\"size\":{\"value\":3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":4,\"size_min\":0.3,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":1,\"direction\":\"none\",\"random\":true,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":600}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":250,\"size\":0,\"duration\":2,\"opacity\":0,\"speed\":3},\"repulse\":{\"distance\":400,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","bubble":"{\"particles\":{\"number\":{\"value\":15,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#1b1e34\"},\"shape\":{\"type\":\"polygon\",\"stroke\":{\"width\":0,\"color\":\"#000\"},\"polygon\":{\"nb_sides\":6},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.3,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":50,\"random\":false,\"anim\":{\"enable\":true,\"speed\":10,\"size_min\":40,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":200,\"color\":\"#ffffff\",\"opacity\":1,\"width\":2},\"move\":{\"enable\":true,\"speed\":8,\"direction\":\"none\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":false,\"mode\":\"push\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","snow":"{\"particles\":{\"number\":{\"value\":450,\"density\":{\"enable\":true,\"value_area\":800}},\"color\":{\"value\":\"#fff\"},\"shape\":{\"type\":\"circle\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"img\/github.svg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":5,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":500,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":2},\"move\":{\"enable\":true,\"speed\":6,\"direction\":\"bottom\",\"random\":false,\"straight\":false,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":true,\"mode\":\"bubble\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":400,\"line_linked\":{\"opacity\":0.5}},\"bubble\":{\"distance\":400,\"size\":4,\"duration\":0.3,\"opacity\":1,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}","nyan_cat":"{\"particles\":{\"number\":{\"value\":150,\"density\":{\"enable\":false,\"value_area\":800}},\"color\":{\"value\":\"#ffffff\"},\"shape\":{\"type\":\"star\",\"stroke\":{\"width\":0,\"color\":\"#000000\"},\"polygon\":{\"nb_sides\":5},\"image\":{\"src\":\"http:\/\/wiki.lexisnexis.com\/academic\/images\/f\/fb\/Itunes_podcast_icon_300.jpg\",\"width\":100,\"height\":100}},\"opacity\":{\"value\":0.5,\"random\":false,\"anim\":{\"enable\":false,\"speed\":1,\"opacity_min\":0.1,\"sync\":false}},\"size\":{\"value\":4,\"random\":true,\"anim\":{\"enable\":false,\"speed\":40,\"size_min\":0.1,\"sync\":false}},\"line_linked\":{\"enable\":false,\"distance\":150,\"color\":\"#ffffff\",\"opacity\":0.4,\"width\":1},\"move\":{\"enable\":true,\"speed\":14,\"direction\":\"left\",\"random\":false,\"straight\":true,\"out_mode\":\"out\",\"bounce\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200}}},\"interactivity\":{\"detect_on\":\"canvas\",\"events\":{\"onhover\":{\"enable\":false,\"mode\":\"grab\"},\"onclick\":{\"enable\":true,\"mode\":\"repulse\"},\"resize\":true},\"modes\":{\"grab\":{\"distance\":200,\"line_linked\":{\"opacity\":1}},\"bubble\":{\"distance\":400,\"size\":40,\"duration\":2,\"opacity\":8,\"speed\":3},\"repulse\":{\"distance\":200,\"duration\":0.4},\"push\":{\"particles_nb\":4},\"remove\":{\"particles_nb\":2}}},\"retina_detect\":true}"},"eael_login_nonce":"ebf1b2b995","eael_register_nonce":"528e1e4dfe","eael_lostpassword_nonce":"bb26f1d116","eael_resetpassword_nonce":"a3fb257a1e"}</script><script id="eael-inline-js">!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}({9:function(e,t){var n=function(e,t){var n=e.find(".eael-creative-button-wrapper").find(".eael-creative-button");n.hasClass("csvg-use-color")&&n.find("svg").removeAttr("fill").find("*").removeAttr("fill")};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelCreativeButton"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-creative-button.default",n)}))}});!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return-1==n.indexOf(t)&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{};return(i[e]=i[e]||{})[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return-1!=n&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o<i.length;o++){var s=i[o];n&&n[s]&&(this.off(e,s),delete n[s]),s.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(t,i){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(e){return i(t,e)}):"object"==typeof module&&module.exports?module.exports=i(t,require("ev-emitter")):t.imagesLoaded=i(t,t.EvEmitter)}("undefined"!=typeof window?window:this,function(t,e){var s=t.jQuery,r=t.console;function h(e,t){for(var i in t)e[i]=t[i];return e}var a=Array.prototype.slice;function d(e,t,i){if(!(this instanceof d))return new d(e,t,i);var n,o=e;"string"==typeof e&&(o=document.querySelectorAll(e)),o?(this.elements=(n=o,Array.isArray(n)?n:"object"==typeof n&&"number"==typeof n.length?a.call(n):[n]),this.options=h({},this.options),"function"==typeof t?i=t:h(this.options,t),i&&this.on("always",i),this.getImages(),s&&(this.jqDeferred=new s.Deferred),setTimeout(this.check.bind(this))):r.error("Bad element for imagesLoaded "+(o||e))}(d.prototype=Object.create(e.prototype)).options={},d.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},d.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&m[t]){for(var i=e.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background)for(var s=e.querySelectorAll(this.options.background),n=0;n<s.length;n++){var r=s[n];this.addElementBackgroundImages(r)}}};var m={1:!0,9:!0,11:!0};function i(e){this.img=e}function n(e,t){this.url=e,this.element=t,this.img=new Image}return d.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(t.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,e),n=i.exec(t.backgroundImage)}},d.prototype.addImage=function(e){var t=new i(e);this.images.push(t)},d.prototype.addBackground=function(e,t){var i=new n(e,t);this.images.push(i)},d.prototype.check=function(){var n=this;function t(e,t,i){setTimeout(function(){n.progress(e,t,i)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(e){e.once("progress",t),e.check()}):this.complete()},d.prototype.progress=function(e,t,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+i,e,t)},d.prototype.complete=function(){var e,t=this.hasAnyBroken?"fail":"done";this.isComplete=!0,this.emitEvent(t,[this]),this.emitEvent("always",[this]),this.jqDeferred&&(e=this.hasAnyBroken?"reject":"resolve",this.jqDeferred[e](this))},(i.prototype=Object.create(e.prototype)).check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},i.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},i.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},i.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},i.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},i.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},i.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},(n.prototype=Object.create(i.prototype)).check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},n.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},n.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},(d.makeJQueryPlugin=function(e){(e=e||t.jQuery)&&((s=e).fn.imagesLoaded=function(e,t){return new d(this,e,t).jqDeferred.promise(s(this))})})(),d});!function(e){"function"==typeof define&&define.amd?define([],e):"undefined"!=typeof module&&null!==module&&module.exports?module.exports=e:e()}(function(){var i=Object.assign||window.jQuery&&jQuery.extend,p=8,a=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e,t){return window.setTimeout(function(){e()},25)};function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n}"function"!=typeof window.CustomEvent&&(e.prototype=window.Event.prototype,window.CustomEvent=e);var o={textarea:!0,input:!0,select:!0,button:!0},c={move:"mousemove",cancel:"mouseup dragstart",end:"mouseup"},u={move:"touchmove",cancel:"touchend",end:"touchend"},r=/\s+/,d={bubbles:!0,cancelable:!0},t="function"==typeof Symbol?Symbol("events"):{};function m(e){return e[t]||(e[t]={})}function v(e,t,n,o){t=t.split(r);var i,a=m(e),c=t.length;function u(e){n(e,o)}for(;c--;)(a[i=t[c]]||(a[i]=[])).push([n,u]),e.addEventListener(i,u)}function f(e,t,n){t=t.split(r);var o,i,a,c=m(e),u=t.length;if(c)for(;u--;)if(i=c[o=t[u]])for(a=i.length;a--;)i[a][0]===n&&(e.removeEventListener(o,i[a][1]),i.splice(a,1))}function g(e,t,n){var o=new CustomEvent(t,d);n&&i(o,n),e.dispatchEvent(o)}function s(e){var n=e,o=!1,i=!1;function t(e){o?(n(),a(t),o=!(i=!0)):i=!1}this.kick=function(e){o=!0,i||t()},this.end=function(e){var t=n;e&&(i?(n=o?function(){t(),e()}:e,o=!0):e())}}function h(){}function l(e){e.preventDefault()}function X(e,t){var n,o;if(e.identifiedTouch)return e.identifiedTouch(t);for(n=-1,o=e.length;++n<o;)if(e[n].identifier===t)return e[n]}function Y(e,t){var n=X(e.changedTouches,t.identifier);if(n&&(n.pageX!==t.pageX||n.pageY!==t.pageY))return n}function n(e,t){T(e,t,e,w)}function y(e,t){w()}function w(){f(document,c.move,n),f(document,c.cancel,y)}function b(e){f(document,u.move,e.touchmove),f(document,u.cancel,e.touchend)}function T(e,t,n,o){var i,a,c,u,r,d,m,v,f,s=n.pageX-t.pageX,l=n.pageY-t.pageY;s*s+l*l<p*p||(a=t,c=n,u=s,r=l,d=o,m=(i=e).targetTouches,v=i.timeStamp-a.timeStamp,f={altKey:i.altKey,ctrlKey:i.ctrlKey,shiftKey:i.shiftKey,startX:a.pageX,startY:a.pageY,distX:u,distY:r,deltaX:u,deltaY:r,pageX:c.pageX,pageY:c.pageY,velocityX:u/v,velocityY:r/v,identifier:a.identifier,targetTouches:m,finger:m?m.length:1,enableMove:function(){this.moveEnabled=!0,this.enableMove=h,i.preventDefault()}},g(a.target,"movestart",f),d(a))}function E(e,t){var n=t.timer;t.touch=e,t.timeStamp=e.timeStamp,n.kick()}function S(e,t){var n=t.target,o=t.event,i=t.timer;f(document,c.move,E),f(document,c.end,S),K(n,o,i,function(){setTimeout(function(){f(n,"click",l)},0)})}function k(e,t){var n,o=t.target,i=t.event,a=t.timer;X(e.changedTouches,i.identifier)&&(n=t,f(document,u.move,n.activeTouchmove),f(document,u.end,n.activeTouchend),K(o,i,a))}function K(e,t,n,o){n.end(function(){return g(e,"moveend",t),o&&o()})}if(v(document,"mousedown",function(e){var t;1!==(t=e).which||t.ctrlKey||t.altKey||o[e.target.tagName.toLowerCase()]||(v(document,c.move,n,e),v(document,c.cancel,y,e))}),v(document,"touchstart",function(e){if(!o[e.target.tagName.toLowerCase()]){var t=e.changedTouches[0],n={target:t.target,pageX:t.pageX,pageY:t.pageY,identifier:t.identifier,touchmove:function(e,t){!function(e,t){var n=Y(e,t);if(!n)return;T(e,t,n,b)}(e,t)},touchend:function(e,t){!function(e,t){if(!X(e.changedTouches,t.identifier))return;b(t)}(e,t)}};v(document,u.move,n.touchmove,n),v(document,u.cancel,n.touchend,n)}}),v(document,"movestart",function(e){if(!e.defaultPrevented&&e.moveEnabled){var t={startX:e.startX,startY:e.startY,pageX:e.pageX,pageY:e.pageY,distX:e.distX,distY:e.distY,deltaX:e.deltaX,deltaY:e.deltaY,velocityX:e.velocityX,velocityY:e.velocityY,identifier:e.identifier,targetTouches:e.targetTouches,finger:e.finger},n={target:e.target,event:t,timer:new s(function(e){(function(e,t,n){var o=n-e.timeStamp;e.distX=t.pageX-e.startX,e.distY=t.pageY-e.startY,e.deltaX=t.pageX-e.pageX,e.deltaY=t.pageY-e.pageY,e.velocityX=.3*e.velocityX+.7*e.deltaX/o,e.velocityY=.3*e.velocityY+.7*e.deltaY/o,e.pageX=t.pageX,e.pageY=t.pageY})(t,n.touch,n.timeStamp),g(n.target,"move",t)}),touch:void 0,timeStamp:e.timeStamp};void 0===e.identifier?(v(e.target,"click",l),v(document,c.move,E,n),v(document,c.end,S,n)):(n.activeTouchmove=function(e,t){var n,o,i,a,c;n=e,i=(o=t).event,a=o.timer,(c=Y(n,i))&&(n.preventDefault(),i.targetTouches=n.targetTouches,o.touch=c,o.timeStamp=n.timeStamp,a.kick())},n.activeTouchend=function(e,t){k(e,t)},v(document,u.move,n.activeTouchmove,n),v(document,u.end,n.activeTouchend,n))}}),window.jQuery){var j="startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY".split(" ");jQuery.event.special.movestart={setup:function(){return v(this,"movestart",C),!1},teardown:function(){return f(this,"movestart",C),!1},add:A},jQuery.event.special.move={setup:function(){return v(this,"movestart",Q),!1},teardown:function(){return f(this,"movestart",Q),!1},add:A},jQuery.event.special.moveend={setup:function(){return v(this,"movestart",q),!1},teardown:function(){return f(this,"movestart",q),!1},add:A}}function C(e){e.enableMove()}function Q(e){e.enableMove()}function q(e){e.enableMove()}function A(e){var o=e.handler;e.handler=function(e){for(var t,n=j.length;n--;)e[t=j[n]]=e.originalEvent[t];o.apply(this,arguments)}}});!function(t){t.fn.eatwentytwenty=function(e){var e=t.extend({default_offset_pct:.5,orientation:"horizontal",before_label:"Before",after_label:"After",no_overlay:!1,move_slider_on_hover:!1,move_with_handle_only:!0,click_to_move:!1,autoSlide:!1,autoSlideSpeed:1e3,autoSlidePause:500},e);return this.each(function(){var n,a=e.default_offset_pct,o=t(this),i=e.orientation;o.wrap("<div class='twentytwenty-wrapper twentytwenty-"+i+"'></div>"),e.no_overlay||o.append("<div class='twentytwenty-overlay'></div>");var f=o.find("img:first"),l=o.find("img:last");o.append("<div class='twentytwenty-handle'></div>");var r=o.find(".twentytwenty-handle");r.append("<span class='twentytwenty-"+("vertical"===i?"down":"left")+"-arrow'></span>"),r.append("<span class='twentytwenty-"+("vertical"===i?"up":"right")+"-arrow'></span>"),o.addClass("twentytwenty-container"),f.addClass("twentytwenty-before"),l.addClass("twentytwenty-after");var s=o.find(".twentytwenty-overlay");t("<div>",{class:"twentytwenty-before-label","data-content":e.before_label}).appendTo(s),t("<div>",{class:"twentytwenty-after-label","data-content":e.after_label}).appendTo(s);var c=function(t){var e=f.width(),n=f.height();return{w:e+"px",h:n+"px",cw:t*e+"px",ch:t*n+"px"}},d=function(t){"vertical"===i?(f.css("clip","rect(0,"+t.w+","+t.ch+",0)"),l.css("clip","rect("+t.ch+","+t.w+","+t.h+",0)")):(f.css("clip","rect(0,"+t.cw+","+t.h+",0)"),l.css("clip","rect(0,"+t.w+","+t.h+","+t.cw+")")),o.css("height",t.h)},w=function(t){var e=c(t);r.css("vertical"===i?"top":"left","vertical"===i?e.ch:e.cw),d(e)},v=function(t,e){var n;return 0===h&&0===p&&0===y&&0===u&&(h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()),Math.max(0,Math.min(1,n="vertical"===i?(e-p)/u:(t-h)/y))};t(window).on("resize.eatwentytwenty",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),w(a)});var h=0,p=0,y=0,u=0,$=function(t){o.addClass("active"),h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()},m=function(t){o.hasClass("active")&&(a=v(t.pageX,t.pageY),w(a))},g=function(){o.removeClass("active")},b=e.move_with_handle_only?r:o;b.on("movestart",$),b.on("move",m),b.on("moveend",g),e.move_slider_on_hover&&(o.on("mouseenter",$),o.on("mousemove",m),o.on("mouseleave",g)),r.on("touchmove",function(t){t.preventDefault()}),o.find("img").on("mousedown",function(t){t.preventDefault()}),e.click_to_move&&o.on("click",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),a=v(t.pageX,t.pageY),w(a)});var _=function(){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()};o.data("eatwentytwenty",{animateSlider:function t(e,a,o){clearInterval(n);var i=a,o=o/1e4||.001;n="before"===e?setInterval(function(){w(i-=o),i<=0&&clearInterval(n)},1):setInterval(function(){w(i+=o),i>=1&&clearInterval(n)},1)},adjustSlider:w,getSliderPercentage:v,initializeOffsetAndDimensions:_}),f.on("load",function(){_()}),f[0].complete&&_(),t(window).trigger("resize.eatwentytwenty")})}}(jQuery);!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?e(require("jquery")):e(window.jQuery||window.Zepto)}(function(c){function e(){}function d(e,t){m.ev.on(x+e+I,t)}function p(e,t,n,o){var i=document.createElement("div");return i.className="mfp-"+e,n&&(i.innerHTML=n),o?t&&t.appendChild(i):(i=c(i),t&&i.appendTo(t)),i}function u(e,t){m.ev.triggerHandler(x+e,t),m.st.callbacks&&(e=e.charAt(0).toLowerCase()+e.slice(1),m.st.callbacks[e])&&m.st.callbacks[e].apply(m,Array.isArray(t)?t:[t])}function f(e){return e===A&&m.currTemplate.closeBtn||(m.currTemplate.closeBtn=c(m.st.closeMarkup.replace("%title%",m.st.tClose)),A=e),m.currTemplate.closeBtn}function r(){c.magnificPopup.instance||((m=new e).init(),c.magnificPopup.instance=m)}function a(){y&&(v.after(y.addClass(l)).detach(),y=null)}function i(){n&&c(document.body).removeClass(n)}function t(){i(),m.req&&m.req.abort()}var m,o,g,s,h,A,l,v,y,n,w="Close",F="BeforeClose",C="MarkupParse",b="Open",j="Change",x="mfp",I="."+x,T="mfp-ready",N="mfp-removing",k="mfp-prevent-close",P=!!window.jQuery,_=c(window),S=(c.magnificPopup={instance:null,proto:e.prototype={constructor:e,init:function(){var e=navigator.appVersion;m.isLowIE=m.isIE8=document.all&&!document.addEventListener,m.isAndroid=/android/gi.test(e),m.isIOS=/iphone|ipad|ipod/gi.test(e),m.supportsTransition=function(){var e=document.createElement("p").style,t=["ms","O","Moz","Webkit"];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+"Transition"in e)return!0;return!1}(),m.probablyMobile=m.isAndroid||m.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),g=c(document),m.popupsCache={}},open:function(e){if(!1===e.isObj){m.items=e.items.toArray(),m.index=0;for(var t,n=e.items,o=0;o<n.length;o++)if((t=(t=n[o]).parsed?t.el[0]:t)===e.el[0]){m.index=o;break}}else m.items=Array.isArray(e.items)?e.items:[e.items],m.index=e.index||0;if(!m.isOpen){m.types=[],h="",e.mainEl&&e.mainEl.length?m.ev=e.mainEl.eq(0):m.ev=g,e.key?(m.popupsCache[e.key]||(m.popupsCache[e.key]={}),m.currTemplate=m.popupsCache[e.key]):m.currTemplate={},m.st=c.extend(!0,{},c.magnificPopup.defaults,e),m.fixedContentPos="auto"===m.st.fixedContentPos?!m.probablyMobile:m.st.fixedContentPos,m.st.modal&&(m.st.closeOnContentClick=!1,m.st.closeOnBgClick=!1,m.st.showCloseBtn=!1,m.st.enableEscapeKey=!1),m.bgOverlay||(m.bgOverlay=p("bg").on("click"+I,function(){m.close()}),m.wrap=p("wrap").attr("tabindex",-1).on("click"+I,function(e){m._checkIfClose(e.target)&&m.close()}),m.container=p("container",m.wrap)),m.contentContainer=p("content"),m.st.preloader&&(m.preloader=p("preloader",m.container,m.st.tLoading));var i=c.magnificPopup.modules;for(o=0;o<i.length;o++){var r=(r=i[o]).charAt(0).toUpperCase()+r.slice(1);m["init"+r].call(m)}u("BeforeOpen"),m.st.showCloseBtn&&(m.st.closeBtnInside?(d(C,function(e,t,n,o){n.close_replaceWith=f(o.type)}),h+=" mfp-close-btn-in"):m.wrap.append(f())),m.st.alignTop&&(h+=" mfp-align-top"),m.fixedContentPos?m.wrap.css({overflow:m.st.overflowY,overflowX:"hidden",overflowY:m.st.overflowY}):m.wrap.css({top:_.scrollTop(),position:"absolute"}),!1!==m.st.fixedBgPos&&("auto"!==m.st.fixedBgPos||m.fixedContentPos)||m.bgOverlay.css({height:g.height(),position:"absolute"}),m.st.enableEscapeKey&&g.on("keyup"+I,function(e){27===e.keyCode&&m.close()}),_.on("resize"+I,function(){m.updateSize()}),m.st.closeOnContentClick||(h+=" mfp-auto-cursor"),h&&m.wrap.addClass(h);var a=m.wH=_.height(),s={},l=(m.fixedContentPos&&m._hasScrollBar(a)&&(l=m._getScrollbarSize())&&(s.marginRight=l),m.fixedContentPos&&(m.isIE7?c("body, html").css("overflow","hidden"):s.overflow="hidden"),m.st.mainClass);return m.isIE7&&(l+=" mfp-ie7"),l&&m._addClassToMFP(l),m.updateItemHTML(),u("BuildControls"),c("html").css(s),m.bgOverlay.add(m.wrap).prependTo(m.st.prependTo||c(document.body)),m._lastFocusedEl=document.activeElement,setTimeout(function(){m.content?(m._addClassToMFP(T),m._setFocus()):m.bgOverlay.addClass(T),g.on("focusin"+I,m._onFocusIn)},16),m.isOpen=!0,m.updateSize(a),u(b),e}m.updateItemHTML()},close:function(){m.isOpen&&(u(F),m.isOpen=!1,m.st.removalDelay&&!m.isLowIE&&m.supportsTransition?(m._addClassToMFP(N),setTimeout(function(){m._close()},m.st.removalDelay)):m._close())},_close:function(){u(w);var e=N+" "+T+" ";m.bgOverlay.detach(),m.wrap.detach(),m.container.empty(),m.st.mainClass&&(e+=m.st.mainClass+" "),m._removeClassFromMFP(e),m.fixedContentPos&&(e={marginRight:""},m.isIE7?c("body, html").css("overflow",""):e.overflow="",c("html").css(e)),g.off("keyup.mfp focusin"+I),m.ev.off(I),m.wrap.attr("class","mfp-wrap").removeAttr("style"),m.bgOverlay.attr("class","mfp-bg"),m.container.attr("class","mfp-container"),!m.st.showCloseBtn||m.st.closeBtnInside&&!0!==m.currTemplate[m.currItem.type]||m.currTemplate.closeBtn&&m.currTemplate.closeBtn.detach(),m.st.autoFocusLast&&m._lastFocusedEl&&c(m._lastFocusedEl).trigger("focus"),m.currItem=null,m.content=null,m.currTemplate=null,m.prevHeight=0,u("AfterClose")},updateSize:function(e){var t;m.isIOS?(t=document.documentElement.clientWidth/window.innerWidth,t=window.innerHeight*t,m.wrap.css("height",t),m.wH=t):m.wH=e||_.height(),m.fixedContentPos||m.wrap.css("height",m.wH),u("Resize")},updateItemHTML:function(){var e=m.items[m.index],t=(m.contentContainer.detach(),m.content&&m.content.detach(),(e=e.parsed?e:m.parseEl(m.index)).type),n=(u("BeforeChange",[m.currItem?m.currItem.type:"",t]),m.currItem=e,m.currTemplate[t]||(n=!!m.st[t]&&m.st[t].markup,u("FirstMarkupParse",n),m.currTemplate[t]=!n||c(n)),s&&s!==e.type&&m.container.removeClass("mfp-"+s+"-holder"),m["get"+t.charAt(0).toUpperCase()+t.slice(1)](e,m.currTemplate[t]));m.appendContent(n,t),e.preloaded=!0,u(j,e),s=e.type,m.container.prepend(m.contentContainer),u("AfterChange")},appendContent:function(e,t){(m.content=e)?m.st.showCloseBtn&&m.st.closeBtnInside&&!0===m.currTemplate[t]?m.content.find(".mfp-close").length||m.content.append(f()):m.content=e:m.content="",u("BeforeAppend"),m.container.addClass("mfp-"+t+"-holder"),m.contentContainer.append(m.content)},parseEl:function(e){var t,n=m.items[e];if((n=n.tagName?{el:c(n)}:(t=n.type,{data:n,src:n.src})).el){for(var o=m.types,i=0;i<o.length;i++)if(n.el.hasClass("mfp-"+o[i])){t=o[i];break}n.src=n.el.attr("data-mfp-src"),n.src||(n.src=n.el.attr("href"))}return n.type=t||m.st.type||"inline",n.index=e,n.parsed=!0,m.items[e]=n,u("ElementParse",n),m.items[e]},addGroup:function(t,n){function e(e){e.mfpEl=this,m._openClick(e,t,n)}var o="click.magnificPopup";(n=n||{}).mainEl=t,n.items?(n.isObj=!0,t.off(o).on(o,e)):(n.isObj=!1,n.delegate?t.off(o).on(o,n.delegate,e):(n.items=t).off(o).on(o,e))},_openClick:function(e,t,n){var o=(void 0!==n.midClick?n:c.magnificPopup.defaults).midClick;if(o||!(2===e.which||e.ctrlKey||e.metaKey||e.altKey||e.shiftKey)){o=(void 0!==n.disableOn?n:c.magnificPopup.defaults).disableOn;if(o)if("function"==typeof o){if(!o.call(m))return!0}else if(_.width()<o)return!0;e.type&&(e.preventDefault(),m.isOpen)&&e.stopPropagation(),n.el=c(e.mfpEl),n.delegate&&(n.items=t.find(n.delegate)),m.open(n)}},updateStatus:function(e,t){var n;m.preloader&&(o!==e&&m.container.removeClass("mfp-s-"+o),n={status:e,text:t=t||"loading"!==e?t:m.st.tLoading},u("UpdateStatus",n),e=n.status,t=n.text,m.st.allowHTMLInStatusIndicator?m.preloader.html(t):m.preloader.text(t),m.preloader.find("a").on("click",function(e){e.stopImmediatePropagation()}),m.container.addClass("mfp-s-"+e),o=e)},_checkIfClose:function(e){if(!c(e).closest("."+k).length){var t=m.st.closeOnContentClick,n=m.st.closeOnBgClick;if(t&&n)return!0;if(!m.content||c(e).closest(".mfp-close").length||m.preloader&&e===m.preloader[0])return!0;if(e===m.content[0]||c.contains(m.content[0],e)){if(t)return!0}else if(n&&c.contains(document,e))return!0;return!1}},_addClassToMFP:function(e){m.bgOverlay.addClass(e),m.wrap.addClass(e)},_removeClassFromMFP:function(e){this.bgOverlay.removeClass(e),m.wrap.removeClass(e)},_hasScrollBar:function(e){return(m.isIE7?g.height():document.body.scrollHeight)>(e||_.height())},_setFocus:function(){(m.st.focus?m.content.find(m.st.focus).eq(0):m.wrap).trigger("focus")},_onFocusIn:function(e){if(e.target!==m.wrap[0]&&!c.contains(m.wrap[0],e.target))return m._setFocus(),!1},_parseMarkup:function(i,e,t){var r;t.data&&(e=c.extend(t.data,e)),u(C,[i,e,t]),c.each(e,function(e,t){if(void 0===t||!1===t)return!0;var n,o;1<(r=e.split("_")).length?0<(n=i.find(I+"-"+r[0])).length&&("replaceWith"===(o=r[1])?n[0]!==t[0]&&n.replaceWith(t):"img"===o?n.is("img")?n.attr("src",t):n.replaceWith(c("<img>").attr("src",t).attr("class",n.attr("class"))):n.attr(r[1],t)):m.st.allowHTMLInTemplate?i.find(I+"-"+e).html(t):i.find(I+"-"+e).text(t)})},_getScrollbarSize:function(){var e;return void 0===m.scrollbarSize&&((e=document.createElement("div")).style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(e),m.scrollbarSize=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),m.scrollbarSize}},modules:[],open:function(e,t){return r(),(e=e?c.extend(!0,{},e):{}).isObj=!0,e.index=t||0,this.instance.open(e)},close:function(){return c.magnificPopup.instance&&c.magnificPopup.instance.close()},registerModule:function(e,t){t.options&&(c.magnificPopup.defaults[e]=t.options),c.extend(this.proto,t.proto),this.modules.push(e)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'<button title="%title%" type="button" class="mfp-close">&#215;</button>',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0,allowHTMLInStatusIndicator:!1,allowHTMLInTemplate:!1}},c.fn.magnificPopup=function(e){r();var t,n,o,i=c(this);return"string"==typeof e?"open"===e?(t=P?i.data("magnificPopup"):i[0].magnificPopup,n=parseInt(arguments[1],10)||0,o=t.items?t.items[n]:(o=i,(o=t.delegate?o.find(t.delegate):o).eq(n)),m._openClick({mfpEl:o},i,t)):m.isOpen&&m[e].apply(m,Array.prototype.slice.call(arguments,1)):(e=c.extend(!0,{},e),P?i.data("magnificPopup",e):i[0].magnificPopup=e,m.addGroup(i,e)),i},"inline"),E=(c.magnificPopup.registerModule(S,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){m.types.push(S),d(w+"."+S,function(){a()})},getInline:function(e,t){var n,o,i;return a(),e.src?(n=m.st.inline,(o=c(e.src)).length?((i=o[0].parentNode)&&i.tagName&&(v||(l=n.hiddenClass,v=p(l),l="mfp-"+l),y=o.after(v).detach().removeClass(l)),m.updateStatus("ready")):(m.updateStatus("error",n.tNotFound),o=c("<div>")),e.inlineElement=o):(m.updateStatus("ready"),m._parseMarkup(t,{},e),t)}}}),"ajax");c.magnificPopup.registerModule(E,{options:{settings:null,cursor:"mfp-ajax-cur",tError:"The content could not be loaded."},proto:{initAjax:function(){m.types.push(E),n=m.st.ajax.cursor,d(w+"."+E,t),d("BeforeChange."+E,t)},getAjax:function(o){n&&c(document.body).addClass(n),m.updateStatus("loading");var e=c.extend({url:o.src,success:function(e,t,n){e={data:e,xhr:n};u("ParseAjax",e),m.appendContent(c(e.data),E),o.finished=!0,i(),m._setFocus(),setTimeout(function(){m.wrap.addClass(T)},16),m.updateStatus("ready"),u("AjaxContentAdded")},error:function(){i(),o.finished=o.loadError=!0,m.updateStatus("error",m.st.ajax.tError.replace("%url%",o.src))}},m.st.ajax.settings);return m.req=c.ajax(e),""}}});var z;c.magnificPopup.registerModule("image",{options:{markup:'<div class="mfp-figure"><div class="mfp-close"></div><figure><div class="mfp-img"></div><figcaption><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></figcaption></figure></div>',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:"The image could not be loaded."},proto:{initImage:function(){var e=m.st.image,t=".image";m.types.push("image"),d(b+t,function(){"image"===m.currItem.type&&e.cursor&&c(document.body).addClass(e.cursor)}),d(w+t,function(){e.cursor&&c(document.body).removeClass(e.cursor),_.off("resize"+I)}),d("Resize"+t,m.resizeImage),m.isLowIE&&d("AfterChange",m.resizeImage)},resizeImage:function(){var e,t=m.currItem;t&&t.img&&m.st.image.verticalFit&&(e=0,m.isLowIE&&(e=parseInt(t.img.css("padding-top"),10)+parseInt(t.img.css("padding-bottom"),10)),t.img.css("max-height",m.wH-e))},_onImageHasSize:function(e){e.img&&(e.hasSize=!0,z&&clearInterval(z),e.isCheckingImgSize=!1,u("ImageHasSize",e),e.imgHidden)&&(m.content&&m.content.removeClass("mfp-loading"),e.imgHidden=!1)},findImageSize:function(t){function n(e){z&&clearInterval(z),z=setInterval(function(){0<i.naturalWidth?m._onImageHasSize(t):(200<o&&clearInterval(z),3===++o?n(10):40===o?n(50):100===o&&n(500))},e)}var o=0,i=t.img[0];n(1)},getImage:function(e,t){function n(){e&&(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("error",a.tError.replace("%url%",e.src))),e.hasSize=!0,e.loaded=!0,e.loadError=!0)}function o(){e&&(e.img[0].complete?(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("ready")),e.hasSize=!0,e.loaded=!0,u("ImageLoadComplete")):++r<200?setTimeout(o,100):n())}var i,r=0,a=m.st.image,s=t.find(".mfp-img");return s.length&&((i=document.createElement("img")).className="mfp-img",e.el&&e.el.find("img").length&&(i.alt=e.el.find("img").attr("alt")),e.img=c(i).on("load.mfploader",o).on("error.mfploader",n),i.src=e.src,s.is("img")&&(e.img=e.img.clone()),0<(i=e.img[0]).naturalWidth?e.hasSize=!0:i.width||(e.hasSize=!1)),m._parseMarkup(t,{title:function(e){if(e.data&&void 0!==e.data.title)return e.data.title;var t=m.st.image.titleSrc;if(t){if("function"==typeof t)return t.call(m,e);if(e.el)return e.el.attr(t)||""}return""}(e),img_replaceWith:e.img},e),m.resizeImage(),e.hasSize?(z&&clearInterval(z),e.loadError?(t.addClass("mfp-loading"),m.updateStatus("error",a.tError.replace("%url%",e.src))):(t.removeClass("mfp-loading"),m.updateStatus("ready"))):(m.updateStatus("loading"),e.loading=!0,e.hasSize||(e.imgHidden=!0,t.addClass("mfp-loading"),m.findImageSize(e))),t}}});function O(e){var t;m.currTemplate[L]&&(t=m.currTemplate[L].find("iframe")).length&&(e||(t[0].src="//about:blank"),m.isIE8)&&t.css("display",e?"block":"none")}function M(e){var t=m.items.length;return t-1<e?e-t:e<0?t+e:e}function D(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)}c.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(e){return e.is("img")?e:e.find("img")}},proto:{initZoom:function(){var e,t,n,o,i,r,a=m.st.zoom,s=".zoom";a.enabled&&m.supportsTransition&&(t=a.duration,n=function(e){var e=e.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),t="all "+a.duration/1e3+"s "+a.easing,n={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},o="transition";return n["-webkit-"+o]=n["-moz-"+o]=n["-o-"+o]=n[o]=t,e.css(n),e},o=function(){m.content.css("visibility","visible")},d("BuildControls"+s,function(){m._allowZoom()&&(clearTimeout(i),m.content.css("visibility","hidden"),(e=m._getItemToZoom())?((r=n(e)).css(m._getOffset()),m.wrap.append(r),i=setTimeout(function(){r.css(m._getOffset(!0)),i=setTimeout(function(){o(),setTimeout(function(){r.remove(),e=r=null,u("ZoomAnimationEnded")},16)},t)},16)):o())}),d(F+s,function(){if(m._allowZoom()){if(clearTimeout(i),m.st.removalDelay=t,!e){if(!(e=m._getItemToZoom()))return;r=n(e)}r.css(m._getOffset(!0)),m.wrap.append(r),m.content.css("visibility","hidden"),setTimeout(function(){r.css(m._getOffset())},16)}}),d(w+s,function(){m._allowZoom()&&(o(),r&&r.remove(),e=null)}))},_allowZoom:function(){return"image"===m.currItem.type},_getItemToZoom:function(){return!!m.currItem.hasSize&&m.currItem.img},_getOffset:function(e){var e=e?m.currItem.img:m.st.zoom.opener(m.currItem.el||m.currItem),t=e.offset(),n=parseInt(e.css("padding-top"),10),o=parseInt(e.css("padding-bottom"),10),e=(t.top-=c(window).scrollTop()-n,{width:e.width(),height:(P?e.innerHeight():e[0].offsetHeight)-o-n});return(B=void 0===B?void 0!==document.createElement("p").style.MozTransform:B)?e["-moz-transform"]=e.transform="translate("+t.left+"px,"+t.top+"px)":(e.left=t.left,e.top=t.top),e}}});var B,L="iframe",H=(c.magnificPopup.registerModule(L,{options:{markup:'<div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" src="//about:blank" frameborder="0" allowfullscreen></iframe></div>',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){m.types.push(L),d("BeforeChange",function(e,t,n){t!==n&&(t===L?O():n===L&&O(!0))}),d(w+"."+L,function(){O()})},getIframe:function(e,t){var n=e.src,o=m.st.iframe,i=(c.each(o.patterns,function(){if(-1<n.indexOf(this.index))return this.id&&(n="string"==typeof this.id?n.substr(n.lastIndexOf(this.id)+this.id.length,n.length):this.id.call(this,n)),n=this.src.replace("%id%",n),!1}),{});return o.srcAction&&(i[o.srcAction]=n),m._parseMarkup(t,i,e),m.updateStatus("ready"),t}}}),c.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%"></button>',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%",langDir:null,loop:!0},proto:{initGallery:function(){var r=m.st.gallery,e=".mfp-gallery";if(m.direction=!0,!r||!r.enabled)return!1;r.langDir||(r.langDir=document.dir||"ltr"),h+=" mfp-gallery",d(b+e,function(){r.navigateByImgClick&&m.wrap.on("click"+e,".mfp-img",function(){if(1<m.items.length)return m.next(),!1}),g.on("keydown"+e,function(e){37===e.keyCode?"rtl"===r.langDir?m.next():m.prev():39===e.keyCode&&("rtl"===r.langDir?m.prev():m.next())}),m.updateGalleryButtons()}),d("UpdateStatus"+e,function(){m.updateGalleryButtons()}),d("UpdateStatus"+e,function(e,t){t.text&&(t.text=D(t.text,m.currItem.index,m.items.length))}),d(C+e,function(e,t,n,o){var i=m.items.length;n.counter=1<i?D(r.tCounter,o.index,i):""}),d("BuildControls"+e,function(){var e,t,n,o,i;1<m.items.length&&r.arrows&&!m.arrowLeft&&(t="rtl"===r.langDir?(o=r.tNext,e=r.tPrev,i="next","prev"):(o=r.tPrev,e=r.tNext,i="prev","next"),n=r.arrowMarkup,o=m.arrowLeft=c(n.replace(/%title%/gi,o).replace(/%action%/gi,i).replace(/%dir%/gi,"left")).addClass(k),i=m.arrowRight=c(n.replace(/%title%/gi,e).replace(/%action%/gi,t).replace(/%dir%/gi,"right")).addClass(k),"rtl"===r.langDir?(m.arrowNext=o,m.arrowPrev=i):(m.arrowNext=i,m.arrowPrev=o),o.on("click",function(){"rtl"===r.langDir?m.next():m.prev()}),i.on("click",function(){"rtl"===r.langDir?m.prev():m.next()}),m.container.append(o.add(i)))}),d(j+e,function(){m._preloadTimeout&&clearTimeout(m._preloadTimeout),m._preloadTimeout=setTimeout(function(){m.preloadNearbyImages(),m._preloadTimeout=null},16)}),d(w+e,function(){g.off(e),m.wrap.off("click"+e),m.arrowRight=m.arrowLeft=null})},next:function(){var e=M(m.index+1);if(!m.st.gallery.loop&&0===e)return!1;m.direction=!0,m.index=e,m.updateItemHTML()},prev:function(){var e=m.index-1;if(!m.st.gallery.loop&&e<0)return!1;m.direction=!1,m.index=M(e),m.updateItemHTML()},goTo:function(e){m.direction=e>=m.index,m.index=e,m.updateItemHTML()},preloadNearbyImages:function(){for(var e=m.st.gallery.preload,t=Math.min(e[0],m.items.length),n=Math.min(e[1],m.items.length),o=1;o<=(m.direction?n:t);o++)m._preloadItem(m.index+o);for(o=1;o<=(m.direction?t:n);o++)m._preloadItem(m.index-o)},_preloadItem:function(e){var t;e=M(e),m.items[e].preloaded||((t=m.items[e]).parsed||(t=m.parseEl(e)),u("LazyLoad",t),"image"===t.type&&(t.img=c('<img class="mfp-img" />').on("load.mfploader",function(){t.hasSize=!0}).on("error.mfploader",function(){t.hasSize=!0,t.loadError=!0,u("LazyLoadError",t)}).attr("src",t.src)),t.preloaded=!0)},updateGalleryButtons:function(){m.st.gallery.loop||"object"!=typeof m.arrowPrev||null===m.arrowPrev||(0===m.index?m.arrowPrev.hide():m.arrowPrev.show(),m.index===m.items.length-1?m.arrowNext.hide():m.arrowNext.show())}}}),"retina");c.magnificPopup.registerModule(H,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){var n,o;1<window.devicePixelRatio&&(n=m.st.retina,o=n.ratio,1<(o=isNaN(o)?o():o))&&(d("ImageHasSize."+H,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/o,width:"100%"})}),d("ElementParse."+H,function(e,t){t.src=n.replaceSrc(t,o)}))}}}),r()});!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(m){var i=/\+/g;function x(e){return v.raw?e:encodeURIComponent(e)}function g(e,n){var o=v.raw?e:function(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(i," ")),v.json?JSON.parse(e):e}catch(e){}}(e);return m.isFunction(n)?n(o):o}var v=m.cookie=function(e,n,o){if(1<arguments.length&&!m.isFunction(n)){if("number"==typeof(o=m.extend({},v.defaults,o)).expires){var i=o.expires,r=o.expires=new Date;r.setMilliseconds(r.getMilliseconds()+864e5*i)}return document.cookie=[x(e),"=",(t=n,x(v.json?JSON.stringify(t):String(t))),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("")}for(var t,c,u=e?void 0:{},s=document.cookie?document.cookie.split("; "):[],a=0,d=s.length;a<d;a++){var p=s[a].split("="),f=(c=p.shift(),v.raw?c:decodeURIComponent(c)),l=p.join("=");if(e===f){u=g(l,n);break}e||void 0===(l=g(l))||(u[f]=l)}return u};v.defaults={},m.removeCookie=function(e,n){return m.cookie(e,"",m.extend({},n,{expires:-1})),!m.cookie(e)}});!function(e){var t={};function n(o){if(t[o])return t[o].exports;var a=t[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(o,a,function(t){return e[t]}.bind(null,a));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=17)}({17:function(e,t){var n=function(e,t){var n=t(".eael-img-comp-container",e),o={default_offset_pct:n.data("offset")||.7,orientation:n.data("orientation")||"horizontal",before_label:n.data("before_label")||"Before",after_label:n.data("after_label")||"After",no_overlay:"yes"!=n.data("overlay"),move_slider_on_hover:"yes"==n.data("onhover"),move_with_handle_only:!0,click_to_move:"yes"==n.data("onclick")},a=t(".eael-advance-tabs"),r=a.find(".eael-tabs-nav li"),i=a.find(".eael-tabs-content > div");r.on("click",(function(){var e=i.eq(t(this).index());t(e).find(".eael-img-comp-container").length&&n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var e=n.closest(".elementor-widget-container");e.length<1&&(e=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o)}))})),n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var a=n.closest(".elementor-widget-container");a.length<1&&(a=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o);var r=e.find(".eael-img-comp-toggle-btns");if(r.length){var i=r.find(".eael-img-comp-toggle-btn");i.on("click",(function(){i.removeClass("active"),t(this).addClass("active");var e=t(this).data("state"),o=n.data("eatwentytwenty"),a=n.find(".twentytwenty-handle").offset(),l=n.offset(),d=a.left-l.left,f=a.top-l.top,c=d+l.left,s=f+l.top;o.animateSlider(e,o.getSliderPercentage(c,s),r.data("step")),1===t(this).index()?r.addClass("after-active"):r.removeClass("after-active")}))}}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-image-comparison.default",n)}))}});!function(e){var a={};function o(i){if(a[i])return a[i].exports;var t=a[i]={i:i,l:!1,exports:{}};return e[i].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.m=e,o.c=a,o.d=function(e,a,i){o.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:i})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,a){if(1&a&&(e=o(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(o.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var t in e)o.d(i,t,function(a){return e[a]}.bind(null,t));return i},o.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(a,"a",a),a},o.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},o.p="",o(o.s=21)}({21:function(e,a){var o=function(e,a){var o=e.find(".eael-lightbox-wrapper").eq(0),i=void 0!==o.data("main-class")?o.data("main-class"):"",t=void 0!==o.data("popup-layout")?o.data("popup-layout"):"",l="yes"===o.data("close_button"),n=void 0!==o.data("effect")?o.data("effect"):"",r=void 0!==o.data("type")?o.data("type"):"",d=void 0!==o.data("iframe-class")?o.data("iframe-class"):"",s=void 0!==o.data("src")?o.data("src"):"",c=void 0!==o.data("trigger-element")?o.data("trigger-element"):"",p=""!=o.data("delay")?o.data("delay"):0,f=void 0!==o.data("trigger")?o.data("trigger"):"",m=void 0!==o.data("lightbox-id")?o.data("lightbox-id"):"",u=void 0!==o.data("display-after")?o.data("display-after"):"",v="yes"===o.data("esc_exit"),g="yes"===o.data("click_exit");if(i+=" "+t+" "+n,"eael-lightbox-popup-fullscreen"==t){var b=a(window).height()-20;a(".eael-lightbox-container.content-type-image-now").css({"max-height":b+"px","margin-top":"10px"})}if("eael_lightbox_trigger_exit_intent"==f){0===u&&a.removeCookie(m,{path:"/"}),window.addEventListener("mouseout",(function(e){e.clientY<0&&!a.cookie(m)&&(a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,removalDelay:500,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m))}),!1)}else"eael_lightbox_trigger_pageload"==f?(0===u&&a.removeCookie(m,{path:"/"}),a.cookie(m)||setTimeout((function(){a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m)}),p)):(void 0!==c&&""!==c||(c=".eael-modal-popup-link"),e.on("keydown",c,(function(e){13!==e.which&&32!==e.which||a(this).trigger("click")})),a(c).magnificPopup({image:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-figure"><div class="mfp-close"></div><div class="mfp-img"></div><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></div></div></div>'},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},items:{src:s,type:r},removalDelay:"animated "===n?0:500,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open"),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}},type:"inline"}));a.extend(!0,a.magnificPopup.defaults,{tClose:"Close"})};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelLightboxLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-lightbox.default",o)}))}});!function(e){var t={};function a(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(o,n,function(t){return e[t]}.bind(null,n));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=0)}([function(e,t){eael.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",(function(e,t){var a=window.location.hash.substr(1);a="safari"===a?"eael-safari":a;var o=!1,n=e.find(".eael-adv-accordion"),i=e.find(".eael-accordion-header"),s=n.data("accordion-type"),r=n.data("toogle-speed"),c=n.data("custom-id-offset"),d=n.data("scroll-on-click"),l=n.data("scroll-speed");(a||"yes"===d)&&i.each((function(){"yes"===d&&t(this).attr("data-scroll",t(this).offset().top),a&&t(this).attr("id")==a&&(o=!0,t(this).addClass("show-this active"),t(this).next().slideDown(r))})),!1===o&&i.each((function(){t(this).hasClass("active-default")&&(t(this).addClass("show-this active"),t(this).next().slideDown(r))})),i.unbind("click"),i.click((function(e){e.preventDefault();var a=t(this);if(setTimeout((function(e){t(".eael-accordion-header").removeClass("triggered")}),70),!a.hasClass("triggered")){if("accordion"===s?a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.parent().parent().find(".eael-accordion-header").removeClass("show-this active"),a.parent().parent().find(".eael-accordion-content").slideUp(r),a.toggleClass("show-this active"),a.next().slideToggle(r)):a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.addClass("show-this active"),a.next().slideDown(r)),"yes"===d&&a.hasClass("active")){var o=c?parseFloat(c):0;t("html, body").animate({scrollTop:t(this).data("scroll")-o},l)}setTimeout((function(){a.addClass("triggered"),eael.hooks.doAction("widgets.reinit",a.parent()),window.eaelPreventResizeOnClick=!0,eael.hooks.doAction("ea-advanced-accordion-triggered",a.next())}),50)}})),e.on("keydown",".eael-accordion-header",(function(e){13!==e.which&&32!==e.which||t(this).trigger("click")}))}))}))}]);!function(e){var t={};function i(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)i.d(n,r,function(t){return e[t]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([,function(e,t){var i=function(e,t){var i=e[0];if(i){i.querySelectorAll("[data-duration]").forEach((function(e){var t=e.getAttribute("data-duration");e.style.setProperty("--accordion-duration",t+"s")}));var n=i.querySelectorAll(".eael-accordion_media-list"),r=i.querySelectorAll(".eael-accordion_media-image"),o=0;n.forEach((function(e,t){e.addEventListener("click",(function(){!function(e){if(e!==o){var t=n[o];t.classList.remove("active");var i=t.querySelector(".eael-accordion_media-description");i.style.height=i.scrollHeight+"px",i.offsetHeight,i.style.height="0";var a=n[e];a.classList.add("active");var c=a.querySelector(".eael-accordion_media-description");c.style.visibility="hidden",c.style.height="auto";var l=c.scrollHeight+"px";c.style.height="0",c.style.visibility="visible",requestAnimationFrame((function(){c.style.height=l})),r.forEach((function(e){return e.classList.remove("active")})),r[e].classList.add("active"),o=e}}(t)}))})),window.location.href.includes("elementor")&&a(),"loading"===document.readyState?window.addEventListener("load",(function(){a()})):setTimeout((function(){a()}),0)}function a(){var e=n[0];if(e&&e.classList.contains("active")){var t=e.querySelector(".eael-accordion_media-description");t.style.visibility="hidden",t.style.height="auto",requestAnimationFrame((function(){requestAnimationFrame((function(){var e=t.scrollHeight+"px";t.style.height="0",t.style.visibility="visible",requestAnimationFrame((function(){t.style.height=e}))}))}))}}};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("advancedAccordion"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",i)}))}]);!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return-1==n.indexOf(t)&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{};return(i[e]=i[e]||{})[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return-1!=n&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o<i.length;o++){var s=i[o];n&&n[s]&&(this.off(e,s),delete n[s]),s.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(t,i){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(e){return i(t,e)}):"object"==typeof module&&module.exports?module.exports=i(t,require("ev-emitter")):t.imagesLoaded=i(t,t.EvEmitter)}("undefined"!=typeof window?window:this,function(t,e){var s=t.jQuery,r=t.console;function h(e,t){for(var i in t)e[i]=t[i];return e}var a=Array.prototype.slice;function d(e,t,i){if(!(this instanceof d))return new d(e,t,i);var n,o=e;"string"==typeof e&&(o=document.querySelectorAll(e)),o?(this.elements=(n=o,Array.isArray(n)?n:"object"==typeof n&&"number"==typeof n.length?a.call(n):[n]),this.options=h({},this.options),"function"==typeof t?i=t:h(this.options,t),i&&this.on("always",i),this.getImages(),s&&(this.jqDeferred=new s.Deferred),setTimeout(this.check.bind(this))):r.error("Bad element for imagesLoaded "+(o||e))}(d.prototype=Object.create(e.prototype)).options={},d.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},d.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&m[t]){for(var i=e.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background)for(var s=e.querySelectorAll(this.options.background),n=0;n<s.length;n++){var r=s[n];this.addElementBackgroundImages(r)}}};var m={1:!0,9:!0,11:!0};function i(e){this.img=e}function n(e,t){this.url=e,this.element=t,this.img=new Image}return d.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(t.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,e),n=i.exec(t.backgroundImage)}},d.prototype.addImage=function(e){var t=new i(e);this.images.push(t)},d.prototype.addBackground=function(e,t){var i=new n(e,t);this.images.push(i)},d.prototype.check=function(){var n=this;function t(e,t,i){setTimeout(function(){n.progress(e,t,i)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(e){e.once("progress",t),e.check()}):this.complete()},d.prototype.progress=function(e,t,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+i,e,t)},d.prototype.complete=function(){var e,t=this.hasAnyBroken?"fail":"done";this.isComplete=!0,this.emitEvent(t,[this]),this.emitEvent("always",[this]),this.jqDeferred&&(e=this.hasAnyBroken?"reject":"resolve",this.jqDeferred[e](this))},(i.prototype=Object.create(e.prototype)).check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},i.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},i.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},i.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},i.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},i.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},i.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},(n.prototype=Object.create(i.prototype)).check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},n.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},n.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},(d.makeJQueryPlugin=function(e){(e=e||t.jQuery)&&((s=e).fn.imagesLoaded=function(e,t){return new d(this,e,t).jqDeferred.promise(s(this))})})(),d});!function(e){"function"==typeof define&&define.amd?define([],e):"undefined"!=typeof module&&null!==module&&module.exports?module.exports=e:e()}(function(){var i=Object.assign||window.jQuery&&jQuery.extend,p=8,a=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e,t){return window.setTimeout(function(){e()},25)};function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n}"function"!=typeof window.CustomEvent&&(e.prototype=window.Event.prototype,window.CustomEvent=e);var o={textarea:!0,input:!0,select:!0,button:!0},c={move:"mousemove",cancel:"mouseup dragstart",end:"mouseup"},u={move:"touchmove",cancel:"touchend",end:"touchend"},r=/\s+/,d={bubbles:!0,cancelable:!0},t="function"==typeof Symbol?Symbol("events"):{};function m(e){return e[t]||(e[t]={})}function v(e,t,n,o){t=t.split(r);var i,a=m(e),c=t.length;function u(e){n(e,o)}for(;c--;)(a[i=t[c]]||(a[i]=[])).push([n,u]),e.addEventListener(i,u)}function f(e,t,n){t=t.split(r);var o,i,a,c=m(e),u=t.length;if(c)for(;u--;)if(i=c[o=t[u]])for(a=i.length;a--;)i[a][0]===n&&(e.removeEventListener(o,i[a][1]),i.splice(a,1))}function g(e,t,n){var o=new CustomEvent(t,d);n&&i(o,n),e.dispatchEvent(o)}function s(e){var n=e,o=!1,i=!1;function t(e){o?(n(),a(t),o=!(i=!0)):i=!1}this.kick=function(e){o=!0,i||t()},this.end=function(e){var t=n;e&&(i?(n=o?function(){t(),e()}:e,o=!0):e())}}function h(){}function l(e){e.preventDefault()}function X(e,t){var n,o;if(e.identifiedTouch)return e.identifiedTouch(t);for(n=-1,o=e.length;++n<o;)if(e[n].identifier===t)return e[n]}function Y(e,t){var n=X(e.changedTouches,t.identifier);if(n&&(n.pageX!==t.pageX||n.pageY!==t.pageY))return n}function n(e,t){T(e,t,e,w)}function y(e,t){w()}function w(){f(document,c.move,n),f(document,c.cancel,y)}function b(e){f(document,u.move,e.touchmove),f(document,u.cancel,e.touchend)}function T(e,t,n,o){var i,a,c,u,r,d,m,v,f,s=n.pageX-t.pageX,l=n.pageY-t.pageY;s*s+l*l<p*p||(a=t,c=n,u=s,r=l,d=o,m=(i=e).targetTouches,v=i.timeStamp-a.timeStamp,f={altKey:i.altKey,ctrlKey:i.ctrlKey,shiftKey:i.shiftKey,startX:a.pageX,startY:a.pageY,distX:u,distY:r,deltaX:u,deltaY:r,pageX:c.pageX,pageY:c.pageY,velocityX:u/v,velocityY:r/v,identifier:a.identifier,targetTouches:m,finger:m?m.length:1,enableMove:function(){this.moveEnabled=!0,this.enableMove=h,i.preventDefault()}},g(a.target,"movestart",f),d(a))}function E(e,t){var n=t.timer;t.touch=e,t.timeStamp=e.timeStamp,n.kick()}function S(e,t){var n=t.target,o=t.event,i=t.timer;f(document,c.move,E),f(document,c.end,S),K(n,o,i,function(){setTimeout(function(){f(n,"click",l)},0)})}function k(e,t){var n,o=t.target,i=t.event,a=t.timer;X(e.changedTouches,i.identifier)&&(n=t,f(document,u.move,n.activeTouchmove),f(document,u.end,n.activeTouchend),K(o,i,a))}function K(e,t,n,o){n.end(function(){return g(e,"moveend",t),o&&o()})}if(v(document,"mousedown",function(e){var t;1!==(t=e).which||t.ctrlKey||t.altKey||o[e.target.tagName.toLowerCase()]||(v(document,c.move,n,e),v(document,c.cancel,y,e))}),v(document,"touchstart",function(e){if(!o[e.target.tagName.toLowerCase()]){var t=e.changedTouches[0],n={target:t.target,pageX:t.pageX,pageY:t.pageY,identifier:t.identifier,touchmove:function(e,t){!function(e,t){var n=Y(e,t);if(!n)return;T(e,t,n,b)}(e,t)},touchend:function(e,t){!function(e,t){if(!X(e.changedTouches,t.identifier))return;b(t)}(e,t)}};v(document,u.move,n.touchmove,n),v(document,u.cancel,n.touchend,n)}}),v(document,"movestart",function(e){if(!e.defaultPrevented&&e.moveEnabled){var t={startX:e.startX,startY:e.startY,pageX:e.pageX,pageY:e.pageY,distX:e.distX,distY:e.distY,deltaX:e.deltaX,deltaY:e.deltaY,velocityX:e.velocityX,velocityY:e.velocityY,identifier:e.identifier,targetTouches:e.targetTouches,finger:e.finger},n={target:e.target,event:t,timer:new s(function(e){(function(e,t,n){var o=n-e.timeStamp;e.distX=t.pageX-e.startX,e.distY=t.pageY-e.startY,e.deltaX=t.pageX-e.pageX,e.deltaY=t.pageY-e.pageY,e.velocityX=.3*e.velocityX+.7*e.deltaX/o,e.velocityY=.3*e.velocityY+.7*e.deltaY/o,e.pageX=t.pageX,e.pageY=t.pageY})(t,n.touch,n.timeStamp),g(n.target,"move",t)}),touch:void 0,timeStamp:e.timeStamp};void 0===e.identifier?(v(e.target,"click",l),v(document,c.move,E,n),v(document,c.end,S,n)):(n.activeTouchmove=function(e,t){var n,o,i,a,c;n=e,i=(o=t).event,a=o.timer,(c=Y(n,i))&&(n.preventDefault(),i.targetTouches=n.targetTouches,o.touch=c,o.timeStamp=n.timeStamp,a.kick())},n.activeTouchend=function(e,t){k(e,t)},v(document,u.move,n.activeTouchmove,n),v(document,u.end,n.activeTouchend,n))}}),window.jQuery){var j="startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY".split(" ");jQuery.event.special.movestart={setup:function(){return v(this,"movestart",C),!1},teardown:function(){return f(this,"movestart",C),!1},add:A},jQuery.event.special.move={setup:function(){return v(this,"movestart",Q),!1},teardown:function(){return f(this,"movestart",Q),!1},add:A},jQuery.event.special.moveend={setup:function(){return v(this,"movestart",q),!1},teardown:function(){return f(this,"movestart",q),!1},add:A}}function C(e){e.enableMove()}function Q(e){e.enableMove()}function q(e){e.enableMove()}function A(e){var o=e.handler;e.handler=function(e){for(var t,n=j.length;n--;)e[t=j[n]]=e.originalEvent[t];o.apply(this,arguments)}}});!function(t){t.fn.eatwentytwenty=function(e){var e=t.extend({default_offset_pct:.5,orientation:"horizontal",before_label:"Before",after_label:"After",no_overlay:!1,move_slider_on_hover:!1,move_with_handle_only:!0,click_to_move:!1,autoSlide:!1,autoSlideSpeed:1e3,autoSlidePause:500},e);return this.each(function(){var n,a=e.default_offset_pct,o=t(this),i=e.orientation;o.wrap("<div class='twentytwenty-wrapper twentytwenty-"+i+"'></div>"),e.no_overlay||o.append("<div class='twentytwenty-overlay'></div>");var f=o.find("img:first"),l=o.find("img:last");o.append("<div class='twentytwenty-handle'></div>");var r=o.find(".twentytwenty-handle");r.append("<span class='twentytwenty-"+("vertical"===i?"down":"left")+"-arrow'></span>"),r.append("<span class='twentytwenty-"+("vertical"===i?"up":"right")+"-arrow'></span>"),o.addClass("twentytwenty-container"),f.addClass("twentytwenty-before"),l.addClass("twentytwenty-after");var s=o.find(".twentytwenty-overlay");t("<div>",{class:"twentytwenty-before-label","data-content":e.before_label}).appendTo(s),t("<div>",{class:"twentytwenty-after-label","data-content":e.after_label}).appendTo(s);var c=function(t){var e=f.width(),n=f.height();return{w:e+"px",h:n+"px",cw:t*e+"px",ch:t*n+"px"}},d=function(t){"vertical"===i?(f.css("clip","rect(0,"+t.w+","+t.ch+",0)"),l.css("clip","rect("+t.ch+","+t.w+","+t.h+",0)")):(f.css("clip","rect(0,"+t.cw+","+t.h+",0)"),l.css("clip","rect(0,"+t.w+","+t.h+","+t.cw+")")),o.css("height",t.h)},w=function(t){var e=c(t);r.css("vertical"===i?"top":"left","vertical"===i?e.ch:e.cw),d(e)},v=function(t,e){var n;return 0===h&&0===p&&0===y&&0===u&&(h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()),Math.max(0,Math.min(1,n="vertical"===i?(e-p)/u:(t-h)/y))};t(window).on("resize.eatwentytwenty",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),w(a)});var h=0,p=0,y=0,u=0,$=function(t){o.addClass("active"),h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()},m=function(t){o.hasClass("active")&&(a=v(t.pageX,t.pageY),w(a))},g=function(){o.removeClass("active")},b=e.move_with_handle_only?r:o;b.on("movestart",$),b.on("move",m),b.on("moveend",g),e.move_slider_on_hover&&(o.on("mouseenter",$),o.on("mousemove",m),o.on("mouseleave",g)),r.on("touchmove",function(t){t.preventDefault()}),o.find("img").on("mousedown",function(t){t.preventDefault()}),e.click_to_move&&o.on("click",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),a=v(t.pageX,t.pageY),w(a)});var _=function(){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()};o.data("eatwentytwenty",{animateSlider:function t(e,a,o){clearInterval(n);var i=a,o=o/1e4||.001;n="before"===e?setInterval(function(){w(i-=o),i<=0&&clearInterval(n)},1):setInterval(function(){w(i+=o),i>=1&&clearInterval(n)},1)},adjustSlider:w,getSliderPercentage:v,initializeOffsetAndDimensions:_}),f.on("load",function(){_()}),f[0].complete&&_(),t(window).trigger("resize.eatwentytwenty")})}}(jQuery);!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?e(require("jquery")):e(window.jQuery||window.Zepto)}(function(c){function e(){}function d(e,t){m.ev.on(x+e+I,t)}function p(e,t,n,o){var i=document.createElement("div");return i.className="mfp-"+e,n&&(i.innerHTML=n),o?t&&t.appendChild(i):(i=c(i),t&&i.appendTo(t)),i}function u(e,t){m.ev.triggerHandler(x+e,t),m.st.callbacks&&(e=e.charAt(0).toLowerCase()+e.slice(1),m.st.callbacks[e])&&m.st.callbacks[e].apply(m,Array.isArray(t)?t:[t])}function f(e){return e===A&&m.currTemplate.closeBtn||(m.currTemplate.closeBtn=c(m.st.closeMarkup.replace("%title%",m.st.tClose)),A=e),m.currTemplate.closeBtn}function r(){c.magnificPopup.instance||((m=new e).init(),c.magnificPopup.instance=m)}function a(){y&&(v.after(y.addClass(l)).detach(),y=null)}function i(){n&&c(document.body).removeClass(n)}function t(){i(),m.req&&m.req.abort()}var m,o,g,s,h,A,l,v,y,n,w="Close",F="BeforeClose",C="MarkupParse",b="Open",j="Change",x="mfp",I="."+x,T="mfp-ready",N="mfp-removing",k="mfp-prevent-close",P=!!window.jQuery,_=c(window),S=(c.magnificPopup={instance:null,proto:e.prototype={constructor:e,init:function(){var e=navigator.appVersion;m.isLowIE=m.isIE8=document.all&&!document.addEventListener,m.isAndroid=/android/gi.test(e),m.isIOS=/iphone|ipad|ipod/gi.test(e),m.supportsTransition=function(){var e=document.createElement("p").style,t=["ms","O","Moz","Webkit"];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+"Transition"in e)return!0;return!1}(),m.probablyMobile=m.isAndroid||m.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),g=c(document),m.popupsCache={}},open:function(e){if(!1===e.isObj){m.items=e.items.toArray(),m.index=0;for(var t,n=e.items,o=0;o<n.length;o++)if((t=(t=n[o]).parsed?t.el[0]:t)===e.el[0]){m.index=o;break}}else m.items=Array.isArray(e.items)?e.items:[e.items],m.index=e.index||0;if(!m.isOpen){m.types=[],h="",e.mainEl&&e.mainEl.length?m.ev=e.mainEl.eq(0):m.ev=g,e.key?(m.popupsCache[e.key]||(m.popupsCache[e.key]={}),m.currTemplate=m.popupsCache[e.key]):m.currTemplate={},m.st=c.extend(!0,{},c.magnificPopup.defaults,e),m.fixedContentPos="auto"===m.st.fixedContentPos?!m.probablyMobile:m.st.fixedContentPos,m.st.modal&&(m.st.closeOnContentClick=!1,m.st.closeOnBgClick=!1,m.st.showCloseBtn=!1,m.st.enableEscapeKey=!1),m.bgOverlay||(m.bgOverlay=p("bg").on("click"+I,function(){m.close()}),m.wrap=p("wrap").attr("tabindex",-1).on("click"+I,function(e){m._checkIfClose(e.target)&&m.close()}),m.container=p("container",m.wrap)),m.contentContainer=p("content"),m.st.preloader&&(m.preloader=p("preloader",m.container,m.st.tLoading));var i=c.magnificPopup.modules;for(o=0;o<i.length;o++){var r=(r=i[o]).charAt(0).toUpperCase()+r.slice(1);m["init"+r].call(m)}u("BeforeOpen"),m.st.showCloseBtn&&(m.st.closeBtnInside?(d(C,function(e,t,n,o){n.close_replaceWith=f(o.type)}),h+=" mfp-close-btn-in"):m.wrap.append(f())),m.st.alignTop&&(h+=" mfp-align-top"),m.fixedContentPos?m.wrap.css({overflow:m.st.overflowY,overflowX:"hidden",overflowY:m.st.overflowY}):m.wrap.css({top:_.scrollTop(),position:"absolute"}),!1!==m.st.fixedBgPos&&("auto"!==m.st.fixedBgPos||m.fixedContentPos)||m.bgOverlay.css({height:g.height(),position:"absolute"}),m.st.enableEscapeKey&&g.on("keyup"+I,function(e){27===e.keyCode&&m.close()}),_.on("resize"+I,function(){m.updateSize()}),m.st.closeOnContentClick||(h+=" mfp-auto-cursor"),h&&m.wrap.addClass(h);var a=m.wH=_.height(),s={},l=(m.fixedContentPos&&m._hasScrollBar(a)&&(l=m._getScrollbarSize())&&(s.marginRight=l),m.fixedContentPos&&(m.isIE7?c("body, html").css("overflow","hidden"):s.overflow="hidden"),m.st.mainClass);return m.isIE7&&(l+=" mfp-ie7"),l&&m._addClassToMFP(l),m.updateItemHTML(),u("BuildControls"),c("html").css(s),m.bgOverlay.add(m.wrap).prependTo(m.st.prependTo||c(document.body)),m._lastFocusedEl=document.activeElement,setTimeout(function(){m.content?(m._addClassToMFP(T),m._setFocus()):m.bgOverlay.addClass(T),g.on("focusin"+I,m._onFocusIn)},16),m.isOpen=!0,m.updateSize(a),u(b),e}m.updateItemHTML()},close:function(){m.isOpen&&(u(F),m.isOpen=!1,m.st.removalDelay&&!m.isLowIE&&m.supportsTransition?(m._addClassToMFP(N),setTimeout(function(){m._close()},m.st.removalDelay)):m._close())},_close:function(){u(w);var e=N+" "+T+" ";m.bgOverlay.detach(),m.wrap.detach(),m.container.empty(),m.st.mainClass&&(e+=m.st.mainClass+" "),m._removeClassFromMFP(e),m.fixedContentPos&&(e={marginRight:""},m.isIE7?c("body, html").css("overflow",""):e.overflow="",c("html").css(e)),g.off("keyup.mfp focusin"+I),m.ev.off(I),m.wrap.attr("class","mfp-wrap").removeAttr("style"),m.bgOverlay.attr("class","mfp-bg"),m.container.attr("class","mfp-container"),!m.st.showCloseBtn||m.st.closeBtnInside&&!0!==m.currTemplate[m.currItem.type]||m.currTemplate.closeBtn&&m.currTemplate.closeBtn.detach(),m.st.autoFocusLast&&m._lastFocusedEl&&c(m._lastFocusedEl).trigger("focus"),m.currItem=null,m.content=null,m.currTemplate=null,m.prevHeight=0,u("AfterClose")},updateSize:function(e){var t;m.isIOS?(t=document.documentElement.clientWidth/window.innerWidth,t=window.innerHeight*t,m.wrap.css("height",t),m.wH=t):m.wH=e||_.height(),m.fixedContentPos||m.wrap.css("height",m.wH),u("Resize")},updateItemHTML:function(){var e=m.items[m.index],t=(m.contentContainer.detach(),m.content&&m.content.detach(),(e=e.parsed?e:m.parseEl(m.index)).type),n=(u("BeforeChange",[m.currItem?m.currItem.type:"",t]),m.currItem=e,m.currTemplate[t]||(n=!!m.st[t]&&m.st[t].markup,u("FirstMarkupParse",n),m.currTemplate[t]=!n||c(n)),s&&s!==e.type&&m.container.removeClass("mfp-"+s+"-holder"),m["get"+t.charAt(0).toUpperCase()+t.slice(1)](e,m.currTemplate[t]));m.appendContent(n,t),e.preloaded=!0,u(j,e),s=e.type,m.container.prepend(m.contentContainer),u("AfterChange")},appendContent:function(e,t){(m.content=e)?m.st.showCloseBtn&&m.st.closeBtnInside&&!0===m.currTemplate[t]?m.content.find(".mfp-close").length||m.content.append(f()):m.content=e:m.content="",u("BeforeAppend"),m.container.addClass("mfp-"+t+"-holder"),m.contentContainer.append(m.content)},parseEl:function(e){var t,n=m.items[e];if((n=n.tagName?{el:c(n)}:(t=n.type,{data:n,src:n.src})).el){for(var o=m.types,i=0;i<o.length;i++)if(n.el.hasClass("mfp-"+o[i])){t=o[i];break}n.src=n.el.attr("data-mfp-src"),n.src||(n.src=n.el.attr("href"))}return n.type=t||m.st.type||"inline",n.index=e,n.parsed=!0,m.items[e]=n,u("ElementParse",n),m.items[e]},addGroup:function(t,n){function e(e){e.mfpEl=this,m._openClick(e,t,n)}var o="click.magnificPopup";(n=n||{}).mainEl=t,n.items?(n.isObj=!0,t.off(o).on(o,e)):(n.isObj=!1,n.delegate?t.off(o).on(o,n.delegate,e):(n.items=t).off(o).on(o,e))},_openClick:function(e,t,n){var o=(void 0!==n.midClick?n:c.magnificPopup.defaults).midClick;if(o||!(2===e.which||e.ctrlKey||e.metaKey||e.altKey||e.shiftKey)){o=(void 0!==n.disableOn?n:c.magnificPopup.defaults).disableOn;if(o)if("function"==typeof o){if(!o.call(m))return!0}else if(_.width()<o)return!0;e.type&&(e.preventDefault(),m.isOpen)&&e.stopPropagation(),n.el=c(e.mfpEl),n.delegate&&(n.items=t.find(n.delegate)),m.open(n)}},updateStatus:function(e,t){var n;m.preloader&&(o!==e&&m.container.removeClass("mfp-s-"+o),n={status:e,text:t=t||"loading"!==e?t:m.st.tLoading},u("UpdateStatus",n),e=n.status,t=n.text,m.st.allowHTMLInStatusIndicator?m.preloader.html(t):m.preloader.text(t),m.preloader.find("a").on("click",function(e){e.stopImmediatePropagation()}),m.container.addClass("mfp-s-"+e),o=e)},_checkIfClose:function(e){if(!c(e).closest("."+k).length){var t=m.st.closeOnContentClick,n=m.st.closeOnBgClick;if(t&&n)return!0;if(!m.content||c(e).closest(".mfp-close").length||m.preloader&&e===m.preloader[0])return!0;if(e===m.content[0]||c.contains(m.content[0],e)){if(t)return!0}else if(n&&c.contains(document,e))return!0;return!1}},_addClassToMFP:function(e){m.bgOverlay.addClass(e),m.wrap.addClass(e)},_removeClassFromMFP:function(e){this.bgOverlay.removeClass(e),m.wrap.removeClass(e)},_hasScrollBar:function(e){return(m.isIE7?g.height():document.body.scrollHeight)>(e||_.height())},_setFocus:function(){(m.st.focus?m.content.find(m.st.focus).eq(0):m.wrap).trigger("focus")},_onFocusIn:function(e){if(e.target!==m.wrap[0]&&!c.contains(m.wrap[0],e.target))return m._setFocus(),!1},_parseMarkup:function(i,e,t){var r;t.data&&(e=c.extend(t.data,e)),u(C,[i,e,t]),c.each(e,function(e,t){if(void 0===t||!1===t)return!0;var n,o;1<(r=e.split("_")).length?0<(n=i.find(I+"-"+r[0])).length&&("replaceWith"===(o=r[1])?n[0]!==t[0]&&n.replaceWith(t):"img"===o?n.is("img")?n.attr("src",t):n.replaceWith(c("<img>").attr("src",t).attr("class",n.attr("class"))):n.attr(r[1],t)):m.st.allowHTMLInTemplate?i.find(I+"-"+e).html(t):i.find(I+"-"+e).text(t)})},_getScrollbarSize:function(){var e;return void 0===m.scrollbarSize&&((e=document.createElement("div")).style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(e),m.scrollbarSize=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),m.scrollbarSize}},modules:[],open:function(e,t){return r(),(e=e?c.extend(!0,{},e):{}).isObj=!0,e.index=t||0,this.instance.open(e)},close:function(){return c.magnificPopup.instance&&c.magnificPopup.instance.close()},registerModule:function(e,t){t.options&&(c.magnificPopup.defaults[e]=t.options),c.extend(this.proto,t.proto),this.modules.push(e)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'<button title="%title%" type="button" class="mfp-close">&#215;</button>',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0,allowHTMLInStatusIndicator:!1,allowHTMLInTemplate:!1}},c.fn.magnificPopup=function(e){r();var t,n,o,i=c(this);return"string"==typeof e?"open"===e?(t=P?i.data("magnificPopup"):i[0].magnificPopup,n=parseInt(arguments[1],10)||0,o=t.items?t.items[n]:(o=i,(o=t.delegate?o.find(t.delegate):o).eq(n)),m._openClick({mfpEl:o},i,t)):m.isOpen&&m[e].apply(m,Array.prototype.slice.call(arguments,1)):(e=c.extend(!0,{},e),P?i.data("magnificPopup",e):i[0].magnificPopup=e,m.addGroup(i,e)),i},"inline"),E=(c.magnificPopup.registerModule(S,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){m.types.push(S),d(w+"."+S,function(){a()})},getInline:function(e,t){var n,o,i;return a(),e.src?(n=m.st.inline,(o=c(e.src)).length?((i=o[0].parentNode)&&i.tagName&&(v||(l=n.hiddenClass,v=p(l),l="mfp-"+l),y=o.after(v).detach().removeClass(l)),m.updateStatus("ready")):(m.updateStatus("error",n.tNotFound),o=c("<div>")),e.inlineElement=o):(m.updateStatus("ready"),m._parseMarkup(t,{},e),t)}}}),"ajax");c.magnificPopup.registerModule(E,{options:{settings:null,cursor:"mfp-ajax-cur",tError:"The content could not be loaded."},proto:{initAjax:function(){m.types.push(E),n=m.st.ajax.cursor,d(w+"."+E,t),d("BeforeChange."+E,t)},getAjax:function(o){n&&c(document.body).addClass(n),m.updateStatus("loading");var e=c.extend({url:o.src,success:function(e,t,n){e={data:e,xhr:n};u("ParseAjax",e),m.appendContent(c(e.data),E),o.finished=!0,i(),m._setFocus(),setTimeout(function(){m.wrap.addClass(T)},16),m.updateStatus("ready"),u("AjaxContentAdded")},error:function(){i(),o.finished=o.loadError=!0,m.updateStatus("error",m.st.ajax.tError.replace("%url%",o.src))}},m.st.ajax.settings);return m.req=c.ajax(e),""}}});var z;c.magnificPopup.registerModule("image",{options:{markup:'<div class="mfp-figure"><div class="mfp-close"></div><figure><div class="mfp-img"></div><figcaption><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></figcaption></figure></div>',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:"The image could not be loaded."},proto:{initImage:function(){var e=m.st.image,t=".image";m.types.push("image"),d(b+t,function(){"image"===m.currItem.type&&e.cursor&&c(document.body).addClass(e.cursor)}),d(w+t,function(){e.cursor&&c(document.body).removeClass(e.cursor),_.off("resize"+I)}),d("Resize"+t,m.resizeImage),m.isLowIE&&d("AfterChange",m.resizeImage)},resizeImage:function(){var e,t=m.currItem;t&&t.img&&m.st.image.verticalFit&&(e=0,m.isLowIE&&(e=parseInt(t.img.css("padding-top"),10)+parseInt(t.img.css("padding-bottom"),10)),t.img.css("max-height",m.wH-e))},_onImageHasSize:function(e){e.img&&(e.hasSize=!0,z&&clearInterval(z),e.isCheckingImgSize=!1,u("ImageHasSize",e),e.imgHidden)&&(m.content&&m.content.removeClass("mfp-loading"),e.imgHidden=!1)},findImageSize:function(t){function n(e){z&&clearInterval(z),z=setInterval(function(){0<i.naturalWidth?m._onImageHasSize(t):(200<o&&clearInterval(z),3===++o?n(10):40===o?n(50):100===o&&n(500))},e)}var o=0,i=t.img[0];n(1)},getImage:function(e,t){function n(){e&&(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("error",a.tError.replace("%url%",e.src))),e.hasSize=!0,e.loaded=!0,e.loadError=!0)}function o(){e&&(e.img[0].complete?(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("ready")),e.hasSize=!0,e.loaded=!0,u("ImageLoadComplete")):++r<200?setTimeout(o,100):n())}var i,r=0,a=m.st.image,s=t.find(".mfp-img");return s.length&&((i=document.createElement("img")).className="mfp-img",e.el&&e.el.find("img").length&&(i.alt=e.el.find("img").attr("alt")),e.img=c(i).on("load.mfploader",o).on("error.mfploader",n),i.src=e.src,s.is("img")&&(e.img=e.img.clone()),0<(i=e.img[0]).naturalWidth?e.hasSize=!0:i.width||(e.hasSize=!1)),m._parseMarkup(t,{title:function(e){if(e.data&&void 0!==e.data.title)return e.data.title;var t=m.st.image.titleSrc;if(t){if("function"==typeof t)return t.call(m,e);if(e.el)return e.el.attr(t)||""}return""}(e),img_replaceWith:e.img},e),m.resizeImage(),e.hasSize?(z&&clearInterval(z),e.loadError?(t.addClass("mfp-loading"),m.updateStatus("error",a.tError.replace("%url%",e.src))):(t.removeClass("mfp-loading"),m.updateStatus("ready"))):(m.updateStatus("loading"),e.loading=!0,e.hasSize||(e.imgHidden=!0,t.addClass("mfp-loading"),m.findImageSize(e))),t}}});function O(e){var t;m.currTemplate[L]&&(t=m.currTemplate[L].find("iframe")).length&&(e||(t[0].src="//about:blank"),m.isIE8)&&t.css("display",e?"block":"none")}function M(e){var t=m.items.length;return t-1<e?e-t:e<0?t+e:e}function D(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)}c.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(e){return e.is("img")?e:e.find("img")}},proto:{initZoom:function(){var e,t,n,o,i,r,a=m.st.zoom,s=".zoom";a.enabled&&m.supportsTransition&&(t=a.duration,n=function(e){var e=e.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),t="all "+a.duration/1e3+"s "+a.easing,n={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},o="transition";return n["-webkit-"+o]=n["-moz-"+o]=n["-o-"+o]=n[o]=t,e.css(n),e},o=function(){m.content.css("visibility","visible")},d("BuildControls"+s,function(){m._allowZoom()&&(clearTimeout(i),m.content.css("visibility","hidden"),(e=m._getItemToZoom())?((r=n(e)).css(m._getOffset()),m.wrap.append(r),i=setTimeout(function(){r.css(m._getOffset(!0)),i=setTimeout(function(){o(),setTimeout(function(){r.remove(),e=r=null,u("ZoomAnimationEnded")},16)},t)},16)):o())}),d(F+s,function(){if(m._allowZoom()){if(clearTimeout(i),m.st.removalDelay=t,!e){if(!(e=m._getItemToZoom()))return;r=n(e)}r.css(m._getOffset(!0)),m.wrap.append(r),m.content.css("visibility","hidden"),setTimeout(function(){r.css(m._getOffset())},16)}}),d(w+s,function(){m._allowZoom()&&(o(),r&&r.remove(),e=null)}))},_allowZoom:function(){return"image"===m.currItem.type},_getItemToZoom:function(){return!!m.currItem.hasSize&&m.currItem.img},_getOffset:function(e){var e=e?m.currItem.img:m.st.zoom.opener(m.currItem.el||m.currItem),t=e.offset(),n=parseInt(e.css("padding-top"),10),o=parseInt(e.css("padding-bottom"),10),e=(t.top-=c(window).scrollTop()-n,{width:e.width(),height:(P?e.innerHeight():e[0].offsetHeight)-o-n});return(B=void 0===B?void 0!==document.createElement("p").style.MozTransform:B)?e["-moz-transform"]=e.transform="translate("+t.left+"px,"+t.top+"px)":(e.left=t.left,e.top=t.top),e}}});var B,L="iframe",H=(c.magnificPopup.registerModule(L,{options:{markup:'<div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" src="//about:blank" frameborder="0" allowfullscreen></iframe></div>',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){m.types.push(L),d("BeforeChange",function(e,t,n){t!==n&&(t===L?O():n===L&&O(!0))}),d(w+"."+L,function(){O()})},getIframe:function(e,t){var n=e.src,o=m.st.iframe,i=(c.each(o.patterns,function(){if(-1<n.indexOf(this.index))return this.id&&(n="string"==typeof this.id?n.substr(n.lastIndexOf(this.id)+this.id.length,n.length):this.id.call(this,n)),n=this.src.replace("%id%",n),!1}),{});return o.srcAction&&(i[o.srcAction]=n),m._parseMarkup(t,i,e),m.updateStatus("ready"),t}}}),c.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%"></button>',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%",langDir:null,loop:!0},proto:{initGallery:function(){var r=m.st.gallery,e=".mfp-gallery";if(m.direction=!0,!r||!r.enabled)return!1;r.langDir||(r.langDir=document.dir||"ltr"),h+=" mfp-gallery",d(b+e,function(){r.navigateByImgClick&&m.wrap.on("click"+e,".mfp-img",function(){if(1<m.items.length)return m.next(),!1}),g.on("keydown"+e,function(e){37===e.keyCode?"rtl"===r.langDir?m.next():m.prev():39===e.keyCode&&("rtl"===r.langDir?m.prev():m.next())}),m.updateGalleryButtons()}),d("UpdateStatus"+e,function(){m.updateGalleryButtons()}),d("UpdateStatus"+e,function(e,t){t.text&&(t.text=D(t.text,m.currItem.index,m.items.length))}),d(C+e,function(e,t,n,o){var i=m.items.length;n.counter=1<i?D(r.tCounter,o.index,i):""}),d("BuildControls"+e,function(){var e,t,n,o,i;1<m.items.length&&r.arrows&&!m.arrowLeft&&(t="rtl"===r.langDir?(o=r.tNext,e=r.tPrev,i="next","prev"):(o=r.tPrev,e=r.tNext,i="prev","next"),n=r.arrowMarkup,o=m.arrowLeft=c(n.replace(/%title%/gi,o).replace(/%action%/gi,i).replace(/%dir%/gi,"left")).addClass(k),i=m.arrowRight=c(n.replace(/%title%/gi,e).replace(/%action%/gi,t).replace(/%dir%/gi,"right")).addClass(k),"rtl"===r.langDir?(m.arrowNext=o,m.arrowPrev=i):(m.arrowNext=i,m.arrowPrev=o),o.on("click",function(){"rtl"===r.langDir?m.next():m.prev()}),i.on("click",function(){"rtl"===r.langDir?m.prev():m.next()}),m.container.append(o.add(i)))}),d(j+e,function(){m._preloadTimeout&&clearTimeout(m._preloadTimeout),m._preloadTimeout=setTimeout(function(){m.preloadNearbyImages(),m._preloadTimeout=null},16)}),d(w+e,function(){g.off(e),m.wrap.off("click"+e),m.arrowRight=m.arrowLeft=null})},next:function(){var e=M(m.index+1);if(!m.st.gallery.loop&&0===e)return!1;m.direction=!0,m.index=e,m.updateItemHTML()},prev:function(){var e=m.index-1;if(!m.st.gallery.loop&&e<0)return!1;m.direction=!1,m.index=M(e),m.updateItemHTML()},goTo:function(e){m.direction=e>=m.index,m.index=e,m.updateItemHTML()},preloadNearbyImages:function(){for(var e=m.st.gallery.preload,t=Math.min(e[0],m.items.length),n=Math.min(e[1],m.items.length),o=1;o<=(m.direction?n:t);o++)m._preloadItem(m.index+o);for(o=1;o<=(m.direction?t:n);o++)m._preloadItem(m.index-o)},_preloadItem:function(e){var t;e=M(e),m.items[e].preloaded||((t=m.items[e]).parsed||(t=m.parseEl(e)),u("LazyLoad",t),"image"===t.type&&(t.img=c('<img class="mfp-img" />').on("load.mfploader",function(){t.hasSize=!0}).on("error.mfploader",function(){t.hasSize=!0,t.loadError=!0,u("LazyLoadError",t)}).attr("src",t.src)),t.preloaded=!0)},updateGalleryButtons:function(){m.st.gallery.loop||"object"!=typeof m.arrowPrev||null===m.arrowPrev||(0===m.index?m.arrowPrev.hide():m.arrowPrev.show(),m.index===m.items.length-1?m.arrowNext.hide():m.arrowNext.show())}}}),"retina");c.magnificPopup.registerModule(H,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){var n,o;1<window.devicePixelRatio&&(n=m.st.retina,o=n.ratio,1<(o=isNaN(o)?o():o))&&(d("ImageHasSize."+H,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/o,width:"100%"})}),d("ElementParse."+H,function(e,t){t.src=n.replaceSrc(t,o)}))}}}),r()});!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(m){var i=/\+/g;function x(e){return v.raw?e:encodeURIComponent(e)}function g(e,n){var o=v.raw?e:function(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(i," ")),v.json?JSON.parse(e):e}catch(e){}}(e);return m.isFunction(n)?n(o):o}var v=m.cookie=function(e,n,o){if(1<arguments.length&&!m.isFunction(n)){if("number"==typeof(o=m.extend({},v.defaults,o)).expires){var i=o.expires,r=o.expires=new Date;r.setMilliseconds(r.getMilliseconds()+864e5*i)}return document.cookie=[x(e),"=",(t=n,x(v.json?JSON.stringify(t):String(t))),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("")}for(var t,c,u=e?void 0:{},s=document.cookie?document.cookie.split("; "):[],a=0,d=s.length;a<d;a++){var p=s[a].split("="),f=(c=p.shift(),v.raw?c:decodeURIComponent(c)),l=p.join("=");if(e===f){u=g(l,n);break}e||void 0===(l=g(l))||(u[f]=l)}return u};v.defaults={},m.removeCookie=function(e,n){return m.cookie(e,"",m.extend({},n,{expires:-1})),!m.cookie(e)}});!function(e){var t={};function n(o){if(t[o])return t[o].exports;var a=t[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(o,a,function(t){return e[t]}.bind(null,a));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=17)}({17:function(e,t){var n=function(e,t){var n=t(".eael-img-comp-container",e),o={default_offset_pct:n.data("offset")||.7,orientation:n.data("orientation")||"horizontal",before_label:n.data("before_label")||"Before",after_label:n.data("after_label")||"After",no_overlay:"yes"!=n.data("overlay"),move_slider_on_hover:"yes"==n.data("onhover"),move_with_handle_only:!0,click_to_move:"yes"==n.data("onclick")},a=t(".eael-advance-tabs"),r=a.find(".eael-tabs-nav li"),i=a.find(".eael-tabs-content > div");r.on("click",(function(){var e=i.eq(t(this).index());t(e).find(".eael-img-comp-container").length&&n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var e=n.closest(".elementor-widget-container");e.length<1&&(e=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o)}))})),n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var a=n.closest(".elementor-widget-container");a.length<1&&(a=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o);var r=e.find(".eael-img-comp-toggle-btns");if(r.length){var i=r.find(".eael-img-comp-toggle-btn");i.on("click",(function(){i.removeClass("active"),t(this).addClass("active");var e=t(this).data("state"),o=n.data("eatwentytwenty"),a=n.find(".twentytwenty-handle").offset(),l=n.offset(),d=a.left-l.left,f=a.top-l.top,c=d+l.left,s=f+l.top;o.animateSlider(e,o.getSliderPercentage(c,s),r.data("step")),1===t(this).index()?r.addClass("after-active"):r.removeClass("after-active")}))}}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-image-comparison.default",n)}))}});!function(e){var a={};function o(i){if(a[i])return a[i].exports;var t=a[i]={i:i,l:!1,exports:{}};return e[i].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.m=e,o.c=a,o.d=function(e,a,i){o.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:i})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,a){if(1&a&&(e=o(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(o.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var t in e)o.d(i,t,function(a){return e[a]}.bind(null,t));return i},o.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(a,"a",a),a},o.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},o.p="",o(o.s=21)}({21:function(e,a){var o=function(e,a){var o=e.find(".eael-lightbox-wrapper").eq(0),i=void 0!==o.data("main-class")?o.data("main-class"):"",t=void 0!==o.data("popup-layout")?o.data("popup-layout"):"",l="yes"===o.data("close_button"),n=void 0!==o.data("effect")?o.data("effect"):"",r=void 0!==o.data("type")?o.data("type"):"",d=void 0!==o.data("iframe-class")?o.data("iframe-class"):"",s=void 0!==o.data("src")?o.data("src"):"",c=void 0!==o.data("trigger-element")?o.data("trigger-element"):"",p=""!=o.data("delay")?o.data("delay"):0,f=void 0!==o.data("trigger")?o.data("trigger"):"",m=void 0!==o.data("lightbox-id")?o.data("lightbox-id"):"",u=void 0!==o.data("display-after")?o.data("display-after"):"",v="yes"===o.data("esc_exit"),g="yes"===o.data("click_exit");if(i+=" "+t+" "+n,"eael-lightbox-popup-fullscreen"==t){var b=a(window).height()-20;a(".eael-lightbox-container.content-type-image-now").css({"max-height":b+"px","margin-top":"10px"})}if("eael_lightbox_trigger_exit_intent"==f){0===u&&a.removeCookie(m,{path:"/"}),window.addEventListener("mouseout",(function(e){e.clientY<0&&!a.cookie(m)&&(a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,removalDelay:500,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m))}),!1)}else"eael_lightbox_trigger_pageload"==f?(0===u&&a.removeCookie(m,{path:"/"}),a.cookie(m)||setTimeout((function(){a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m)}),p)):(void 0!==c&&""!==c||(c=".eael-modal-popup-link"),e.on("keydown",c,(function(e){13!==e.which&&32!==e.which||a(this).trigger("click")})),a(c).magnificPopup({image:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-figure"><div class="mfp-close"></div><div class="mfp-img"></div><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></div></div></div>'},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},items:{src:s,type:r},removalDelay:"animated "===n?0:500,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open"),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}},type:"inline"}));a.extend(!0,a.magnificPopup.defaults,{tClose:"Close"})};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelLightboxLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-lightbox.default",o)}))}});!function(e){var t={};function a(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(o,n,function(t){return e[t]}.bind(null,n));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=0)}([function(e,t){eael.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",(function(e,t){var a=window.location.hash.substr(1);a="safari"===a?"eael-safari":a;var o=!1,n=e.find(".eael-adv-accordion"),i=e.find(".eael-accordion-header"),s=n.data("accordion-type"),r=n.data("toogle-speed"),c=n.data("custom-id-offset"),d=n.data("scroll-on-click"),l=n.data("scroll-speed");(a||"yes"===d)&&i.each((function(){"yes"===d&&t(this).attr("data-scroll",t(this).offset().top),a&&t(this).attr("id")==a&&(o=!0,t(this).addClass("show-this active"),t(this).next().slideDown(r))})),!1===o&&i.each((function(){t(this).hasClass("active-default")&&(t(this).addClass("show-this active"),t(this).next().slideDown(r))})),i.unbind("click"),i.click((function(e){e.preventDefault();var a=t(this);if(setTimeout((function(e){t(".eael-accordion-header").removeClass("triggered")}),70),!a.hasClass("triggered")){if("accordion"===s?a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.parent().parent().find(".eael-accordion-header").removeClass("show-this active"),a.parent().parent().find(".eael-accordion-content").slideUp(r),a.toggleClass("show-this active"),a.next().slideToggle(r)):a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.addClass("show-this active"),a.next().slideDown(r)),"yes"===d&&a.hasClass("active")){var o=c?parseFloat(c):0;t("html, body").animate({scrollTop:t(this).data("scroll")-o},l)}setTimeout((function(){a.addClass("triggered"),eael.hooks.doAction("widgets.reinit",a.parent()),window.eaelPreventResizeOnClick=!0,eael.hooks.doAction("ea-advanced-accordion-triggered",a.next())}),50)}})),e.on("keydown",".eael-accordion-header",(function(e){13!==e.which&&32!==e.which||t(this).trigger("click")}))}))}))}]);!function(e){var t={};function i(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)i.d(n,r,function(t){return e[t]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([,function(e,t){var i=function(e,t){var i=e[0];if(i){i.querySelectorAll("[data-duration]").forEach((function(e){var t=e.getAttribute("data-duration");e.style.setProperty("--accordion-duration",t+"s")}));var n=i.querySelectorAll(".eael-accordion_media-list"),r=i.querySelectorAll(".eael-accordion_media-image"),o=0;n.forEach((function(e,t){e.addEventListener("click",(function(){!function(e){if(e!==o){var t=n[o];t.classList.remove("active");var i=t.querySelector(".eael-accordion_media-description");i.style.height=i.scrollHeight+"px",i.offsetHeight,i.style.height="0";var a=n[e];a.classList.add("active");var c=a.querySelector(".eael-accordion_media-description");c.style.visibility="hidden",c.style.height="auto";var l=c.scrollHeight+"px";c.style.height="0",c.style.visibility="visible",requestAnimationFrame((function(){c.style.height=l})),r.forEach((function(e){return e.classList.remove("active")})),r[e].classList.add("active"),o=e}}(t)}))})),window.location.href.includes("elementor")&&a(),"loading"===document.readyState?window.addEventListener("load",(function(){a()})):setTimeout((function(){a()}),0)}function a(){var e=n[0];if(e&&e.classList.contains("active")){var t=e.querySelector(".eael-accordion_media-description");t.style.visibility="hidden",t.style.height="auto",requestAnimationFrame((function(){requestAnimationFrame((function(){var e=t.scrollHeight+"px";t.style.height="0",t.style.visibility="visible",requestAnimationFrame((function(){t.style.height=e}))}))}))}}};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("advancedAccordion"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",i)}))}]);!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return-1==n.indexOf(t)&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{};return(i[e]=i[e]||{})[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return-1!=n&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o<i.length;o++){var s=i[o];n&&n[s]&&(this.off(e,s),delete n[s]),s.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(t,i){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(e){return i(t,e)}):"object"==typeof module&&module.exports?module.exports=i(t,require("ev-emitter")):t.imagesLoaded=i(t,t.EvEmitter)}("undefined"!=typeof window?window:this,function(t,e){var s=t.jQuery,r=t.console;function h(e,t){for(var i in t)e[i]=t[i];return e}var a=Array.prototype.slice;function d(e,t,i){if(!(this instanceof d))return new d(e,t,i);var n,o=e;"string"==typeof e&&(o=document.querySelectorAll(e)),o?(this.elements=(n=o,Array.isArray(n)?n:"object"==typeof n&&"number"==typeof n.length?a.call(n):[n]),this.options=h({},this.options),"function"==typeof t?i=t:h(this.options,t),i&&this.on("always",i),this.getImages(),s&&(this.jqDeferred=new s.Deferred),setTimeout(this.check.bind(this))):r.error("Bad element for imagesLoaded "+(o||e))}(d.prototype=Object.create(e.prototype)).options={},d.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},d.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&m[t]){for(var i=e.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background)for(var s=e.querySelectorAll(this.options.background),n=0;n<s.length;n++){var r=s[n];this.addElementBackgroundImages(r)}}};var m={1:!0,9:!0,11:!0};function i(e){this.img=e}function n(e,t){this.url=e,this.element=t,this.img=new Image}return d.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(t.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,e),n=i.exec(t.backgroundImage)}},d.prototype.addImage=function(e){var t=new i(e);this.images.push(t)},d.prototype.addBackground=function(e,t){var i=new n(e,t);this.images.push(i)},d.prototype.check=function(){var n=this;function t(e,t,i){setTimeout(function(){n.progress(e,t,i)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(e){e.once("progress",t),e.check()}):this.complete()},d.prototype.progress=function(e,t,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+i,e,t)},d.prototype.complete=function(){var e,t=this.hasAnyBroken?"fail":"done";this.isComplete=!0,this.emitEvent(t,[this]),this.emitEvent("always",[this]),this.jqDeferred&&(e=this.hasAnyBroken?"reject":"resolve",this.jqDeferred[e](this))},(i.prototype=Object.create(e.prototype)).check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},i.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},i.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},i.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},i.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},i.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},i.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},(n.prototype=Object.create(i.prototype)).check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},n.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},n.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},(d.makeJQueryPlugin=function(e){(e=e||t.jQuery)&&((s=e).fn.imagesLoaded=function(e,t){return new d(this,e,t).jqDeferred.promise(s(this))})})(),d});!function(e){"function"==typeof define&&define.amd?define([],e):"undefined"!=typeof module&&null!==module&&module.exports?module.exports=e:e()}(function(){var i=Object.assign||window.jQuery&&jQuery.extend,p=8,a=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e,t){return window.setTimeout(function(){e()},25)};function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n}"function"!=typeof window.CustomEvent&&(e.prototype=window.Event.prototype,window.CustomEvent=e);var o={textarea:!0,input:!0,select:!0,button:!0},c={move:"mousemove",cancel:"mouseup dragstart",end:"mouseup"},u={move:"touchmove",cancel:"touchend",end:"touchend"},r=/\s+/,d={bubbles:!0,cancelable:!0},t="function"==typeof Symbol?Symbol("events"):{};function m(e){return e[t]||(e[t]={})}function v(e,t,n,o){t=t.split(r);var i,a=m(e),c=t.length;function u(e){n(e,o)}for(;c--;)(a[i=t[c]]||(a[i]=[])).push([n,u]),e.addEventListener(i,u)}function f(e,t,n){t=t.split(r);var o,i,a,c=m(e),u=t.length;if(c)for(;u--;)if(i=c[o=t[u]])for(a=i.length;a--;)i[a][0]===n&&(e.removeEventListener(o,i[a][1]),i.splice(a,1))}function g(e,t,n){var o=new CustomEvent(t,d);n&&i(o,n),e.dispatchEvent(o)}function s(e){var n=e,o=!1,i=!1;function t(e){o?(n(),a(t),o=!(i=!0)):i=!1}this.kick=function(e){o=!0,i||t()},this.end=function(e){var t=n;e&&(i?(n=o?function(){t(),e()}:e,o=!0):e())}}function h(){}function l(e){e.preventDefault()}function X(e,t){var n,o;if(e.identifiedTouch)return e.identifiedTouch(t);for(n=-1,o=e.length;++n<o;)if(e[n].identifier===t)return e[n]}function Y(e,t){var n=X(e.changedTouches,t.identifier);if(n&&(n.pageX!==t.pageX||n.pageY!==t.pageY))return n}function n(e,t){T(e,t,e,w)}function y(e,t){w()}function w(){f(document,c.move,n),f(document,c.cancel,y)}function b(e){f(document,u.move,e.touchmove),f(document,u.cancel,e.touchend)}function T(e,t,n,o){var i,a,c,u,r,d,m,v,f,s=n.pageX-t.pageX,l=n.pageY-t.pageY;s*s+l*l<p*p||(a=t,c=n,u=s,r=l,d=o,m=(i=e).targetTouches,v=i.timeStamp-a.timeStamp,f={altKey:i.altKey,ctrlKey:i.ctrlKey,shiftKey:i.shiftKey,startX:a.pageX,startY:a.pageY,distX:u,distY:r,deltaX:u,deltaY:r,pageX:c.pageX,pageY:c.pageY,velocityX:u/v,velocityY:r/v,identifier:a.identifier,targetTouches:m,finger:m?m.length:1,enableMove:function(){this.moveEnabled=!0,this.enableMove=h,i.preventDefault()}},g(a.target,"movestart",f),d(a))}function E(e,t){var n=t.timer;t.touch=e,t.timeStamp=e.timeStamp,n.kick()}function S(e,t){var n=t.target,o=t.event,i=t.timer;f(document,c.move,E),f(document,c.end,S),K(n,o,i,function(){setTimeout(function(){f(n,"click",l)},0)})}function k(e,t){var n,o=t.target,i=t.event,a=t.timer;X(e.changedTouches,i.identifier)&&(n=t,f(document,u.move,n.activeTouchmove),f(document,u.end,n.activeTouchend),K(o,i,a))}function K(e,t,n,o){n.end(function(){return g(e,"moveend",t),o&&o()})}if(v(document,"mousedown",function(e){var t;1!==(t=e).which||t.ctrlKey||t.altKey||o[e.target.tagName.toLowerCase()]||(v(document,c.move,n,e),v(document,c.cancel,y,e))}),v(document,"touchstart",function(e){if(!o[e.target.tagName.toLowerCase()]){var t=e.changedTouches[0],n={target:t.target,pageX:t.pageX,pageY:t.pageY,identifier:t.identifier,touchmove:function(e,t){!function(e,t){var n=Y(e,t);if(!n)return;T(e,t,n,b)}(e,t)},touchend:function(e,t){!function(e,t){if(!X(e.changedTouches,t.identifier))return;b(t)}(e,t)}};v(document,u.move,n.touchmove,n),v(document,u.cancel,n.touchend,n)}}),v(document,"movestart",function(e){if(!e.defaultPrevented&&e.moveEnabled){var t={startX:e.startX,startY:e.startY,pageX:e.pageX,pageY:e.pageY,distX:e.distX,distY:e.distY,deltaX:e.deltaX,deltaY:e.deltaY,velocityX:e.velocityX,velocityY:e.velocityY,identifier:e.identifier,targetTouches:e.targetTouches,finger:e.finger},n={target:e.target,event:t,timer:new s(function(e){(function(e,t,n){var o=n-e.timeStamp;e.distX=t.pageX-e.startX,e.distY=t.pageY-e.startY,e.deltaX=t.pageX-e.pageX,e.deltaY=t.pageY-e.pageY,e.velocityX=.3*e.velocityX+.7*e.deltaX/o,e.velocityY=.3*e.velocityY+.7*e.deltaY/o,e.pageX=t.pageX,e.pageY=t.pageY})(t,n.touch,n.timeStamp),g(n.target,"move",t)}),touch:void 0,timeStamp:e.timeStamp};void 0===e.identifier?(v(e.target,"click",l),v(document,c.move,E,n),v(document,c.end,S,n)):(n.activeTouchmove=function(e,t){var n,o,i,a,c;n=e,i=(o=t).event,a=o.timer,(c=Y(n,i))&&(n.preventDefault(),i.targetTouches=n.targetTouches,o.touch=c,o.timeStamp=n.timeStamp,a.kick())},n.activeTouchend=function(e,t){k(e,t)},v(document,u.move,n.activeTouchmove,n),v(document,u.end,n.activeTouchend,n))}}),window.jQuery){var j="startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY".split(" ");jQuery.event.special.movestart={setup:function(){return v(this,"movestart",C),!1},teardown:function(){return f(this,"movestart",C),!1},add:A},jQuery.event.special.move={setup:function(){return v(this,"movestart",Q),!1},teardown:function(){return f(this,"movestart",Q),!1},add:A},jQuery.event.special.moveend={setup:function(){return v(this,"movestart",q),!1},teardown:function(){return f(this,"movestart",q),!1},add:A}}function C(e){e.enableMove()}function Q(e){e.enableMove()}function q(e){e.enableMove()}function A(e){var o=e.handler;e.handler=function(e){for(var t,n=j.length;n--;)e[t=j[n]]=e.originalEvent[t];o.apply(this,arguments)}}});!function(t){t.fn.eatwentytwenty=function(e){var e=t.extend({default_offset_pct:.5,orientation:"horizontal",before_label:"Before",after_label:"After",no_overlay:!1,move_slider_on_hover:!1,move_with_handle_only:!0,click_to_move:!1,autoSlide:!1,autoSlideSpeed:1e3,autoSlidePause:500},e);return this.each(function(){var n,a=e.default_offset_pct,o=t(this),i=e.orientation;o.wrap("<div class='twentytwenty-wrapper twentytwenty-"+i+"'></div>"),e.no_overlay||o.append("<div class='twentytwenty-overlay'></div>");var f=o.find("img:first"),l=o.find("img:last");o.append("<div class='twentytwenty-handle'></div>");var r=o.find(".twentytwenty-handle");r.append("<span class='twentytwenty-"+("vertical"===i?"down":"left")+"-arrow'></span>"),r.append("<span class='twentytwenty-"+("vertical"===i?"up":"right")+"-arrow'></span>"),o.addClass("twentytwenty-container"),f.addClass("twentytwenty-before"),l.addClass("twentytwenty-after");var s=o.find(".twentytwenty-overlay");t("<div>",{class:"twentytwenty-before-label","data-content":e.before_label}).appendTo(s),t("<div>",{class:"twentytwenty-after-label","data-content":e.after_label}).appendTo(s);var c=function(t){var e=f.width(),n=f.height();return{w:e+"px",h:n+"px",cw:t*e+"px",ch:t*n+"px"}},d=function(t){"vertical"===i?(f.css("clip","rect(0,"+t.w+","+t.ch+",0)"),l.css("clip","rect("+t.ch+","+t.w+","+t.h+",0)")):(f.css("clip","rect(0,"+t.cw+","+t.h+",0)"),l.css("clip","rect(0,"+t.w+","+t.h+","+t.cw+")")),o.css("height",t.h)},w=function(t){var e=c(t);r.css("vertical"===i?"top":"left","vertical"===i?e.ch:e.cw),d(e)},v=function(t,e){var n;return 0===h&&0===p&&0===y&&0===u&&(h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()),Math.max(0,Math.min(1,n="vertical"===i?(e-p)/u:(t-h)/y))};t(window).on("resize.eatwentytwenty",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),w(a)});var h=0,p=0,y=0,u=0,$=function(t){o.addClass("active"),h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()},m=function(t){o.hasClass("active")&&(a=v(t.pageX,t.pageY),w(a))},g=function(){o.removeClass("active")},b=e.move_with_handle_only?r:o;b.on("movestart",$),b.on("move",m),b.on("moveend",g),e.move_slider_on_hover&&(o.on("mouseenter",$),o.on("mousemove",m),o.on("mouseleave",g)),r.on("touchmove",function(t){t.preventDefault()}),o.find("img").on("mousedown",function(t){t.preventDefault()}),e.click_to_move&&o.on("click",function(t){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height(),a=v(t.pageX,t.pageY),w(a)});var _=function(){h=o.offset().left,p=o.offset().top,y=f.width(),u=f.height()};o.data("eatwentytwenty",{animateSlider:function t(e,a,o){clearInterval(n);var i=a,o=o/1e4||.001;n="before"===e?setInterval(function(){w(i-=o),i<=0&&clearInterval(n)},1):setInterval(function(){w(i+=o),i>=1&&clearInterval(n)},1)},adjustSlider:w,getSliderPercentage:v,initializeOffsetAndDimensions:_}),f.on("load",function(){_()}),f[0].complete&&_(),t(window).trigger("resize.eatwentytwenty")})}}(jQuery);!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?e(require("jquery")):e(window.jQuery||window.Zepto)}(function(c){function e(){}function d(e,t){m.ev.on(x+e+I,t)}function p(e,t,n,o){var i=document.createElement("div");return i.className="mfp-"+e,n&&(i.innerHTML=n),o?t&&t.appendChild(i):(i=c(i),t&&i.appendTo(t)),i}function u(e,t){m.ev.triggerHandler(x+e,t),m.st.callbacks&&(e=e.charAt(0).toLowerCase()+e.slice(1),m.st.callbacks[e])&&m.st.callbacks[e].apply(m,Array.isArray(t)?t:[t])}function f(e){return e===A&&m.currTemplate.closeBtn||(m.currTemplate.closeBtn=c(m.st.closeMarkup.replace("%title%",m.st.tClose)),A=e),m.currTemplate.closeBtn}function r(){c.magnificPopup.instance||((m=new e).init(),c.magnificPopup.instance=m)}function a(){y&&(v.after(y.addClass(l)).detach(),y=null)}function i(){n&&c(document.body).removeClass(n)}function t(){i(),m.req&&m.req.abort()}var m,o,g,s,h,A,l,v,y,n,w="Close",F="BeforeClose",C="MarkupParse",b="Open",j="Change",x="mfp",I="."+x,T="mfp-ready",N="mfp-removing",k="mfp-prevent-close",P=!!window.jQuery,_=c(window),S=(c.magnificPopup={instance:null,proto:e.prototype={constructor:e,init:function(){var e=navigator.appVersion;m.isLowIE=m.isIE8=document.all&&!document.addEventListener,m.isAndroid=/android/gi.test(e),m.isIOS=/iphone|ipad|ipod/gi.test(e),m.supportsTransition=function(){var e=document.createElement("p").style,t=["ms","O","Moz","Webkit"];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+"Transition"in e)return!0;return!1}(),m.probablyMobile=m.isAndroid||m.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),g=c(document),m.popupsCache={}},open:function(e){if(!1===e.isObj){m.items=e.items.toArray(),m.index=0;for(var t,n=e.items,o=0;o<n.length;o++)if((t=(t=n[o]).parsed?t.el[0]:t)===e.el[0]){m.index=o;break}}else m.items=Array.isArray(e.items)?e.items:[e.items],m.index=e.index||0;if(!m.isOpen){m.types=[],h="",e.mainEl&&e.mainEl.length?m.ev=e.mainEl.eq(0):m.ev=g,e.key?(m.popupsCache[e.key]||(m.popupsCache[e.key]={}),m.currTemplate=m.popupsCache[e.key]):m.currTemplate={},m.st=c.extend(!0,{},c.magnificPopup.defaults,e),m.fixedContentPos="auto"===m.st.fixedContentPos?!m.probablyMobile:m.st.fixedContentPos,m.st.modal&&(m.st.closeOnContentClick=!1,m.st.closeOnBgClick=!1,m.st.showCloseBtn=!1,m.st.enableEscapeKey=!1),m.bgOverlay||(m.bgOverlay=p("bg").on("click"+I,function(){m.close()}),m.wrap=p("wrap").attr("tabindex",-1).on("click"+I,function(e){m._checkIfClose(e.target)&&m.close()}),m.container=p("container",m.wrap)),m.contentContainer=p("content"),m.st.preloader&&(m.preloader=p("preloader",m.container,m.st.tLoading));var i=c.magnificPopup.modules;for(o=0;o<i.length;o++){var r=(r=i[o]).charAt(0).toUpperCase()+r.slice(1);m["init"+r].call(m)}u("BeforeOpen"),m.st.showCloseBtn&&(m.st.closeBtnInside?(d(C,function(e,t,n,o){n.close_replaceWith=f(o.type)}),h+=" mfp-close-btn-in"):m.wrap.append(f())),m.st.alignTop&&(h+=" mfp-align-top"),m.fixedContentPos?m.wrap.css({overflow:m.st.overflowY,overflowX:"hidden",overflowY:m.st.overflowY}):m.wrap.css({top:_.scrollTop(),position:"absolute"}),!1!==m.st.fixedBgPos&&("auto"!==m.st.fixedBgPos||m.fixedContentPos)||m.bgOverlay.css({height:g.height(),position:"absolute"}),m.st.enableEscapeKey&&g.on("keyup"+I,function(e){27===e.keyCode&&m.close()}),_.on("resize"+I,function(){m.updateSize()}),m.st.closeOnContentClick||(h+=" mfp-auto-cursor"),h&&m.wrap.addClass(h);var a=m.wH=_.height(),s={},l=(m.fixedContentPos&&m._hasScrollBar(a)&&(l=m._getScrollbarSize())&&(s.marginRight=l),m.fixedContentPos&&(m.isIE7?c("body, html").css("overflow","hidden"):s.overflow="hidden"),m.st.mainClass);return m.isIE7&&(l+=" mfp-ie7"),l&&m._addClassToMFP(l),m.updateItemHTML(),u("BuildControls"),c("html").css(s),m.bgOverlay.add(m.wrap).prependTo(m.st.prependTo||c(document.body)),m._lastFocusedEl=document.activeElement,setTimeout(function(){m.content?(m._addClassToMFP(T),m._setFocus()):m.bgOverlay.addClass(T),g.on("focusin"+I,m._onFocusIn)},16),m.isOpen=!0,m.updateSize(a),u(b),e}m.updateItemHTML()},close:function(){m.isOpen&&(u(F),m.isOpen=!1,m.st.removalDelay&&!m.isLowIE&&m.supportsTransition?(m._addClassToMFP(N),setTimeout(function(){m._close()},m.st.removalDelay)):m._close())},_close:function(){u(w);var e=N+" "+T+" ";m.bgOverlay.detach(),m.wrap.detach(),m.container.empty(),m.st.mainClass&&(e+=m.st.mainClass+" "),m._removeClassFromMFP(e),m.fixedContentPos&&(e={marginRight:""},m.isIE7?c("body, html").css("overflow",""):e.overflow="",c("html").css(e)),g.off("keyup.mfp focusin"+I),m.ev.off(I),m.wrap.attr("class","mfp-wrap").removeAttr("style"),m.bgOverlay.attr("class","mfp-bg"),m.container.attr("class","mfp-container"),!m.st.showCloseBtn||m.st.closeBtnInside&&!0!==m.currTemplate[m.currItem.type]||m.currTemplate.closeBtn&&m.currTemplate.closeBtn.detach(),m.st.autoFocusLast&&m._lastFocusedEl&&c(m._lastFocusedEl).trigger("focus"),m.currItem=null,m.content=null,m.currTemplate=null,m.prevHeight=0,u("AfterClose")},updateSize:function(e){var t;m.isIOS?(t=document.documentElement.clientWidth/window.innerWidth,t=window.innerHeight*t,m.wrap.css("height",t),m.wH=t):m.wH=e||_.height(),m.fixedContentPos||m.wrap.css("height",m.wH),u("Resize")},updateItemHTML:function(){var e=m.items[m.index],t=(m.contentContainer.detach(),m.content&&m.content.detach(),(e=e.parsed?e:m.parseEl(m.index)).type),n=(u("BeforeChange",[m.currItem?m.currItem.type:"",t]),m.currItem=e,m.currTemplate[t]||(n=!!m.st[t]&&m.st[t].markup,u("FirstMarkupParse",n),m.currTemplate[t]=!n||c(n)),s&&s!==e.type&&m.container.removeClass("mfp-"+s+"-holder"),m["get"+t.charAt(0).toUpperCase()+t.slice(1)](e,m.currTemplate[t]));m.appendContent(n,t),e.preloaded=!0,u(j,e),s=e.type,m.container.prepend(m.contentContainer),u("AfterChange")},appendContent:function(e,t){(m.content=e)?m.st.showCloseBtn&&m.st.closeBtnInside&&!0===m.currTemplate[t]?m.content.find(".mfp-close").length||m.content.append(f()):m.content=e:m.content="",u("BeforeAppend"),m.container.addClass("mfp-"+t+"-holder"),m.contentContainer.append(m.content)},parseEl:function(e){var t,n=m.items[e];if((n=n.tagName?{el:c(n)}:(t=n.type,{data:n,src:n.src})).el){for(var o=m.types,i=0;i<o.length;i++)if(n.el.hasClass("mfp-"+o[i])){t=o[i];break}n.src=n.el.attr("data-mfp-src"),n.src||(n.src=n.el.attr("href"))}return n.type=t||m.st.type||"inline",n.index=e,n.parsed=!0,m.items[e]=n,u("ElementParse",n),m.items[e]},addGroup:function(t,n){function e(e){e.mfpEl=this,m._openClick(e,t,n)}var o="click.magnificPopup";(n=n||{}).mainEl=t,n.items?(n.isObj=!0,t.off(o).on(o,e)):(n.isObj=!1,n.delegate?t.off(o).on(o,n.delegate,e):(n.items=t).off(o).on(o,e))},_openClick:function(e,t,n){var o=(void 0!==n.midClick?n:c.magnificPopup.defaults).midClick;if(o||!(2===e.which||e.ctrlKey||e.metaKey||e.altKey||e.shiftKey)){o=(void 0!==n.disableOn?n:c.magnificPopup.defaults).disableOn;if(o)if("function"==typeof o){if(!o.call(m))return!0}else if(_.width()<o)return!0;e.type&&(e.preventDefault(),m.isOpen)&&e.stopPropagation(),n.el=c(e.mfpEl),n.delegate&&(n.items=t.find(n.delegate)),m.open(n)}},updateStatus:function(e,t){var n;m.preloader&&(o!==e&&m.container.removeClass("mfp-s-"+o),n={status:e,text:t=t||"loading"!==e?t:m.st.tLoading},u("UpdateStatus",n),e=n.status,t=n.text,m.st.allowHTMLInStatusIndicator?m.preloader.html(t):m.preloader.text(t),m.preloader.find("a").on("click",function(e){e.stopImmediatePropagation()}),m.container.addClass("mfp-s-"+e),o=e)},_checkIfClose:function(e){if(!c(e).closest("."+k).length){var t=m.st.closeOnContentClick,n=m.st.closeOnBgClick;if(t&&n)return!0;if(!m.content||c(e).closest(".mfp-close").length||m.preloader&&e===m.preloader[0])return!0;if(e===m.content[0]||c.contains(m.content[0],e)){if(t)return!0}else if(n&&c.contains(document,e))return!0;return!1}},_addClassToMFP:function(e){m.bgOverlay.addClass(e),m.wrap.addClass(e)},_removeClassFromMFP:function(e){this.bgOverlay.removeClass(e),m.wrap.removeClass(e)},_hasScrollBar:function(e){return(m.isIE7?g.height():document.body.scrollHeight)>(e||_.height())},_setFocus:function(){(m.st.focus?m.content.find(m.st.focus).eq(0):m.wrap).trigger("focus")},_onFocusIn:function(e){if(e.target!==m.wrap[0]&&!c.contains(m.wrap[0],e.target))return m._setFocus(),!1},_parseMarkup:function(i,e,t){var r;t.data&&(e=c.extend(t.data,e)),u(C,[i,e,t]),c.each(e,function(e,t){if(void 0===t||!1===t)return!0;var n,o;1<(r=e.split("_")).length?0<(n=i.find(I+"-"+r[0])).length&&("replaceWith"===(o=r[1])?n[0]!==t[0]&&n.replaceWith(t):"img"===o?n.is("img")?n.attr("src",t):n.replaceWith(c("<img>").attr("src",t).attr("class",n.attr("class"))):n.attr(r[1],t)):m.st.allowHTMLInTemplate?i.find(I+"-"+e).html(t):i.find(I+"-"+e).text(t)})},_getScrollbarSize:function(){var e;return void 0===m.scrollbarSize&&((e=document.createElement("div")).style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(e),m.scrollbarSize=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),m.scrollbarSize}},modules:[],open:function(e,t){return r(),(e=e?c.extend(!0,{},e):{}).isObj=!0,e.index=t||0,this.instance.open(e)},close:function(){return c.magnificPopup.instance&&c.magnificPopup.instance.close()},registerModule:function(e,t){t.options&&(c.magnificPopup.defaults[e]=t.options),c.extend(this.proto,t.proto),this.modules.push(e)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'<button title="%title%" type="button" class="mfp-close">&#215;</button>',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0,allowHTMLInStatusIndicator:!1,allowHTMLInTemplate:!1}},c.fn.magnificPopup=function(e){r();var t,n,o,i=c(this);return"string"==typeof e?"open"===e?(t=P?i.data("magnificPopup"):i[0].magnificPopup,n=parseInt(arguments[1],10)||0,o=t.items?t.items[n]:(o=i,(o=t.delegate?o.find(t.delegate):o).eq(n)),m._openClick({mfpEl:o},i,t)):m.isOpen&&m[e].apply(m,Array.prototype.slice.call(arguments,1)):(e=c.extend(!0,{},e),P?i.data("magnificPopup",e):i[0].magnificPopup=e,m.addGroup(i,e)),i},"inline"),E=(c.magnificPopup.registerModule(S,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){m.types.push(S),d(w+"."+S,function(){a()})},getInline:function(e,t){var n,o,i;return a(),e.src?(n=m.st.inline,(o=c(e.src)).length?((i=o[0].parentNode)&&i.tagName&&(v||(l=n.hiddenClass,v=p(l),l="mfp-"+l),y=o.after(v).detach().removeClass(l)),m.updateStatus("ready")):(m.updateStatus("error",n.tNotFound),o=c("<div>")),e.inlineElement=o):(m.updateStatus("ready"),m._parseMarkup(t,{},e),t)}}}),"ajax");c.magnificPopup.registerModule(E,{options:{settings:null,cursor:"mfp-ajax-cur",tError:"The content could not be loaded."},proto:{initAjax:function(){m.types.push(E),n=m.st.ajax.cursor,d(w+"."+E,t),d("BeforeChange."+E,t)},getAjax:function(o){n&&c(document.body).addClass(n),m.updateStatus("loading");var e=c.extend({url:o.src,success:function(e,t,n){e={data:e,xhr:n};u("ParseAjax",e),m.appendContent(c(e.data),E),o.finished=!0,i(),m._setFocus(),setTimeout(function(){m.wrap.addClass(T)},16),m.updateStatus("ready"),u("AjaxContentAdded")},error:function(){i(),o.finished=o.loadError=!0,m.updateStatus("error",m.st.ajax.tError.replace("%url%",o.src))}},m.st.ajax.settings);return m.req=c.ajax(e),""}}});var z;c.magnificPopup.registerModule("image",{options:{markup:'<div class="mfp-figure"><div class="mfp-close"></div><figure><div class="mfp-img"></div><figcaption><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></figcaption></figure></div>',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:"The image could not be loaded."},proto:{initImage:function(){var e=m.st.image,t=".image";m.types.push("image"),d(b+t,function(){"image"===m.currItem.type&&e.cursor&&c(document.body).addClass(e.cursor)}),d(w+t,function(){e.cursor&&c(document.body).removeClass(e.cursor),_.off("resize"+I)}),d("Resize"+t,m.resizeImage),m.isLowIE&&d("AfterChange",m.resizeImage)},resizeImage:function(){var e,t=m.currItem;t&&t.img&&m.st.image.verticalFit&&(e=0,m.isLowIE&&(e=parseInt(t.img.css("padding-top"),10)+parseInt(t.img.css("padding-bottom"),10)),t.img.css("max-height",m.wH-e))},_onImageHasSize:function(e){e.img&&(e.hasSize=!0,z&&clearInterval(z),e.isCheckingImgSize=!1,u("ImageHasSize",e),e.imgHidden)&&(m.content&&m.content.removeClass("mfp-loading"),e.imgHidden=!1)},findImageSize:function(t){function n(e){z&&clearInterval(z),z=setInterval(function(){0<i.naturalWidth?m._onImageHasSize(t):(200<o&&clearInterval(z),3===++o?n(10):40===o?n(50):100===o&&n(500))},e)}var o=0,i=t.img[0];n(1)},getImage:function(e,t){function n(){e&&(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("error",a.tError.replace("%url%",e.src))),e.hasSize=!0,e.loaded=!0,e.loadError=!0)}function o(){e&&(e.img[0].complete?(e.img.off(".mfploader"),e===m.currItem&&(m._onImageHasSize(e),m.updateStatus("ready")),e.hasSize=!0,e.loaded=!0,u("ImageLoadComplete")):++r<200?setTimeout(o,100):n())}var i,r=0,a=m.st.image,s=t.find(".mfp-img");return s.length&&((i=document.createElement("img")).className="mfp-img",e.el&&e.el.find("img").length&&(i.alt=e.el.find("img").attr("alt")),e.img=c(i).on("load.mfploader",o).on("error.mfploader",n),i.src=e.src,s.is("img")&&(e.img=e.img.clone()),0<(i=e.img[0]).naturalWidth?e.hasSize=!0:i.width||(e.hasSize=!1)),m._parseMarkup(t,{title:function(e){if(e.data&&void 0!==e.data.title)return e.data.title;var t=m.st.image.titleSrc;if(t){if("function"==typeof t)return t.call(m,e);if(e.el)return e.el.attr(t)||""}return""}(e),img_replaceWith:e.img},e),m.resizeImage(),e.hasSize?(z&&clearInterval(z),e.loadError?(t.addClass("mfp-loading"),m.updateStatus("error",a.tError.replace("%url%",e.src))):(t.removeClass("mfp-loading"),m.updateStatus("ready"))):(m.updateStatus("loading"),e.loading=!0,e.hasSize||(e.imgHidden=!0,t.addClass("mfp-loading"),m.findImageSize(e))),t}}});function O(e){var t;m.currTemplate[L]&&(t=m.currTemplate[L].find("iframe")).length&&(e||(t[0].src="//about:blank"),m.isIE8)&&t.css("display",e?"block":"none")}function M(e){var t=m.items.length;return t-1<e?e-t:e<0?t+e:e}function D(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)}c.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(e){return e.is("img")?e:e.find("img")}},proto:{initZoom:function(){var e,t,n,o,i,r,a=m.st.zoom,s=".zoom";a.enabled&&m.supportsTransition&&(t=a.duration,n=function(e){var e=e.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),t="all "+a.duration/1e3+"s "+a.easing,n={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},o="transition";return n["-webkit-"+o]=n["-moz-"+o]=n["-o-"+o]=n[o]=t,e.css(n),e},o=function(){m.content.css("visibility","visible")},d("BuildControls"+s,function(){m._allowZoom()&&(clearTimeout(i),m.content.css("visibility","hidden"),(e=m._getItemToZoom())?((r=n(e)).css(m._getOffset()),m.wrap.append(r),i=setTimeout(function(){r.css(m._getOffset(!0)),i=setTimeout(function(){o(),setTimeout(function(){r.remove(),e=r=null,u("ZoomAnimationEnded")},16)},t)},16)):o())}),d(F+s,function(){if(m._allowZoom()){if(clearTimeout(i),m.st.removalDelay=t,!e){if(!(e=m._getItemToZoom()))return;r=n(e)}r.css(m._getOffset(!0)),m.wrap.append(r),m.content.css("visibility","hidden"),setTimeout(function(){r.css(m._getOffset())},16)}}),d(w+s,function(){m._allowZoom()&&(o(),r&&r.remove(),e=null)}))},_allowZoom:function(){return"image"===m.currItem.type},_getItemToZoom:function(){return!!m.currItem.hasSize&&m.currItem.img},_getOffset:function(e){var e=e?m.currItem.img:m.st.zoom.opener(m.currItem.el||m.currItem),t=e.offset(),n=parseInt(e.css("padding-top"),10),o=parseInt(e.css("padding-bottom"),10),e=(t.top-=c(window).scrollTop()-n,{width:e.width(),height:(P?e.innerHeight():e[0].offsetHeight)-o-n});return(B=void 0===B?void 0!==document.createElement("p").style.MozTransform:B)?e["-moz-transform"]=e.transform="translate("+t.left+"px,"+t.top+"px)":(e.left=t.left,e.top=t.top),e}}});var B,L="iframe",H=(c.magnificPopup.registerModule(L,{options:{markup:'<div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" src="//about:blank" frameborder="0" allowfullscreen></iframe></div>',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){m.types.push(L),d("BeforeChange",function(e,t,n){t!==n&&(t===L?O():n===L&&O(!0))}),d(w+"."+L,function(){O()})},getIframe:function(e,t){var n=e.src,o=m.st.iframe,i=(c.each(o.patterns,function(){if(-1<n.indexOf(this.index))return this.id&&(n="string"==typeof this.id?n.substr(n.lastIndexOf(this.id)+this.id.length,n.length):this.id.call(this,n)),n=this.src.replace("%id%",n),!1}),{});return o.srcAction&&(i[o.srcAction]=n),m._parseMarkup(t,i,e),m.updateStatus("ready"),t}}}),c.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'<button title="%title%" type="button" class="mfp-arrow mfp-arrow-%dir%"></button>',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%",langDir:null,loop:!0},proto:{initGallery:function(){var r=m.st.gallery,e=".mfp-gallery";if(m.direction=!0,!r||!r.enabled)return!1;r.langDir||(r.langDir=document.dir||"ltr"),h+=" mfp-gallery",d(b+e,function(){r.navigateByImgClick&&m.wrap.on("click"+e,".mfp-img",function(){if(1<m.items.length)return m.next(),!1}),g.on("keydown"+e,function(e){37===e.keyCode?"rtl"===r.langDir?m.next():m.prev():39===e.keyCode&&("rtl"===r.langDir?m.prev():m.next())}),m.updateGalleryButtons()}),d("UpdateStatus"+e,function(){m.updateGalleryButtons()}),d("UpdateStatus"+e,function(e,t){t.text&&(t.text=D(t.text,m.currItem.index,m.items.length))}),d(C+e,function(e,t,n,o){var i=m.items.length;n.counter=1<i?D(r.tCounter,o.index,i):""}),d("BuildControls"+e,function(){var e,t,n,o,i;1<m.items.length&&r.arrows&&!m.arrowLeft&&(t="rtl"===r.langDir?(o=r.tNext,e=r.tPrev,i="next","prev"):(o=r.tPrev,e=r.tNext,i="prev","next"),n=r.arrowMarkup,o=m.arrowLeft=c(n.replace(/%title%/gi,o).replace(/%action%/gi,i).replace(/%dir%/gi,"left")).addClass(k),i=m.arrowRight=c(n.replace(/%title%/gi,e).replace(/%action%/gi,t).replace(/%dir%/gi,"right")).addClass(k),"rtl"===r.langDir?(m.arrowNext=o,m.arrowPrev=i):(m.arrowNext=i,m.arrowPrev=o),o.on("click",function(){"rtl"===r.langDir?m.next():m.prev()}),i.on("click",function(){"rtl"===r.langDir?m.prev():m.next()}),m.container.append(o.add(i)))}),d(j+e,function(){m._preloadTimeout&&clearTimeout(m._preloadTimeout),m._preloadTimeout=setTimeout(function(){m.preloadNearbyImages(),m._preloadTimeout=null},16)}),d(w+e,function(){g.off(e),m.wrap.off("click"+e),m.arrowRight=m.arrowLeft=null})},next:function(){var e=M(m.index+1);if(!m.st.gallery.loop&&0===e)return!1;m.direction=!0,m.index=e,m.updateItemHTML()},prev:function(){var e=m.index-1;if(!m.st.gallery.loop&&e<0)return!1;m.direction=!1,m.index=M(e),m.updateItemHTML()},goTo:function(e){m.direction=e>=m.index,m.index=e,m.updateItemHTML()},preloadNearbyImages:function(){for(var e=m.st.gallery.preload,t=Math.min(e[0],m.items.length),n=Math.min(e[1],m.items.length),o=1;o<=(m.direction?n:t);o++)m._preloadItem(m.index+o);for(o=1;o<=(m.direction?t:n);o++)m._preloadItem(m.index-o)},_preloadItem:function(e){var t;e=M(e),m.items[e].preloaded||((t=m.items[e]).parsed||(t=m.parseEl(e)),u("LazyLoad",t),"image"===t.type&&(t.img=c('<img class="mfp-img" />').on("load.mfploader",function(){t.hasSize=!0}).on("error.mfploader",function(){t.hasSize=!0,t.loadError=!0,u("LazyLoadError",t)}).attr("src",t.src)),t.preloaded=!0)},updateGalleryButtons:function(){m.st.gallery.loop||"object"!=typeof m.arrowPrev||null===m.arrowPrev||(0===m.index?m.arrowPrev.hide():m.arrowPrev.show(),m.index===m.items.length-1?m.arrowNext.hide():m.arrowNext.show())}}}),"retina");c.magnificPopup.registerModule(H,{options:{replaceSrc:function(e){return e.src.replace(/\.\w+$/,function(e){return"@2x"+e})},ratio:1},proto:{initRetina:function(){var n,o;1<window.devicePixelRatio&&(n=m.st.retina,o=n.ratio,1<(o=isNaN(o)?o():o))&&(d("ImageHasSize."+H,function(e,t){t.img.css({"max-width":t.img[0].naturalWidth/o,width:"100%"})}),d("ElementParse."+H,function(e,t){t.src=n.replaceSrc(t,o)}))}}}),r()});!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(m){var i=/\+/g;function x(e){return v.raw?e:encodeURIComponent(e)}function g(e,n){var o=v.raw?e:function(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e=decodeURIComponent(e.replace(i," ")),v.json?JSON.parse(e):e}catch(e){}}(e);return m.isFunction(n)?n(o):o}var v=m.cookie=function(e,n,o){if(1<arguments.length&&!m.isFunction(n)){if("number"==typeof(o=m.extend({},v.defaults,o)).expires){var i=o.expires,r=o.expires=new Date;r.setMilliseconds(r.getMilliseconds()+864e5*i)}return document.cookie=[x(e),"=",(t=n,x(v.json?JSON.stringify(t):String(t))),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("")}for(var t,c,u=e?void 0:{},s=document.cookie?document.cookie.split("; "):[],a=0,d=s.length;a<d;a++){var p=s[a].split("="),f=(c=p.shift(),v.raw?c:decodeURIComponent(c)),l=p.join("=");if(e===f){u=g(l,n);break}e||void 0===(l=g(l))||(u[f]=l)}return u};v.defaults={},m.removeCookie=function(e,n){return m.cookie(e,"",m.extend({},n,{expires:-1})),!m.cookie(e)}});!function(e){var t={};function n(o){if(t[o])return t[o].exports;var a=t[o]={i:o,l:!1,exports:{}};return e[o].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(o,a,function(t){return e[t]}.bind(null,a));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=17)}({17:function(e,t){var n=function(e,t){var n=t(".eael-img-comp-container",e),o={default_offset_pct:n.data("offset")||.7,orientation:n.data("orientation")||"horizontal",before_label:n.data("before_label")||"Before",after_label:n.data("after_label")||"After",no_overlay:"yes"!=n.data("overlay"),move_slider_on_hover:"yes"==n.data("onhover"),move_with_handle_only:!0,click_to_move:"yes"==n.data("onclick")},a=t(".eael-advance-tabs"),r=a.find(".eael-tabs-nav li"),i=a.find(".eael-tabs-content > div");r.on("click",(function(){var e=i.eq(t(this).index());t(e).find(".eael-img-comp-container").length&&n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var e=n.closest(".elementor-widget-container");e.length<1&&(e=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o)}))})),n.imagesLoaded().done((function(){n.find("div").remove(),n.find("img").removeClass("twentytwenty-before twentytwenty-after").removeAttr("style");var a=n.closest(".elementor-widget-container");a.length<1&&(a=n.closest(".elementor-widget-eael-image-comparison")),n.eatwentytwenty(o);var r=e.find(".eael-img-comp-toggle-btns");if(r.length){var i=r.find(".eael-img-comp-toggle-btn");i.on("click",(function(){i.removeClass("active"),t(this).addClass("active");var e=t(this).data("state"),o=n.data("eatwentytwenty"),a=n.find(".twentytwenty-handle").offset(),l=n.offset(),d=a.left-l.left,f=a.top-l.top,c=d+l.left,s=f+l.top;o.animateSlider(e,o.getSliderPercentage(c,s),r.data("step")),1===t(this).index()?r.addClass("after-active"):r.removeClass("after-active")}))}}))};jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-image-comparison.default",n)}))}});!function(e){var a={};function o(i){if(a[i])return a[i].exports;var t=a[i]={i:i,l:!1,exports:{}};return e[i].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.m=e,o.c=a,o.d=function(e,a,i){o.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:i})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,a){if(1&a&&(e=o(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(o.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var t in e)o.d(i,t,function(a){return e[a]}.bind(null,t));return i},o.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(a,"a",a),a},o.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},o.p="",o(o.s=21)}({21:function(e,a){var o=function(e,a){var o=e.find(".eael-lightbox-wrapper").eq(0),i=void 0!==o.data("main-class")?o.data("main-class"):"",t=void 0!==o.data("popup-layout")?o.data("popup-layout"):"",l="yes"===o.data("close_button"),n=void 0!==o.data("effect")?o.data("effect"):"",r=void 0!==o.data("type")?o.data("type"):"",d=void 0!==o.data("iframe-class")?o.data("iframe-class"):"",s=void 0!==o.data("src")?o.data("src"):"",c=void 0!==o.data("trigger-element")?o.data("trigger-element"):"",p=""!=o.data("delay")?o.data("delay"):0,f=void 0!==o.data("trigger")?o.data("trigger"):"",m=void 0!==o.data("lightbox-id")?o.data("lightbox-id"):"",u=void 0!==o.data("display-after")?o.data("display-after"):"",v="yes"===o.data("esc_exit"),g="yes"===o.data("click_exit");if(i+=" "+t+" "+n,"eael-lightbox-popup-fullscreen"==t){var b=a(window).height()-20;a(".eael-lightbox-container.content-type-image-now").css({"max-height":b+"px","margin-top":"10px"})}if("eael_lightbox_trigger_exit_intent"==f){0===u&&a.removeCookie(m,{path:"/"}),window.addEventListener("mouseout",(function(e){e.clientY<0&&!a.cookie(m)&&(a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,removalDelay:500,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m))}),!1)}else"eael_lightbox_trigger_pageload"==f?(0===u&&a.removeCookie(m,{path:"/"}),a.cookie(m)||setTimeout((function(){a.magnificPopup.open({items:{src:s},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},type:r,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}}}),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open"),u>0?a.cookie(m,u,{expires:u,path:"/"}):a.removeCookie(m)}),p)):(void 0!==c&&""!==c||(c=".eael-modal-popup-link"),e.on("keydown",c,(function(e){13!==e.which&&32!==e.which||a(this).trigger("click")})),a(c).magnificPopup({image:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-figure"><div class="mfp-close"></div><div class="mfp-img"></div><div class="mfp-bottom-bar"><div class="mfp-title"></div><div class="mfp-counter"></div></div></div></div></div>'},iframe:{markup:'<div class="'+d+'"><div class="modal-popup-window-inner"><div class="mfp-iframe-scaler"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div></div></div>'},items:{src:s,type:r},removalDelay:"animated "===n?0:500,showCloseBtn:l,enableEscapeKey:v,closeOnBgClick:g,mainClass:i,callbacks:{open:function(){a("body").addClass("eael-lightbox-popup-open"),eael.hooks.doAction("ea-lightbox-triggered",s),a(document).trigger("eael-lightbox-open")},close:function(){a("body").removeClass("eael-lightbox-popup-open")}},type:"inline"}));a.extend(!0,a.magnificPopup.defaults,{tClose:"Close"})};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelLightboxLoad"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-lightbox.default",o)}))}});!function(e){var t={};function a(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,a),n.l=!0,n.exports}a.m=e,a.c=t,a.d=function(e,t,o){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(a.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(o,n,function(t){return e[t]}.bind(null,n));return o},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="",a(a.s=0)}([function(e,t){eael.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",(function(e,t){var a=window.location.hash.substr(1);a="safari"===a?"eael-safari":a;var o=!1,n=e.find(".eael-adv-accordion"),i=e.find(".eael-accordion-header"),s=n.data("accordion-type"),r=n.data("toogle-speed"),c=n.data("custom-id-offset"),d=n.data("scroll-on-click"),l=n.data("scroll-speed");(a||"yes"===d)&&i.each((function(){"yes"===d&&t(this).attr("data-scroll",t(this).offset().top),a&&t(this).attr("id")==a&&(o=!0,t(this).addClass("show-this active"),t(this).next().slideDown(r))})),!1===o&&i.each((function(){t(this).hasClass("active-default")&&(t(this).addClass("show-this active"),t(this).next().slideDown(r))})),i.unbind("click"),i.click((function(e){e.preventDefault();var a=t(this);if(setTimeout((function(e){t(".eael-accordion-header").removeClass("triggered")}),70),!a.hasClass("triggered")){if("accordion"===s?a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.parent().parent().find(".eael-accordion-header").removeClass("show-this active"),a.parent().parent().find(".eael-accordion-content").slideUp(r),a.toggleClass("show-this active"),a.next().slideToggle(r)):a.hasClass("show-this")?(a.removeClass("show-this active"),a.next().slideUp(r)):(a.addClass("show-this active"),a.next().slideDown(r)),"yes"===d&&a.hasClass("active")){var o=c?parseFloat(c):0;t("html, body").animate({scrollTop:t(this).data("scroll")-o},l)}setTimeout((function(){a.addClass("triggered"),eael.hooks.doAction("widgets.reinit",a.parent()),window.eaelPreventResizeOnClick=!0,eael.hooks.doAction("ea-advanced-accordion-triggered",a.next())}),50)}})),e.on("keydown",".eael-accordion-header",(function(e){13!==e.which&&32!==e.which||t(this).trigger("click")}))}))}))}]);!function(e){var t={};function i(n){if(t[n])return t[n].exports;var r=t[n]={i:n,l:!1,exports:{}};return e[n].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)i.d(n,r,function(t){return e[t]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=1)}([,function(e,t){var i=function(e,t){var i=e[0];if(i){i.querySelectorAll("[data-duration]").forEach((function(e){var t=e.getAttribute("data-duration");e.style.setProperty("--accordion-duration",t+"s")}));var n=i.querySelectorAll(".eael-accordion_media-list"),r=i.querySelectorAll(".eael-accordion_media-image"),o=0;n.forEach((function(e,t){e.addEventListener("click",(function(){!function(e){if(e!==o){var t=n[o];t.classList.remove("active");var i=t.querySelector(".eael-accordion_media-description");i.style.height=i.scrollHeight+"px",i.offsetHeight,i.style.height="0";var a=n[e];a.classList.add("active");var c=a.querySelector(".eael-accordion_media-description");c.style.visibility="hidden",c.style.height="auto";var l=c.scrollHeight+"px";c.style.height="0",c.style.visibility="visible",requestAnimationFrame((function(){c.style.height=l})),r.forEach((function(e){return e.classList.remove("active")})),r[e].classList.add("active"),o=e}}(t)}))})),window.location.href.includes("elementor")&&a(),"loading"===document.readyState?window.addEventListener("load",(function(){a()})):setTimeout((function(){a()}),0)}function a(){var e=n[0];if(e&&e.classList.contains("active")){var t=e.querySelector(".eael-accordion_media-description");t.style.visibility="hidden",t.style.height="auto",requestAnimationFrame((function(){requestAnimationFrame((function(){var e=t.scrollHeight+"px";t.style.height="0",t.style.visibility="visible",requestAnimationFrame((function(){t.style.height=e}))}))}))}}};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("advancedAccordion"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-accordion.default",i)}))}]);!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}({9:function(e,t){var n=function(e,t){var n=e.find(".eael-creative-button-wrapper").find(".eael-creative-button");n.hasClass("csvg-use-color")&&n.find("svg").removeAttr("fill").find("*").removeAttr("fill")};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelCreativeButton"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-creative-button.default",n)}))}});!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}({9:function(e,t){var n=function(e,t){var n=e.find(".eael-creative-button-wrapper").find(".eael-creative-button");n.hasClass("csvg-use-color")&&n.find("svg").removeAttr("fill").find("*").removeAttr("fill")};jQuery(window).on("elementor/frontend/init",(function(){if(eael.elementStatusCheck("eaelCreativeButton"))return!1;elementorFrontend.hooks.addAction("frontend/element_ready/eael-creative-button.default",n)}))}});</script><script data-cfasync="false">
gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 4) {if(typeof Placeholders != 'undefined'){
                        Placeholders.enable();
                    }window.gp_advanced_phone_field_4_4 = new GPAdvancedPhoneField( {"fieldId":4,"formId":4,"defaultCountry":"auto","preferredCountries":["US"],"countriesAction":"exclude","countries":["AF","IN","PK"]} );} } );jQuery(document).on('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } );
</script>
<script data-cfasync="false">
gform.initializeOnLoaded( function() {jQuery(document).trigger("gform_pre_post_render", [{ formId: "4", currentPage: "1", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( "gform_wrapper_4" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( "span" );            visibilitySpan.id = "gform_visibility_test_4";            gformWrapperDiv.insertAdjacentElement( "afterend", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( "gform_visibility_test_4" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, 1 );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );
</script>

</body>
</html>
