{"id":201,"date":"2019-10-09T00:41:55","date_gmt":"2019-10-09T00:41:55","guid":{"rendered":"https:\/\/yerlinramirez.com\/home-page\/?page_id=201"},"modified":"2024-05-15T00:29:13","modified_gmt":"2024-05-15T00:29:13","slug":"contact-me","status":"publish","type":"page","link":"https:\/\/yerlinramirez.com\/home-page\/contact-me\/","title":{"rendered":"Contact me"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"201\" class=\"elementor elementor-201\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1e3e68be elementor-section-stretched elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1e3e68be\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-502acf71\" data-id=\"502acf71\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5f2338e elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5f2338e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Get In Touch With Me<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d7a2fc elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7d7a2fc\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-111c5e4\" data-id=\"111c5e4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5946366 elementor-widget elementor-widget-html\" data-id=\"5946366\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<canvas><\/canvas>\n<script>\n\n\njQuery(document).ready(function($){\n\n\n\n\n$(function() {\n\n  \n  \/\/ default is varying levels of transparent white sparkles\n  $(\".sparkley:first\").sparkleh();\n  \n  \/\/ rainbow as a color generates random rainbow colros\n  \/\/ count determines number of sparkles\n  \/\/ overlap allows sparkles to migrate... watch out for other dom elements though.\n  $(\".sparkleyr\").sparkleh({\n    color: \"rainbow\",\n    count: 100,\n    overlap: 10\n  });\n  \n  \/\/ here we create fuscia sparkles\n  $(\".sparkleyf\").sparkleh({\n    count: 80,\n    color: [\"#ff0080\",\"#ff0080\",\"#0000FF\"]\n  });\n  \n  $(\"#button\").sparkleh({\n    count: 30,\n    overlap: 5\n  });\n  $(\"#button2\").sparkleh({\n    count: 40,\n    overlap: 5\n  });\n  $(\"#button3\").sparkleh({\n    count: 40,\n    overlap: 5\n  });\n  $(\"#button4\").sparkleh({\n    count: 40,\n    overlap: 5\n  });\n  $(\"#button5\").sparkleh({\n    count: 40,\n    overlap: 5\n  });\n  \n  $(\".sparkleyf-p\").sparkleh({\n    count: 20,\n    color: \"#00ff00\",\n    speed: 0.05\n  });\n  \n  \n  \/\/ an array can be passed, too for colours\n  \/\/ for an image, the image needs to be fully loaded to set\n  \/\/ the canvas to it's height\/width.\n  \/\/ speed allows us to control... the ... velocity \n  $(\"#image\").imagesLoaded( function() {\n    $(\".sparkley-img\").sparkleh({\n      count: 25,\n      color: [\"#f3edc4\",\"#253943\",\"#659e3f\"],\n    speed: 0.4\n    });\n  });\n\n\n});\n\n\n\n\n\n\n\n$.fn.sparkleh = function( options ) {\n    \n  return this.each( function(k,v) {\n    \n    var $this = $(v).css(\"position\",\"relative\");\n    \n    var settings = $.extend({\n      width: $this.outerWidth(),\n      height: $this.outerHeight(),\n      color: \"#FFFFFF\",\n      count: 30,\n      overlap: 0,\n      speed: 1\n    }, options );\n    \n    var sparkle = new Sparkle( $this, settings );\n    \n    $this.on({\n      \"mouseover focus\" : function(e) {\n        sparkle.over();\n      },\n      \"mouseout blur\" : function(e) {\n        sparkle.out();\n      }\n    });\n    \n  });\n  \n}\n\n\n\n\nfunction Sparkle( $parent, options ) {\n  this.options = options;\n  this.init( $parent );\n}\n\nSparkle.prototype = {\n  \n  \"init\" : function( $parent ) {\n    \n    var _this = this;\n    \n    this.$canvas = \n      $(\"<canvas>\")\n        .addClass(\"sparkle-canvas\")\n        .css({\n          position: \"absolute\",\n          top: \"-\"+_this.options.overlap+\"px\",\n          left: \"-\"+_this.options.overlap+\"px\",\n          \"pointer-events\": \"none\"\n        })\n        .appendTo($parent);\n    \n    this.canvas = this.$canvas[0];\n    this.context = this.canvas.getContext(\"2d\");\n    \n    this.sprite = new Image();\n    this.sprites = [0,6,13,20];\n    this.sprite.src = this.datauri;\n    \n    this.canvas.width = this.options.width + ( this.options.overlap * 2);\n    this.canvas.height = this.options.height + ( this.options.overlap * 2);\n    \n    \n    this.particles = this.createSparkles( this.canvas.width , this.canvas.height );\n    \n    this.anim = null;\n    this.fade = false;\n    \n  },\n  \n  \"createSparkles\" : function( w , h ) {\n    \n    var holder = [];\n    \n    for( var i = 0; i < this.options.count; i++ ) {\n      \n      var color = this.options.color;\n      \n      if( this.options.color == \"rainbow\" ) {\n        color = '#'+ ('000000' + Math.floor(Math.random()*16777215).toString(16)).slice(-6);\n      } else if( $.type(this.options.color) === \"array\" ) {\n        color = this.options.color[ Math.floor(Math.random()*this.options.color.length) ];\n      }\n\n      holder[i] = {\n        position: {\n          x: Math.floor(Math.random()*w),\n          y: Math.floor(Math.random()*h)\n        },\n        style: this.sprites[ Math.floor(Math.random()*4) ],\n        delta: {\n          x: Math.floor(Math.random() * 1000) - 500,\n          y: Math.floor(Math.random() * 1000) - 500\n        },\n        size: parseFloat((Math.random()*2).toFixed(2)),\n        color: color\n      };\n            \n    }\n    \n    return holder;\n    \n  },\n  \n  \"draw\" : function( time, fade ) {\n        \n    var ctx = this.context;\n    \n    ctx.clearRect( 0, 0, this.canvas.width, this.canvas.height );\n          \n    for( var i = 0; i < this.options.count; i++ ) {\n\n      var derpicle = this.particles[i];\n      var modulus = Math.floor(Math.random()*7);\n      \n      if( Math.floor(time) % modulus === 0 ) {\n        derpicle.style = this.sprites[ Math.floor(Math.random()*4) ];\n      }\n      \n      ctx.save();\n      ctx.globalAlpha = derpicle.opacity;\n      ctx.drawImage(this.sprite, derpicle.style, 0, 7, 7, derpicle.position.x, derpicle.position.y, 7, 7);\n      \n      if( this.options.color ) {  \n        \n        ctx.globalCompositeOperation = \"source-atop\";\n        ctx.globalAlpha = 0.5;\n        ctx.fillStyle = derpicle.color;\n        ctx.fillRect(derpicle.position.x, derpicle.position.y, 7, 7);\n        \n      }\n      \n      ctx.restore();\n\n    }\n    \n        \n  },\n  \n  \"update\" : function() {\n    \n     var _this = this;\n    \n     this.anim = window.requestAnimationFrame( function(time) {\n\n       for( var i = 0; i < _this.options.count; i++ ) {\n\n         var u = _this.particles[i];\n         \n         var randX = ( Math.random() > Math.random()*2 );\n         var randY = ( Math.random() > Math.random()*3 );\n         \n         if( randX ) {\n           u.position.x += ((u.delta.x * _this.options.speed) \/ 1500); \n         }        \n         \n         if( !randY ) {\n           u.position.y -= ((u.delta.y * _this.options.speed) \/ 800);\n         }\n\n         if( u.position.x > _this.canvas.width ) {\n           u.position.x = -7;\n         } else if ( u.position.x < -7 ) {\n           u.position.x = _this.canvas.width; \n         }\n\n         if( u.position.y > _this.canvas.height ) {\n           u.position.y = -7;\n           u.position.x = Math.floor(Math.random()*_this.canvas.width);\n         } else if ( u.position.y < -7 ) {\n           u.position.y = _this.canvas.height; \n           u.position.x = Math.floor(Math.random()*_this.canvas.width);\n         }\n         \n         if( _this.fade ) {\n           u.opacity -= 0.02;\n         } else {\n           u.opacity -= 0.005;\n         }\n         \n         if( u.opacity <= 0 ) {\n           u.opacity = ( _this.fade ) ? 0 : 1;\n         }\n         \n       }\n       \n       _this.draw( time );\n       \n       if( _this.fade ) {\n         _this.fadeCount -= 1;\n         if( _this.fadeCount < 0 ) {\n           window.cancelAnimationFrame( _this.anim );\n         } else {\n           _this.update(); \n         }\n       } else {\n         _this.update();\n       }\n       \n     });\n\n  },\n  \n  \"cancel\" : function() {\n    \n    this.fadeCount = 100;\n\n  },\n  \n  \"over\" : function() {\n    \n    window.cancelAnimationFrame( this.anim );\n    \n    for( var i = 0; i < this.options.count; i++ ) {\n      this.particles[i].opacity = Math.random();\n    }\n    \n    this.fade = false;\n    this.update();\n\n  },\n  \n  \"out\" : function() {\n    \n    this.fade = true;\n    this.cancel();\n    \n  },\n  \n  \n  \n  \"datauri\" : \"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAHCAYAAAD5wDa1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw\/eHBhY2tldCBiZWdpbj0i77u\/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozNDNFMzM5REEyMkUxMUUzOEE3NEI3Q0U1QUIzMTc4NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozNDNFMzM5RUEyMkUxMUUzOEE3NEI3Q0U1QUIzMTc4NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjM0M0UzMzlCQTIyRTExRTM4QTc0QjdDRTVBQjMxNzg2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjM0M0UzMzlDQTIyRTExRTM4QTc0QjdDRTVBQjMxNzg2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+jzOsUQAAANhJREFUeNqsks0KhCAUhW\/Sz6pFSc1AD9HL+OBFbdsVOKWLajH9EE7GFBEjOMxcUNHD8dxPBCEE\/DKyLGMqraoqcd4j0ChpUmlBEGCFRBzH2dbj5JycJAn90CEpy1J2SK4apVSM4yiKonhePYwxMU2TaJrm8BpykpWmKQ3D8FbX9SOO4\/tOhDEG0zRhGAZo2xaiKDLyPGeSyPM8sCxr868+WC\/mvu9j13XBtm1ACME8z7AsC\/R9r0fGOf+arOu6jUwS7l6tT\/B+xo+aDFRo5BykHfav3\/gSYAAtIdQ1IT0puAAAAABJRU5ErkJggg==\"\n\n}; \n\n\n\n\n\n\/\/ $('img.photo',this).imagesLoaded(myFunction)\n\/\/ execute a callback when all images have loaded.\n\/\/ needed because .load() doesn't work on cached images\n \n\/\/ mit license. paul irish. 2010.\n\/\/ webkit fix from Oren Solomianik. thx!\n \n\/\/ callback function is passed the last image to load\n\/\/   as an argument, and the collection as `this`\n \n \n$.fn.imagesLoaded = function(callback){\n  var elems = this.filter('img'),\n      len   = elems.length,\n      blank = \"data:image\/gif;base64,R0lGODlhAQABAIAAAAAAAP\/\/\/ywAAAAAAQABAAACAUwAOw==\";\n      \n  elems.bind('load.imgloaded',function(){\n      if (--len <= 0 && this.src !== blank){ \n        elems.unbind('load.imgloaded');\n        callback.call(elems,this); \n      }\n  }).each(function(){\n     \/\/ cached images don't fire load sometimes, so we reset src.\n     if (this.complete || this.complete === undefined){\n        var src = this.src;\n        \/\/ webkit hack from https:\/\/groups.google.com\/group\/jquery-dev\/browse_thread\/thread\/eee6ab7b2da50e1f\n        \/\/ data uri bypasses webkit log warning (thx doug jones)\n        this.src = blank;\n        this.src = src;\n     }  \n  }); \n \n  return this;\n};\n\n\n\n});\n\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-28cffb1 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"28cffb1\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a6d120a\" data-id=\"a6d120a\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5d08435 elementor-widget elementor-widget-heading\" data-id=\"5d08435\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Questions?<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e88d6f3 elementor-widget elementor-widget-heading\" data-id=\"e88d6f3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We'd love to hear from you!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ba3234 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"8ba3234\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/m.me\/YerlinRamirezCoach\" target=\"_blank\" id=\"button\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Chat With Me<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ddacfc9 elementor-shape-circle elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\" data-id=\"ddacfc9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-17ae524\" href=\"https:\/\/www.facebook.com\/YerlinRamirezCoach\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Facebook<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fab fa-facebook\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-847cd79\" href=\"https:\/\/twitter.com\/yerlinramirez\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Twitter<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fab fa-twitter\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-6cc2c8f\" href=\"https:\/\/www.instagram.com\/yerlinramirezt\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Instagram<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fab fa-instagram\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-342935e\" href=\"https:\/\/www.linkedin.com\/in\/yerlin-ramirez-90298229\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fab fa-linkedin\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-eb7766d\" href=\"https:\/\/www.youtube.com\/channel\/UC3uuLolcJgSufKme6gQRWVg?view_as=subscriber\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Youtube<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fab fa-youtube\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8efe3ff elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8efe3ff\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a086f13\" data-id=\"a086f13\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-b3f7922 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"b3f7922\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-58ebd3c\" data-id=\"58ebd3c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1710ced elementor-widget elementor-widget-image\" data-id=\"1710ced\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"682\" src=\"https:\/\/yerlinramirez.com\/wp-content\/uploads\/2019\/10\/WhatsApp-Image-2019-03-27-at-5.54.01-PM.jpeg\" class=\"attachment-large size-large wp-image-133\" alt=\"Contact Yerlin Ramirez\" srcset=\"https:\/\/yerlinramirez.com\/wp-content\/uploads\/2019\/10\/WhatsApp-Image-2019-03-27-at-5.54.01-PM.jpeg 1280w, https:\/\/yerlinramirez.com\/wp-content\/uploads\/2019\/10\/WhatsApp-Image-2019-03-27-at-5.54.01-PM-600x400.jpeg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-a976e48\" data-id=\"a976e48\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f56f197 elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"f56f197\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Contact\" aria-label=\"Contact\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"201\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"f56f197\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Contact me\" \/>\n\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"201\"\/>\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tName\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Name\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required elementor-mark-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tEmail\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Email\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-message\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\tMessage\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"4\" placeholder=\"Message\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Send<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Get In Touch With Me Questions? We&#8217;d love to hear from you! Chat With Me Facebook Twitter Instagram Linkedin Youtube<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-201","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/pages\/201","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/comments?post=201"}],"version-history":[{"count":22,"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/pages\/201\/revisions"}],"predecessor-version":[{"id":8108,"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/pages\/201\/revisions\/8108"}],"wp:attachment":[{"href":"https:\/\/yerlinramirez.com\/home-page\/wp-json\/wp\/v2\/media?parent=201"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}