{"id":35,"date":"2022-06-12T07:38:58","date_gmt":"2022-06-12T07:38:58","guid":{"rendered":"https:\/\/yogaschoolcostarica.com\/index.php\/tyapply\/"},"modified":"2022-06-12T07:38:58","modified_gmt":"2022-06-12T07:38:58","slug":"tyapply","status":"publish","type":"page","link":"https:\/\/yogaschoolcostarica.com\/index.php\/tyapply\/","title":{"rendered":"TY-Apply"},"content":{"rendered":"<article class=\"sections\" data-page-sections=\"6170c4685eeef15f3062978b\" id=\"sections\">\n<section\n  data-test=\"page-section\"\n  \n  data-section-theme=\"black\"\n  class='page-section\n    \n      layout-engine-section\n    \n    background-width--full-bleed\n    \n      section-height--small\n    \n    \n      content-width--medium\n    \n    horizontal-alignment--center\n    vertical-alignment--middle\n    \n       has-background\n    \n    \n    black'\n  \n  data-section-id=\"6170c4685eeef15f3062978e\"\n  \n  data-controller=\"SectionWrapperController\"\n  data-current-styles=\"{\n  &quot;backgroundImage&quot;: {\n    &quot;id&quot;: &quot;6170ca0ae18ac90acfe7fc1c&quot;,\n    &quot;recordType&quot;: 2,\n    &quot;addedOn&quot;: 1634781706445,\n    &quot;updatedOn&quot;: 1634785043299,\n    &quot;workflowState&quot;: 1,\n    &quot;publishOn&quot;: 1634781706445,\n    &quot;authorId&quot;: &quot;5bf8cd617e5992d0edb8f263&quot;,\n    &quot;systemDataId&quot;: &quot;b9b01c4b-4ff7-4da9-8117-f09622b3e208&quot;,\n    &quot;systemDataVariants&quot;: &quot;2302x1536,100w,300w,500w,750w,1000w,1500w&quot;,\n    &quot;systemDataSourceType&quot;: &quot;JPG&quot;,\n    &quot;filename&quot;: &quot;IMG_0052.JPG&quot;,\n    &quot;mediaFocalPoint&quot;: {\n      &quot;x&quot;: 0.49679371764362057,\n      &quot;y&quot;: 0.3440343950402268,\n      &quot;source&quot;: 3\n    },\n    &quot;colorData&quot;: {\n      &quot;topLeftAverage&quot;: &quot;7b9daa&quot;,\n      &quot;topRightAverage&quot;: &quot;8cbed9&quot;,\n      &quot;bottomLeftAverage&quot;: &quot;3d9cb8&quot;,\n      &quot;bottomRightAverage&quot;: &quot;0a6891&quot;,\n      &quot;centerAverage&quot;: &quot;66562b&quot;,\n      &quot;suggestedBgColor&quot;: &quot;6b757e&quot;\n    },\n    &quot;urlId&quot;: &quot;hxwhusz0gui1hij055pky3wikyxr0v&quot;,\n    &quot;title&quot;: &quot;&quot;,\n    &quot;body&quot;: null,\n    &quot;likeCount&quot;: 0,\n    &quot;commentCount&quot;: 0,\n    &quot;publicCommentCount&quot;: 0,\n    &quot;commentState&quot;: 2,\n    &quot;unsaved&quot;: false,\n    &quot;author&quot;: {\n      &quot;id&quot;: &quot;5bf8cd617e5992d0edb8f263&quot;,\n      &quot;displayName&quot;: &quot;Mantra Yoga&quot;,\n      &quot;firstName&quot;: &quot;Mantra&quot;,\n      &quot;lastName&quot;: &quot;Yoga&quot;,\n      &quot;websiteUrl&quot;: &quot;https:\/\/mantrayogameditation.org&quot;,\n      &quot;bio&quot;: &quot;&lt;p&gt;Mantra Yoga &amp;amp; Meditation School&lt;\\\/p&gt;&quot;\n    },\n    &quot;assetUrl&quot;: &quot;https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG&quot;,\n    &quot;contentType&quot;: &quot;image\/jpeg&quot;,\n    &quot;items&quot;: [ ],\n    &quot;pushedServices&quot;: { },\n    &quot;pendingPushedServices&quot;: { },\n    &quot;originalSize&quot;: &quot;2302x1536&quot;,\n    &quot;recordTypeLabel&quot;: &quot;image&quot;\n  },\n  &quot;imageOverlayOpacity&quot;: 0.25,\n  &quot;backgroundWidth&quot;: &quot;background-width--full-bleed&quot;,\n  &quot;sectionHeight&quot;: &quot;section-height--small&quot;,\n  &quot;customSectionHeight&quot;: 85,\n  &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--center&quot;,\n  &quot;verticalAlignment&quot;: &quot;vertical-alignment--middle&quot;,\n  &quot;contentWidth&quot;: &quot;content-width--medium&quot;,\n  &quot;sectionTheme&quot;: &quot;black&quot;,\n  &quot;sectionAnimation&quot;: &quot;none&quot;,\n  &quot;backgroundMode&quot;: &quot;image&quot;,\n  &quot;imageEffect&quot;: &quot;none&quot;\n}\"\n  data-animation=\"none\"\n   \n  \n    \n  \n  \n><\/p>\n<div class=\"section-background\">\n<p><script>\n  \"use strict\";<\/p>\n<p>  var positionImage = function positionImage(imageEl) {\n    var imageDimensions = imageEl.dataset.imageDimensions.split('x');\n    var originalWidth = imageDimensions[0];\n    var originalHeight = imageDimensions[1];\n    var focalPoint = imageEl.dataset.imageFocalPoint.split(',');\n    var focalPointX = focalPoint[0];\n    var focalPointY = focalPoint[1];\n    var parentNode = imageEl.parentNode;<\/p>\n<p>    var scale = function () {\n      var imageRatio = originalWidth \/ originalHeight;\n      var parentClientSize = {\n        height: parentNode.clientHeight,\n        width: parentNode.clientWidth\n      };\n      var parentRatio = parentClientSize.width \/ parentClientSize.height;<\/p>\n<p>      if (imageRatio > parentRatio) {\n        return parentClientSize.height \/ originalHeight;\n      }<\/p>\n<p>      return parentClientSize.width \/ originalWidth;\n    }();<\/p>\n<p>    var getRelativeOffset = function getRelativeOffset() {\n      var targetWidth = Math.ceil(originalWidth * scale);\n      var targetHeight = Math.ceil(originalHeight * scale);\n      var parentDimensionWidth = parentNode.offsetWidth;\n      var parentDimensionHeight = parentNode.offsetHeight;\n      var overflowWidth = targetWidth - parentDimensionWidth;\n      var overflowHeight = targetHeight - parentDimensionHeight;\n      var valueX;<\/p>\n<p>      if (overflowWidth === 0) {\n        valueX = focalPointX;\n      } else {\n        valueX = Math.max(Math.min(targetWidth * focalPointX - parentDimensionWidth * 0.5, overflowWidth), 0) \/ overflowWidth;\n      }<\/p>\n<p>      var valueY;<\/p>\n<p>      if (overflowHeight === 0) {\n        valueY = focalPointY;\n      } else {\n        valueY = Math.max(Math.min(targetHeight * focalPointY - parentDimensionHeight * 0.5, overflowHeight), 0) \/ overflowHeight;\n      }<\/p>\n<p>      return {\n        valueX: valueX,\n        valueY: valueY\n      };\n    };<\/p>\n<p>    var relativeOffset = getRelativeOffset();\n    var valueX = relativeOffset.valueX;\n    var valueY = relativeOffset.valueY;\n    imageEl.style.objectPosition = \"\".concat(valueX * 100, \"% \").concat(valueY * 100, \"%\");\n  };\n<\/script><\/p>\n<p>  <img decoding=\"async\" alt=\"\"\n    \n    src=\"https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG\" data-image=\"https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG\" data-image-dimensions=\"2302x1536\" data-image-focal-point=\"0.49679371764362057,0.3440343950402268\" alt=\"IMG_0052.JPG\" \n    data-load=\"false\"\n    \n       srcset=\"https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=100w 100w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=300w 300w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=500w 500w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=750w 750w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=1000w 1000w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=1500w 1500w,https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/b9b01c4b-4ff7-4da9-8117-f09622b3e208\/IMG_0052.JPG?format=original 2500w\"\n      \n      sizes=\"(max-width: 799px) 200vw, 100vw\" \n      onLoad=\"positionImage(this); this.classList.add('loaded');\"\n      loading=\"lazy\"\n    \n  \/><\/p>\n<div class=\"section-background-overlay\" style=\"opacity: 0.25;\"><\/div>\n<\/p><\/div>\n<div\n    class=\"content-wrapper\"\n    style='\n      \n        \n      \n    '\n  ><\/p>\n<div\n      class=\"content\"\n      \n    ><\/p>\n<div class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\" id=\"page-section-6170c4685eeef15f3062978e\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\">\n<div class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\" id=\"block-dc471c4434ca536945ca\">\n<div class=\"sqs-block-content\">\n<h1 style=\"text-align:center;white-space:pre-wrap;\">Thank you for applying!<\/h1>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n<\/p><\/div>\n<\/section>\n<section\n  data-test=\"page-section\"\n  \n  data-section-theme=\"\"\n  class='page-section\n    \n      layout-engine-section\n    \n    background-width--full-bleed\n    \n      section-height--small\n    \n    \n      content-width--medium\n    \n    horizontal-alignment--center\n    vertical-alignment--middle\n    \n      \n    \n    \n    '\n  \n  data-section-id=\"6170d1d6e2dfef53149d977b\"\n  \n  data-controller=\"SectionWrapperController\"\n  data-current-styles=\"{\n  &quot;imageOverlayOpacity&quot;: 0.15,\n  &quot;backgroundWidth&quot;: &quot;background-width--full-bleed&quot;,\n  &quot;sectionHeight&quot;: &quot;section-height--small&quot;,\n  &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--center&quot;,\n  &quot;verticalAlignment&quot;: &quot;vertical-alignment--middle&quot;,\n  &quot;contentWidth&quot;: &quot;content-width--medium&quot;,\n  &quot;sectionTheme&quot;: &quot;&quot;,\n  &quot;sectionAnimation&quot;: &quot;none&quot;,\n  &quot;backgroundMode&quot;: &quot;image&quot;\n}\"\n  data-animation=\"none\"\n   \n  \n  \n><\/p>\n<div class=\"section-background\"><\/div>\n<div\n    class=\"content-wrapper\"\n    style='\n      \n        \n      \n    '\n  ><\/p>\n<div\n      class=\"content\"\n      \n    ><\/p>\n<div class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\" id=\"page-section-6170d1d6e2dfef53149d977b\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\">\n<div class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\" id=\"block-39a581c0d1468c0c00dd\">\n<div class=\"sqs-block-content\">\n<h3 style=\"text-align:center;white-space:pre-wrap;\">You have taken the first step of an unforgettable experience!<\/h3>\n<p style=\"text-align:center;white-space:pre-wrap;\" class=\"\">In the next twenty-four hours, we will send you an email with all the information and what happens next. <\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n<\/p><\/div>\n<\/section>\n<section\n  data-test=\"page-section\"\n  \n  data-section-theme=\"black\"\n  class='page-section\n    \n      layout-engine-section\n    \n    background-width--full-bleed\n    \n      section-height--large\n    \n    \n      content-width--medium\n    \n    horizontal-alignment--center\n    vertical-alignment--middle\n    \n       has-background\n    \n    \n    black'\n  \n  data-section-id=\"6170d6c22bcfde501960aec2\"\n  \n  data-controller=\"SectionWrapperController\"\n  data-current-styles=\"{\n  &quot;backgroundImage&quot;: {\n    &quot;id&quot;: &quot;6170d6debe9f9846f98ebb28&quot;,\n    &quot;recordType&quot;: 2,\n    &quot;addedOn&quot;: 1634784990033,\n    &quot;updatedOn&quot;: 1634785043304,\n    &quot;workflowState&quot;: 1,\n    &quot;publishOn&quot;: 1634784990033,\n    &quot;authorId&quot;: &quot;5bf8cd617e5992d0edb8f263&quot;,\n    &quot;systemDataId&quot;: &quot;1634700006405-UX3LXAZG06F4AJUI1R6G&quot;,\n    &quot;systemDataVariants&quot;: &quot;3858x2572,100w,300w,500w,750w,1000w,1500w,2500w&quot;,\n    &quot;systemDataSourceType&quot;: &quot;JPG&quot;,\n    &quot;filename&quot;: &quot;SNY08870.jpg&quot;,\n    &quot;mediaFocalPoint&quot;: {\n      &quot;x&quot;: 0.5,\n      &quot;y&quot;: 0.5,\n      &quot;source&quot;: 3\n    },\n    &quot;colorData&quot;: {\n      &quot;topLeftAverage&quot;: &quot;edeef4&quot;,\n      &quot;topRightAverage&quot;: &quot;81886c&quot;,\n      &quot;bottomLeftAverage&quot;: &quot;434d35&quot;,\n      &quot;bottomRightAverage&quot;: &quot;615e32&quot;,\n      &quot;centerAverage&quot;: &quot;4a5a27&quot;,\n      &quot;suggestedBgColor&quot;: &quot;7c7753&quot;\n    },\n    &quot;urlId&quot;: &quot;dkjgy0v0k3j0b5vbldndcxrc9peft4&quot;,\n    &quot;title&quot;: &quot;&quot;,\n    &quot;body&quot;: null,\n    &quot;likeCount&quot;: 0,\n    &quot;commentCount&quot;: 0,\n    &quot;publicCommentCount&quot;: 0,\n    &quot;commentState&quot;: 2,\n    &quot;unsaved&quot;: false,\n    &quot;author&quot;: {\n      &quot;id&quot;: &quot;5bf8cd617e5992d0edb8f263&quot;,\n      &quot;displayName&quot;: &quot;Mantra Yoga&quot;,\n      &quot;firstName&quot;: &quot;Mantra&quot;,\n      &quot;lastName&quot;: &quot;Yoga&quot;,\n      &quot;websiteUrl&quot;: &quot;https:\/\/mantrayogameditation.org&quot;,\n      &quot;bio&quot;: &quot;&lt;p&gt;Mantra Yoga &amp;amp; Meditation School&lt;\\\/p&gt;&quot;\n    },\n    &quot;assetUrl&quot;: &quot;https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/1634700006405-UX3LXAZG06F4AJUI1R6G\/SNY08870.jpg&quot;,\n    &quot;contentType&quot;: &quot;image\/jpeg&quot;,\n    &quot;items&quot;: [ ],\n    &quot;pushedServices&quot;: { },\n    &quot;pendingPushedServices&quot;: { },\n    &quot;originalSize&quot;: &quot;3858x2572&quot;,\n    &quot;recordTypeLabel&quot;: &quot;image&quot;\n  },\n  &quot;imageOverlayOpacity&quot;: 0.15,\n  &quot;backgroundWidth&quot;: &quot;background-width--full-bleed&quot;,\n  &quot;sectionHeight&quot;: &quot;section-height--large&quot;,\n  &quot;customSectionHeight&quot;: 85,\n  &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--center&quot;,\n  &quot;verticalAlignment&quot;: &quot;vertical-alignment--middle&quot;,\n  &quot;contentWidth&quot;: &quot;content-width--medium&quot;,\n  &quot;sectionTheme&quot;: &quot;black&quot;,\n  &quot;sectionAnimation&quot;: &quot;none&quot;,\n  &quot;backgroundMode&quot;: &quot;image&quot;\n}\"\n  data-animation=\"none\"\n   \n  \n    \n  \n  \n><\/p>\n<div class=\"section-background\">\n<p>  <img decoding=\"async\" alt=\"\"\n    \n    src=\"https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/1634700006405-UX3LXAZG06F4AJUI1R6G\/SNY08870.jpg\" data-image=\"https:\/\/images.squarespace-cdn.com\/content\/v1\/61232bacf80bd42c117046e0\/1634700006405-UX3LXAZG06F4AJUI1R6G\/SNY08870.jpg\" data-image-dimensions=\"3858x2572\" data-image-focal-point=\"0.5,0.5\" alt=\"SNY08870.jpg\" \n    data-load=\"false\"\n    \n  \/><\/p>\n<div class=\"section-background-overlay\" style=\"opacity: 0.15;\"><\/div>\n<\/p><\/div>\n<div\n    class=\"content-wrapper\"\n    style='\n      \n        \n      \n    '\n  ><\/p>\n<div\n      class=\"content\"\n      \n    ><\/p>\n<div class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\" id=\"page-section-6170d6c22bcfde501960aec2\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\">\n<div class=\"sqs-block spacer-block sqs-block-spacer sized vsize-1\" data-block-type=\"21\" id=\"block-f1b635bc44b1265b52fe\">\n<div class=\"sqs-block-content\">&nbsp;<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n<\/p><\/div>\n<\/section>\n<\/article>\n","protected":false},"excerpt":{"rendered":"<p>Thank you for applying! You have taken the first step of an unforgettable experience! In the next twenty-four hours, we will send you an email with all the information and what happens next. &nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-global-header-display":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","footnotes":""},"class_list":["post-35","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/pages\/35","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/comments?post=35"}],"version-history":[{"count":0,"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/pages\/35\/revisions"}],"wp:attachment":[{"href":"https:\/\/yogaschoolcostarica.com\/index.php\/wp-json\/wp\/v2\/media?parent=35"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}