{"id":17,"date":"2024-12-19T20:35:48","date_gmt":"2024-12-19T20:35:48","guid":{"rendered":"https:\/\/thelearnyway.com\/home\/"},"modified":"2025-12-09T16:23:09","modified_gmt":"2025-12-09T16:23:09","slug":"home","status":"publish","type":"page","link":"https:\/\/thelearnyway.com\/ar\/","title":{"rendered":"\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"17\" class=\"elementor elementor-17\" data-elementor-post-type=\"page\">\n\t\t\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-c258012 e-con-full e-flex e-con e-parent\" data-id=\"c258012\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;mountains&quot;}\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 1000 100\" preserveaspectratio=\"none\">\n\t<path class=\"elementor-shape-fill\" opacity=\"0.33\" d=\"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" opacity=\"0.66\" d=\"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" d=\"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-7aa3060 e-flex e-con-boxed e-con e-child\" data-id=\"7aa3060\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-717d8cf elementor-widget elementor-widget-html\" data-id=\"717d8cf\" 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<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n  <meta charset=\"UTF-8\" \/>\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\r\n  <title>Word Flip<\/title>\r\n  <style>\r\n    * {\r\n      box-sizing: border-box;\r\n      margin: 0;\r\n      padding: 0;\r\n    }\r\n\r\n    body {\r\n      font-family: Salsa;\r\n      background-color: ; \/* No override *\/\r\n      color: inherit; \/* No override *\/\r\n      overflow-x: hidden;\r\n    }\r\n\r\n    .flipping-wrapper {\r\n      display: flex;\r\n      justify-content: center;\r\n      align-items: center;\r\n      padding: 40px 20px;\r\n    }\r\n\r\n    .flipping-text {\r\n      font-size: 2.5rem;\r\n      font-weight: bold;\r\n      color: white; \/* Font only *\/\r\n    }\r\n\r\n    .flip-container {\r\n      display: inline-block;\r\n      position: relative;\r\n      width: 180px;\r\n      height: 40px;\r\n      perspective: 1000px;\r\n      margin-left: 12px;\r\n      vertical-align: middle;\r\n    }\r\n\r\n    .flip-word {\r\n      position: absolute;\r\n      width: 100%;\r\n      height: 100%;\r\n      text-align: center;\r\n      backface-visibility: hidden;\r\n      transform: rotateX(90deg);\r\n      opacity: 0;\r\n      transition: all 0.6s ease-in-out;\r\n    }\r\n\r\n    .flip-word.show {\r\n      transform: rotateX(0deg);\r\n      opacity: 1;\r\n    }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n\r\n  <div class=\"flipping-wrapper\">\r\n    <div class=\"flipping-text\">\r\n      <span class=\"static-text\"> <\/span>\r\n      <span class=\"flip-container\">\r\n        <span class=\"flip-word show\">\u062a\u0639\u0644\u0651\u0645<\/span>\r\n        <span class=\"flip-word\">\u062a\u0648\u0627\u0635\u0644<\/span>\r\n        <span class=\"flip-word\">\u062a\u0641\u0648\u0651\u0642<\/span>\r\n      <\/span>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <script>\r\n    const words = document.querySelectorAll(\".flip-word\");\r\n    let current = 0;\r\n\r\n    setInterval(() => {\r\n      words[current].classList.remove(\"show\");\r\n      current = (current + 1) % words.length;\r\n      words[current].classList.add(\"show\");\r\n    }, 2000);\r\n  <\/script>\r\n\r\n<\/body>\r\n<\/html>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5c42961 elementor-widget elementor-widget-heading\" data-id=\"5c42961\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u0639\u0644\u0649 \u062f\u0631\u0628 \u0644\u064a\u0631\u0646\u064a<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-0fdc0c2 e-flex e-con-boxed e-con e-parent\" data-id=\"0fdc0c2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-80e73c4 e-con-full e-flex e-con e-child\" data-id=\"80e73c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-cb54fb7 e-con-full e-flex e-con e-child\" data-id=\"cb54fb7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-621aafd e-con-full e-flex e-con e-child\" data-id=\"621aafd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-c32b135 e-flex e-con-boxed e-con e-parent\" data-id=\"c32b135\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-1e80ded e-con-full e-flex e-con e-child\" data-id=\"1e80ded\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-ad7d1ce e-con-full e-flex e-con e-child\" data-id=\"ad7d1ce\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-ed8ee6b e-con-full e-flex e-con e-child\" data-id=\"ed8ee6b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-af1303d elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"af1303d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-slideshare\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0641\u0640\u0635\u0648\u0644 \u0635\u0640\u0640\u063a\u064a\u0631\u0629\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t\u062a\u0642\u062f\u0645 \u0627\u0647\u062a\u0645\u0627\u0645\u0627\u064b \u0634\u062e\u0635\u064a\u0627\u064b \u0648\u062a\u0639\u0644\u0645\u0627\u064b \u0646\u0634\u0637\u0627\u064b\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-e006f97 e-con-full e-flex e-con e-child\" data-id=\"e006f97\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7efb54 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"b7efb54\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-puzzle-piece\" viewbox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0646\u0639\u0644\u0651\u0645\u0643 \u0628\u0644\u064f\u063a\u062a\u0643 \u0627\u0644\u0623\u0645\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t\u0644\u062a\u062c\u0631\u0628\u0629 \u0623\u0643\u062b\u0631 \u062d\u062f\u0633\u064a\u0629 \u0648\u062a\u0641\u0627\u0639\u0644\u064b\u0627\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-28fdf1e e-con-full e-flex e-con e-child\" data-id=\"28fdf1e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a342a1c elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"a342a1c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-cube\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h3 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u062f\u0631\u0648\u0633 \u062a\u0641\u0627\u0639\u0644\u064a\u0629\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h3>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-description\">\n\t\t\t\t\t\t\u062a\u0634\u062c\u0639 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0627\u0644\u0646\u0634\u0637\u0629 \u0648\u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a \u0627\u0644\u0641\u0648\u0631\u064a\u0629\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-bab02a5 e-flex e-con-boxed e-con e-parent\" data-id=\"bab02a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-7c57fc3 e-flex e-con-boxed e-con e-parent\" data-id=\"7c57fc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d42c583 uael-timeline--center uael-timeline-responsive-tablet uael-timeline-arrow-center elementor-widget elementor-widget-uael-timeline\" data-id=\"d42c583\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"uael-timeline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"uael-timeline-wrapper uael-timeline-node\">\n\t\n\t<div class=\"uael-timeline-shadow-yes uael-timeline-main\">\n\t\t<div class=\"uael-days\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-4e3257f uael-timeline-field animate-border out-view\">\n\t\t\t\t\t\t<div class=\"uael-timeline-widget uael-timeline-right\">\n\t\t\t\t\t\t\t<div class=\"uael-timeline-marker\">\n\t\t\t\t\t\t\t\t<span class=\"timeline-icon-new out-view-timeline-icon\">\n\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-bookmark\" viewbox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"><\/path><\/svg>\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"uael-day-new uael-day-right\">\n\t\t\t\t\t\t\t\t<div class=\"uael-events-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-events-inner-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-hide uael-date-inner\"><div class=\"inner-date-new\"><p >1<\/p><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-heading-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"uael-timeline-heading\">\u0627\u062e\u062a\u0631 \u062e\u0637\u0629 <\/h3> \t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-desc-content\"><div class=\"flex max-w-full flex-col flex-grow\"><div class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"acbc0f91-e08a-44ea-8ad8-132cd7cf3128\" data-message-model-slug=\"gpt-4o\"><div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\"><div class=\"markdown prose w-full break-words dark:prose-invert dark\"><div class=\"flex max-w-full flex-col flex-grow\"><div class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"09692550-274b-401c-8111-4b041bf8c50d\" data-message-model-slug=\"gpt-4o\"><div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\"><div class=\"markdown prose w-full break-words dark:prose-invert dark\"><p>\u2728 \u0627\u062e\u062a\u0631 \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u062a\u064a \u062a\u0646\u0627\u0633\u0628\u0643 \u0648\u062f\u0639\u0646\u0627 \u0646\u0628\u062f\u0623 \u0631\u062d\u0644\u062a\u0643! \ud83d\ude80\ud83d\ude0a<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div> \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-arrow\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-new\">\n\t\t\t\t\t\t\t\t\t<div class=\"uael-date-new\"><div class=\"inner-date-new\"><div >1<\/div><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-019cf13 uael-timeline-field animate-border out-view\">\n\t\t\t\t\t\t<div class=\"uael-timeline-widget uael-timeline-left\">\n\t\t\t\t\t\t\t<div class=\"uael-timeline-marker\">\n\t\t\t\t\t\t\t\t<span class=\"timeline-icon-new out-view-timeline-icon\">\n\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-bookmark\" viewbox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"><\/path><\/svg>\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"uael-day-new uael-day-left\">\n\t\t\t\t\t\t\t\t<div class=\"uael-events-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-events-inner-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-hide uael-date-inner\"><div class=\"inner-date-new\"><p >2<\/p><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-heading-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"uael-timeline-heading\">\ud83d\udcde\u0633\u0646\u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0643 \u0633\u0631\u064a\u0639\u0627\u064b\ud83d\ude0a<\/h3> \t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-desc-content\"><p>\u0644\u0644\u062f\u0631\u062f\u0634\u0629 \u0648\u062a\u0633\u062c\u064a\u0644\u0643 \u0641\u064a \u062f\u0648\u0631\u0629 \u062a\u062a\u0646\u0627\u0633\u0628 \u062a\u0645\u0627\u0645\u064b\u0627 \u0645\u0639 \u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a\u0643. \u0646\u062a\u0648\u0642 \u0644\u0628\u062f\u0621 \u0627\u0644\u0631\u062d\u0644\u0629 \u0645\u0639\u0643!\ud83c\udf89<\/p><\/div> \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-arrow\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-new\">\n\t\t\t\t\t\t\t\t\t<div class=\"uael-date-new\"><div class=\"inner-date-new\"><div >2<\/div><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-68c918a uael-timeline-field animate-border out-view\">\n\t\t\t\t\t\t<div class=\"uael-timeline-widget uael-timeline-right\">\n\t\t\t\t\t\t\t<div class=\"uael-timeline-marker\">\n\t\t\t\t\t\t\t\t<span class=\"timeline-icon-new out-view-timeline-icon\">\n\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-bookmark\" viewbox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z\"><\/path><\/svg>\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t<div class=\"uael-day-new uael-day-right\">\n\t\t\t\t\t\t\t\t<div class=\"uael-events-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-events-inner-new\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-hide uael-date-inner\"><div class=\"inner-date-new\"><p >3<\/p><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-heading-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"uael-timeline-heading\">\u0627\u0628\u062f\u0623 \u0631\u062d\u0644\u062a\u0643 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a\u0629 \u0645\u0639\u0646\u0627<\/h3> \t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-desc-content\"><p>\u0648\u0627\u0646\u0637\u0644\u0642 \u0641\u064a \u062f\u0631\u0648\u0633\u0643 \u0627\u0644\u062a\u0641\u0627\u0639\u0644\u064a\u0629 \u0648\u0627\u0644\u0645\u0645\u062a\u0639\u0629!\ud83d\udcda\ud83d\ude80<\/p><\/div> \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-arrow\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"uael-timeline-date-new\">\n\t\t\t\t\t\t\t\t\t<div class=\"uael-date-new\"><div class=\"inner-date-new\"><div >3<\/div><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"uael-timeline__line\">\n\t\t\t<div class=\"uael-timeline__line__inner\"><\/div>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-ef8fe37 e-flex e-con-boxed e-con e-parent\" data-id=\"ef8fe37\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-7a5f2cd e-con-full e-flex e-con e-child\" data-id=\"7a5f2cd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec82a49 elementor-widget elementor-widget-image\" data-id=\"ec82a49\" 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=\"848\" height=\"1000\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/RTLFAQ.webp\" class=\"attachment-large size-large wp-image-27257\" alt=\"\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/RTLFAQ.webp 848w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/RTLFAQ-254x300.webp 254w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/RTLFAQ-768x906.webp 768w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/RTLFAQ-10x12.webp 10w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/>\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<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-d1c8589 e-con-full e-flex e-con e-child\" data-id=\"d1c8589\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7651f38 align-at-right uael-faq-box-layout-yes elementor-widget elementor-widget-uael-faq\" data-id=\"7651f38\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"uael-faq.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div id='uael-faq-wrapper-124' class=\"uael-faq-wrapper\">\n\t\t\t\t<div class=\"uael-faq-container uael-faq-layout-accordion\" data-layout=\"accordion\" >\n\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"uael-accordion-098171e\" class=\"uael-faq-accordion\" role=\"tablist\">\n\t\t\t\t\t\t\t\t<div class= \"uael-accordion-title\" aria-expanded=\"false\" role=\"tab\">\n\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon uael-accordion-icon-right\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-closed\"><svg 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>\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-angle-up\" viewbox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<h4 class=\"uael-question-098171e uael-question-span\" tabindex=\"0\" id=\"uael-faq-1-6a0c7570a3d5f\">\u0643\u064a\u0641 \u062a\u062d\u062f\u062f\u0648\u0646 \u0645\u0633\u062a\u0648\u0627\u064a\u061f<\/h4>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"uael-accordion-content\" role=\"tabpanel\">\n\t\t\t\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t\t\t<span><p>\u0628\u0639\u062f \u0627\u062e\u062a\u064a\u0627\u0631\u0643 \u0627\u0644\u062e\u0637\u0629 \u0627\u0644\u062a\u064a \u062a\u0646\u0627\u0633\u0628\u0643\u060c \u0633\u0646\u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0643 \u0644\u0625\u062c\u0631\u0627\u0621 \u0627\u062e\u062a\u0628\u0627\u0631 \u062a\u0642\u064a\u064a\u0645. \u0633\u064a\u0633\u0627\u0639\u062f\u0646\u0627 \u0630\u0644\u0643 \u0641\u064a \u062a\u062d\u062f\u064a\u062f \u0645\u0633\u062a\u0648\u0627\u0643 \u0627\u0644\u062d\u0627\u0644\u064a\u060c \u0645\u0645\u0627 \u064a\u0636\u0645\u0646 \u0623\u0646\u0643 \u0645\u0633\u062c\u0644 \u0641\u064a \u0627\u0644\u062f\u0648\u0631\u0629 \u0627\u0644\u062a\u064a \u062a\u062a\u0646\u0627\u0633\u0628 \u0628\u0634\u0643\u0644 \u0645\u062b\u0627\u0644\u064a \u0645\u0639 \u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a\u0643 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a\u0629.<\/p><\/span>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"uael-accordion-d627c75\" class=\"uael-faq-accordion\" role=\"tablist\">\n\t\t\t\t\t\t\t\t<div class= \"uael-accordion-title\" aria-expanded=\"false\" role=\"tab\">\n\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon uael-accordion-icon-right\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-closed\"><svg 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>\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-angle-up\" viewbox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<h4 class=\"uael-question-d627c75 uael-question-span\" tabindex=\"0\" id=\"uael-faq-2-6a0c7570a6138\">\u0645\u0627\u0630\u0627 \u064a\u062d\u062f\u062b \u0628\u0639\u062f \u0623\u0646 \u0623\u062e\u062a\u0627\u0631 \u062e\u0637\u0629\u061f<\/h4>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"uael-accordion-content\" role=\"tabpanel\">\n\t\t\t\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t\t\t<span><p>\u0633\u0646\u0642\u0648\u0645 \u0628\u062a\u0633\u062c\u064a\u0644\u0643 \u0641\u064a \u0627\u0644\u062f\u0648\u0631\u0629 \u0627\u0644\u062a\u064a \u062a\u062a\u0646\u0627\u0633\u0628 \u0628\u0634\u0643\u0644 \u0645\u062b\u0627\u0644\u064a \u0645\u0639 \u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a\u0643 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u064a\u0629\u060c \u0645\u0628\u0627\u0634\u0631\u0629 \u0628\u0639\u062f \u0627\u062e\u062a\u064a\u0627\u0631\u0643 \u0644\u0644\u062e\u0637\u0629.<\/p><\/span>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"uael-accordion-98e7ee8\" class=\"uael-faq-accordion\" role=\"tablist\">\n\t\t\t\t\t\t\t\t<div class= \"uael-accordion-title\" aria-expanded=\"false\" role=\"tab\">\n\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon uael-accordion-icon-right\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-closed\"><svg 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>\n\t\t\t\t\t\t\t\t\t\t<span class=\"uael-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-angle-up\" viewbox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<h4 class=\"uael-question-98e7ee8 uael-question-span\" tabindex=\"0\" id=\"uael-faq-3-6a0c7570a619d\">\u0645\u062a\u0649 \u062a\u0628\u062f\u0623 \u062f\u0648\u0631\u062a\u064a\u061f<\/h4>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"uael-accordion-content\" role=\"tabpanel\">\n\t\t\t\t\t\t\t\t\t<span>\n\t\t\t\t\t\t\t\t\t<span><p>\u0633\u062a\u0628\u062f\u0623 \u062f\u0648\u0631\u062a\u0643 \u0628\u0639\u062f \u0625\u062a\u0645\u0627\u0645 \u0627\u062e\u062a\u0628\u0627\u0631 \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u060c \u0648\u0639\u0627\u062f\u0629 \u0645\u0627 \u062a\u0628\u062f\u0623 \u0641\u064a \u0623\u0648\u0644 \u064a\u0648\u0645 \u0645\u0646 \u0627\u0644\u0623\u0633\u0628\u0648\u0639 \u0627\u0644\u0642\u0627\u062f\u0645\u060c \u0625\u0644\u0627 \u0625\u0630\u0627 \u062a\u0628\u0642\u0649 \u0623\u0642\u0644 \u0645\u0646 \u062b\u0644\u0627\u062b\u0629 \u0623\u064a\u0627\u0645 \u0639\u0645\u0644 \u0641\u064a \u0627\u0644\u0623\u0633\u0628\u0648\u0639 \u0627\u0644\u062d\u0627\u0644\u064a \u0641\u0642\u062f \u064a\u0624\u062c\u0644 \u0627\u0644\u0644\u0649 \u0627\u0644\u0623\u0633\u0628\u0648\u0639 \u0627\u0644\u0630\u064a \u064a\u0644\u064a\u0647.<\/p><\/span>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-f77c2d9 e-con-full e-flex e-con e-parent\" data-id=\"f77c2d9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;mountains&quot;}\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 1000 100\" preserveaspectratio=\"none\">\n\t<path class=\"elementor-shape-fill\" opacity=\"0.33\" d=\"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" opacity=\"0.66\" d=\"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" d=\"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-62abdfd e-con-full e-flex e-con e-child\" data-id=\"62abdfd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-3980c26 e-con-full e-flex e-con e-child\" data-id=\"3980c26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d149f9c eael-pricing-content-align-center eael-pricing-button-align-center elementor-widget elementor-widget-eael-pricing-table\" data-id=\"d149f9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-pricing-table.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"eael-pricing style-1 eael-header-devider\">\n                    <div class=\"eael-pricing-item\">\n                <div class=\"header\">\n                    <h2 class=\"title\">\u0642\u0648\u0627\u0639\u062f \u0627\u0644\u0644\u063a\u0629<\/h2>\n                <\/div>\n                <div class=\"eael-pricing-tag\">\n                    <span class=\"price-tag\"><del class=\"original-price\">200<span class=\"price-currency\">SAR<\/span><\/del> <span class=\"sale-price\">125<span class=\"price-currency\">SAR<\/span>\n                <\/span><\/span><span class=\"price-period\">\/\u0641\u064a 5 \u0623\u064a\u0627\u0645<\/span>                <\/div>\n                <div class=\"body\">\n                            <ul>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-829e3bc\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >5 \u062f\u0631\u0648\u0633 \u062d\u064a\u0629 \u0645\u0628\u0627\u0634\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f468a47\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span data-content=\"full access to all recorded classes for 1 year\" class=\"eael-pricing-tooltip\" id=\"d149f9c1\" data-side=\"top\" data-trigger=\"click\" data-animation=\"grow\" data-animation_duration=\"300\" data-arrow=\"yes\" data-theme=\"shadow\">\u0648\u0635\u0648\u0644 \u0644\u0645\u062f\u0629 \u0633\u0646\u0629 \u2196<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-63227b4\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span data-content=\"This course includes the 5 most important grammar rules in the English language with their exercises.\" class=\"eael-pricing-tooltip\" id=\"d149f9c2\" data-side=\"top\" data-trigger=\"click\" data-animation=\"grow\" data-animation_duration=\"30\" data-arrow=\"yes\" data-theme=\"shadow\">\u0623\u0647\u0645 5 \u0642\u0648\u0627\u0639\u062f \u0646\u062d\u0648\u064a\u0629 \u2196<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f959a94\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0648\u0627\u062c\u0628\u0627\u062a \u064a\u0648\u0645\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-65a371f\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span data-content=\"You will learn to construct basic simple sentences. \" class=\"eael-pricing-tooltip\" id=\"d149f9c4\" data-side=\"top\" data-trigger=\"click\" data-animation=\"grow\" data-animation_duration=\"300\" data-arrow=\"yes\" data-theme=\"shadow\">\u062a\u0631\u0643\u064a\u0628 \u062c\u0645\u0644 \u0628\u0633\u064a\u0637\u0629 \u2196<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-46405a0\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0641\u0635\u0648\u0644 \u062f\u0631\u0627\u0633\u064a\u0629 \u0635\u063a\u064a\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-114542b\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0645\u0639\u0644\u0645\u0648\u0646 \u0646\u0627\u0637\u0642\u0648\u0646 \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-8a9aae2\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0643\u062a\u0627\u0628 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u062c\u0627\u0646\u064a<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-e0fb036\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0627\u0645\u062a\u062d\u0627\u0646 \u0627\u0644\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0646\u0647\u0627\u0626\u064a<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f90b9a5 disable-item\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-times\" viewbox=\"0 0 352 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0634\u0647\u0627\u062f\u0629 \u0625\u062a\u0645\u0627\u0645 \u0627\u0644\u062f\u0648\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-06236b4\">\n                    \n                                <span class=\"li-icon\">\n                            <\/span>\n\n        \n                    <span ><a href=\"\/ar\/grammar-course\/\" style=\"font-weight: bold;color: Black\">\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f<\/a><\/span>\n                    \n                     \n                <\/li>\n                    <\/ul>\n                    <\/div>\n                                <div class=\"footer\">\n                    <a class=\"eael-pricing-button\" href=\"?add-to-cart=28097&#038;redirect=checkout\" >\n                                                                                \u0627\u062e\u062a\u0631 \u0627\u0644\u0628\u0627\u0642\u0629                                            <\/a>\n                <\/div>\n                            <\/div>\n                    <\/div>\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-64b74d7 e-con-full e-flex e-con e-child\" data-id=\"64b74d7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb4e28 eael-pricing-content-align-center eael-pricing-button-align-center elementor-widget elementor-widget-eael-pricing-table\" data-id=\"4bb4e28\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-pricing-table.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"eael-pricing style-1 eael-header-devider\">\n                    <div class=\"eael-pricing-item\">\n                <div class=\"header\">\n                    <h2 class=\"title\">\u0627\u0644\u062f\u0648\u0631\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629<\/h2>\n                <\/div>\n                <div class=\"eael-pricing-tag\">\n                    <span class=\"price-tag\"><del class=\"original-price\">1500<span class=\"price-currency\">SAR<\/span><\/del> <span class=\"sale-price\">999<span class=\"price-currency\">SAR<\/span>\n                <\/span><\/span><span class=\"price-period\">\/\u062b\u0644\u0627\u062b \u0623\u0634\u0647\u0631<\/span>                <\/div>\n                <div class=\"body\">\n                            <ul>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-63227b4\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >4 \u062f\u0631\u0648\u0633 \u062d\u064a\u0629 \u0645\u0628\u0627\u0634\u0631\u0629 \u0623\u0633\u0628\u0648\u0639\u0628\u0627\u064b<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f959a94\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-65a371f\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u0633\u062c\u064a\u0644 \u0644\u062c\u0645\u064a\u0639 \u0627\u0644\u062f\u0631\u0648\u0633 <\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-fd0cd6d\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0648\u0627\u062c\u0628\u0627\u062a \u064a\u0648\u0645\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-46405a0\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0627\u062e\u062a\u0628\u0627\u0631\u0627\u062a \u062a\u0642\u064a\u064a\u0645 \u0623\u0633\u0628\u0648\u0639\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-42e8a97\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0641\u0635\u0648\u0644 \u062f\u0631\u0627\u0633\u064a\u0629 \u0635\u063a\u064a\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-d44c408\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u062a\u0628\u0639 \u0627\u0644\u062a\u0642\u062f\u0645 \u0628\u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064a<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-0bebd58\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0645\u0639\u0644\u0645\u0648\u0646 \u0646\u0627\u0637\u0642\u0648\u0646 \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-ce16fa1\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0643\u062a\u0628 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0645\u062c\u0627\u0646\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-d369186\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0634\u0647\u0627\u062f\u0629 \u0625\u062a\u0645\u0627\u0645 \u0627\u0644\u062f\u0648\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-0f605f2\">\n                    \n                                <span class=\"li-icon\">\n                            <\/span>\n\n        \n                    <span ><a href=\"\/ar\/full-course\/\" style=\"font-weight: bold;color: Black\">\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f<\/a><\/span>\n                    \n                     \n                <\/li>\n                    <\/ul>\n                    <\/div>\n                                <div class=\"footer\">\n                    <a class=\"eael-pricing-button\" href=\"?add-to-cart=28137&#038;redirect=checkout\" >\n                                                                                \u0627\u062e\u062a\u0631 \u0627\u0644\u0628\u0627\u0642\u0629                                            <\/a>\n                <\/div>\n                            <\/div>\n                    <\/div>\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-32e5f22 e-con-full e-transform e-flex e-con e-child\" data-id=\"32e5f22\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7eb59ad eael-pricing-content-align-center eael-pricing-button-align-center elementor-widget elementor-widget-eael-pricing-table\" data-id=\"7eb59ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-pricing-table.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"eael-pricing style-1 eael-header-devider\">\n                    <div class=\"eael-pricing-item featured ribbon-2\">\n                <div class=\"header\">\n                    <h2 class=\"title\">\u0627\u0644\u0628\u0627\u0642\u0629 \u0627\u0644\u0645\u0631\u0646\u0629<\/h2>\n                <\/div>\n                <div class=\"eael-pricing-tag\">\n                    <span class=\"price-tag\"><del class=\"original-price\">550<span class=\"price-currency\">SAR<\/span><\/del> <span class=\"sale-price\">460<span class=\"price-currency\">SAR<\/span>\n                <\/span><\/span><span class=\"price-period\">\/\u0634\u0647\u0631\u064a\u0627<\/span>                <\/div>\n                <div class=\"body\">\n                            <ul>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-63227b4\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >4 \u062f\u0631\u0648\u0633 \u062d\u064a\u0629 \u0645\u0628\u0627\u0634\u0631\u0629 \u0623\u0633\u0628\u0648\u0639\u0628\u0627\u064b<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f959a94\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u0631\u0643\u064a\u0632 \u0639\u0644\u0649 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-65a371f\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u0633\u062c\u064a\u0644 \u0644\u062c\u0645\u064a\u0639 \u0627\u0644\u062f\u0631\u0648\u0633<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-d22884e\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0648\u0627\u062c\u0628\u0627\u062a \u064a\u0648\u0645\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-34fcc3f\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0627\u062e\u062a\u0628\u0627\u0631\u0627\u062a \u062a\u0642\u064a\u064a\u0645 \u0623\u0633\u0628\u0648\u0639\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-1d60e92\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0641\u0635\u0648\u0644 \u062f\u0631\u0627\u0633\u064a\u0629 \u0635\u063a\u064a\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-46405a0\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u062a\u0628\u0639 \u0627\u0644\u062a\u0642\u062f\u0645 \u0628\u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064a<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-1d4cb7a\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0645\u0639\u0644\u0645\u0648\u0646 \u0646\u0627\u0637\u0642\u0648\u0646 \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-685adc1\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0643\u062a\u0628 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0645\u062c\u0627\u0646\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f9c64a3\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0634\u0647\u0627\u062f\u0629 \u0625\u062a\u0645\u0627\u0645 \u0627\u0644\u062f\u0648\u0631\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-dd77fb3\">\n                    \n                                <span class=\"li-icon\">\n                            <\/span>\n\n        \n                    <span ><a href=\"\/ar\/pay-as-you-go\/\" style=\"font-weight: bold;color: white\">\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f<\/a><\/span>\n                    \n                     \n                <\/li>\n                    <\/ul>\n                    <\/div>\n                                <div class=\"footer\">\n                    <a class=\"eael-pricing-button\" href=\"?add-to-cart=28139&#038;redirect=checkout\" >\n                                                                                \u0627\u062e\u062a\u0631 \u0627\u0644\u0628\u0627\u0642\u0629                                             <\/a>\n                <\/div>\n                            <\/div>\n                    <\/div>\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-01d132b e-con-full e-flex e-con e-child\" data-id=\"01d132b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d3b67d6 eael-pricing-content-align-center eael-pricing-button-align-center elementor-widget elementor-widget-eael-pricing-table\" data-id=\"d3b67d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-pricing-table.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"eael-pricing style-1 eael-header-devider\">\n                    <div class=\"eael-pricing-item\">\n                <div class=\"header\">\n                    <h2 class=\"title\">\u0627\u0644\u0645\u0645\u064a\u0632\u0629 <\/h2>\n                <\/div>\n                <div class=\"eael-pricing-tag\">\n                    <span class=\"price-tag\"><del class=\"original-price\">1000<span class=\"price-currency\">SAR<\/span><\/del> <span class=\"sale-price\">799<span class=\"price-currency\">SAR<\/span>\n                <\/span><\/span><span class=\"price-period\">\/\u0634\u0647\u0631\u064a\u0627<\/span>                <\/div>\n                <div class=\"body\">\n                            <ul>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-5a1849b\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >4 \u062f\u0631\u0648\u0633 \u062d\u064a\u0629 \u0645\u0628\u0627\u0634\u0631\u0629 \u0623\u0633\u0628\u0648\u0639\u0628\u0627\u064b<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-f959a94\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0645\u0633\u0627\u0631 \u062a\u0639\u0644\u0645 \u0645\u062e\u0635\u0635<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-e76e104\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u0633\u062c\u064a\u0644 \u0644\u062c\u0645\u064a\u0639 \u0627\u0644\u062f\u0631\u0648\u0633<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-607f915\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0648\u0627\u062c\u0628 \u064a\u0648\u0645\u064a \u0645\u062e\u0635\u0635<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-2ca4332\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0627\u062e\u062a\u0628\u0627\u0631\u0627\u062a \u062a\u0642\u064a\u064a\u0645 \u0623\u0633\u0628\u0648\u0639\u064a\u0629<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-63227b4\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0645\u0639\u0644\u0645\u0643 \u0627\u0644\u062e\u0627\u0635<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-46405a0\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0623\u0648\u0644\u0648\u064a\u0629 \u0644\u062a\u062d\u062f\u064a\u062f \u0645\u0648\u0627\u0639\u064a\u062f \u0627\u0644\u062f\u0631\u0648\u0633<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-02b90e5\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u062a\u062a\u0628\u0639 \u0627\u0644\u062a\u0642\u062f\u0645 \u0627\u0644\u0627\u062d\u062a\u0631\u0627\u0641\u064a<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-65a371f\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0648\u0635\u0648\u0644 \u0643\u0627\u0645\u0644 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u063a\u064a\u0631 \u0645\u062d\u062f\u0648\u062f<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-9e1e28a\">\n                    \n                                <span class=\"li-icon\">\n                <svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-check\" viewbox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"><\/path><\/svg>            <\/span>\n\n        \n                    <span >\u0634\u0647\u0627\u062f\u0629 \u0645\u0639 \u0645\u0631\u062a\u0628\u0629 \u0627\u0644\u0634\u0631\u0641<\/span>\n                    \n                     \n                <\/li>\n                            <li class=\"eael-pricing-item-feature elementor-repeater-item-4d44764\">\n                    \n                                <span class=\"li-icon\">\n                            <\/span>\n\n        \n                    <span ><a href=\"\/ar\/premium\/\" style=\"font-weight: bold;color: Black\">\u0627\u0642\u0631\u0623 \u0627\u0644\u0645\u0632\u064a\u062f<\/a><\/span>\n                    \n                     \n                <\/li>\n                    <\/ul>\n                    <\/div>\n                                <div class=\"footer\">\n                    <a class=\"eael-pricing-button\" href=\"?add-to-cart=28141&#038;redirect=checkout\" >\n                                                                                \u0627\u062e\u062a\u0631 \u0627\u0644\u0628\u0627\u0642\u0629                                             <\/a>\n                <\/div>\n                            <\/div>\n                    <\/div>\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-34acd3d elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"34acd3d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69678d6 uael-woo--align-left uael-sale-flash-circle uael-featured-flash-circle elementor-widget elementor-widget-uael-woo-products\" data-id=\"69678d6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;products_columns&quot;:&quot;4&quot;,&quot;products_columns_tablet&quot;:&quot;3&quot;,&quot;products_columns_mobile&quot;:&quot;1&quot;}\" data-widget_type=\"uael-woo-products.grid-default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"uael-woocommerce uael-woo-products-grid uael-woo-skin-grid-default uael-woo-query-all\" data-page=\"17\" data-skin=\"grid_default\"><div class=\"columns-4 uael-woo-products-inner uael-woo-product__column-4 uael-woo-product__column-tablet-3 uael-woo-product__column-mobile-1\"><ul class=\"products columns-4\">\n\n\n<li class=\"course plans post-28141 product first instock sale virtual sold-individually purchasable product-type-simple\">\n\t<div class=\"uael-woo-product-wrapper uael-prod-auto-align-enabled\">\n\t\t<div class=\"uael-woo-products-thumbnail-wrap\"><div class=\"uael-flash-container double-flash\">\n\t<div class=\"uael-sale-flash-wrap\"><span class=\"uael-onsale\">20%<\/span><\/div>\n\t<\/div><a href=\"https:\/\/thelearnyway.com\/ar\/product\/premium\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Premium-Plan-V2-300x300.webp\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Premium\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Premium-Plan-V2-300x300.webp 300w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Premium-Plan-V2-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Premium-Plan-V2-150x150.webp 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"uael-woo-products-summary-wrap uael-auto-align-enabled\">\t\t\t<span class=\"uael-woo-product-category\">\n\t\t\t\tCourse Plans\t\t\t<\/span> \n\t\t\t<a href=\"https:\/\/thelearnyway.com\/ar\/product\/premium\/\" class=\"uael-loop-product__link\"><h2 class=\"woocommerce-loop-product__title\">\u0627\u0644\u0645\u0645\u064a\u0632\u0629<\/h2><\/a>\n\t<span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>1.000,00<\/bdi><\/span><\/del> <span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u0623\u0635\u0644\u064a \u0647\u0648: &#x631;.&#x633;1.000,00.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>799,00<\/bdi><\/span><\/ins><span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u062d\u0627\u0644\u064a \u0647\u0648: &#x631;.&#x633;799,00.<\/span><\/span>\n<div class=\"uael-woo-products-description\"><p>\u2713 4 Live Classes a Week<br \/>\n\u2713 Customized Learning Path<br \/>\n\u2713 Recording for All Classes<br \/>\n\u2713 Daily Customized Homework<br \/>\n\u2713 Weekly Quizzes<br \/>\n\u2713 Your Own Private Teacher<br \/>\n\u2713 Priority Class Scheduling<br \/>\n\u2713 Advanced Progress Tracking<br \/>\n\u2713 Unlimited Resources<br \/>\n\u2713 Certificate with Honors<\/p>\n<\/div><div class=\"uael-woo-products-button-align\"><a href=\"\/ar\/wp-json\/wp\/v2\/pages\/17?add-to-cart=28141\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28141\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"28141\" data-product_sku=\"\" aria-label=\"\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642: &quot;Premium&quot;\" rel=\"nofollow\" data-success_message=\"\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 &quot;Premium&quot; \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642 \u0644\u062f\u064a\u0643\" role=\"button\" data-no-translation=\"\" data-trp-gettext=\"\" data-no-translation-aria-label=\"\" data-no-translation-data-success_message=\"\">\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0633\u0644\u0629<\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28141\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div><\/div>\t<\/div>\n<\/li>\n\n\n<li class=\"course plans post-28139 product  instock sale featured virtual sold-individually purchasable product-type-simple\">\n\t<div class=\"uael-woo-product-wrapper uael-prod-auto-align-enabled\">\n\t\t<div class=\"uael-woo-products-thumbnail-wrap\"><div class=\"uael-flash-container double-flash\">\n\t<div class=\"uael-sale-flash-wrap\"><span class=\"uael-onsale\">16%<\/span><\/div>\n\t\n\t<div class=\"uael-featured-flash-wrap\"><span class=\"uael-featured\">New<\/span><\/div>\t<\/div><a href=\"https:\/\/thelearnyway.com\/ar\/product\/pay-as-you-go\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Pay-as-You-Go-V2-300x300.webp\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Pay as You Go\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Pay-as-You-Go-V2-300x300.webp 300w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Pay-as-You-Go-V2-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Pay-as-You-Go-V2-150x150.webp 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"uael-woo-products-summary-wrap uael-auto-align-enabled\">\t\t\t<span class=\"uael-woo-product-category\">\n\t\t\t\tCourse Plans\t\t\t<\/span> \n\t\t\t<a href=\"https:\/\/thelearnyway.com\/ar\/product\/pay-as-you-go\/\" class=\"uael-loop-product__link\"><h2 class=\"woocommerce-loop-product__title\">\u0627\u0644\u0628\u0627\u0642\u0629 \u0627\u0644\u0645\u0631\u0646\u0629<\/h2><\/a>\n\t<span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>550,00<\/bdi><\/span><\/del> <span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u0623\u0635\u0644\u064a \u0647\u0648: &#x631;.&#x633;550,00.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>460,00<\/bdi><\/span><\/ins><span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u062d\u0627\u0644\u064a \u0647\u0648: &#x631;.&#x633;460,00.<\/span><\/span>\n<div class=\"uael-woo-products-description\"><p>\u2713 4 Live Classes a Week<br \/>\n\u2713 Conversation Focused<br \/>\n\u2713 Recording for All Classes<br \/>\n\u2713 Daily Homework<br \/>\n\u2713 Weekly Quizzes<br \/>\n\u2713 Small Classes<br \/>\n\u2713 AI Progress Tracking<br \/>\n\u2713 Native Teachers<br \/>\n\u2713 Free Ebooks<br \/>\n\u2713 Certificate of Completion<\/p>\n<\/div><div class=\"uael-woo-products-button-align\"><a href=\"\/ar\/wp-json\/wp\/v2\/pages\/17?add-to-cart=28139\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28139\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"28139\" data-product_sku=\"\" aria-label=\"\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642: &quot;Pay as You Go&quot;\" rel=\"nofollow\" data-success_message=\"\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 &quot;Pay as You Go&quot; \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642 \u0644\u062f\u064a\u0643\" role=\"button\" data-no-translation=\"\" data-trp-gettext=\"\" data-no-translation-aria-label=\"\" data-no-translation-data-success_message=\"\">\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0633\u0644\u0629<\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28139\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div><\/div>\t<\/div>\n<\/li>\n\n\n<li class=\"course plans post-28137 product  instock sale virtual sold-individually purchasable product-type-simple\">\n\t<div class=\"uael-woo-product-wrapper uael-prod-auto-align-enabled\">\n\t\t<div class=\"uael-woo-products-thumbnail-wrap\"><div class=\"uael-flash-container double-flash\">\n\t<div class=\"uael-sale-flash-wrap\"><span class=\"uael-onsale\">33%<\/span><\/div>\n\t<\/div><a href=\"https:\/\/thelearnyway.com\/ar\/product\/full-course\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Full-Course-V2-1-300x300.webp\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Full Course \u200b\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Full-Course-V2-1-300x300.webp 300w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Full-Course-V2-1-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Full-Course-V2-1-150x150.webp 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"uael-woo-products-summary-wrap uael-auto-align-enabled\">\t\t\t<span class=\"uael-woo-product-category\">\n\t\t\t\tCourse Plans\t\t\t<\/span> \n\t\t\t<a href=\"https:\/\/thelearnyway.com\/ar\/product\/full-course\/\" class=\"uael-loop-product__link\"><h2 class=\"woocommerce-loop-product__title\">\u0627\u0644\u062f\u0648\u0631\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629<\/h2><\/a>\n\t<span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>1.500,00<\/bdi><\/span><\/del> <span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u0623\u0635\u0644\u064a \u0647\u0648: &#x631;.&#x633;1.500,00.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>999,00<\/bdi><\/span><\/ins><span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u062d\u0627\u0644\u064a \u0647\u0648: &#x631;.&#x633;999,00.<\/span><\/span>\n<div class=\"uael-woo-products-description\"><p>\u2713 4 Live Classes a Week<br \/>\n\u2713 Conversation focused<br \/>\n\u2713 Recording for All Classes<br \/>\n\u2713 Daily Homework<br \/>\n\u2713 Weekly Quizzes<br \/>\n\u2713 Small Classes<br \/>\n\u2713 AI Progress Tracking<br \/>\n\u2713 Native Teachers<br \/>\n\u2713 Free Ebooks<br \/>\n\u2713 Certificate of Completion<\/p>\n<\/div><div class=\"uael-woo-products-button-align\"><a href=\"\/ar\/wp-json\/wp\/v2\/pages\/17?add-to-cart=28137\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28137\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"28137\" data-product_sku=\"\" aria-label=\"\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642: &quot;Full Course \u200b&quot;\" rel=\"nofollow\" data-success_message=\"\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 &quot;Full Course \u200b&quot; \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642 \u0644\u062f\u064a\u0643\" role=\"button\" data-no-translation=\"\" data-trp-gettext=\"\" data-no-translation-aria-label=\"\" data-no-translation-data-success_message=\"\">\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0633\u0644\u0629<\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28137\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div><\/div>\t<\/div>\n<\/li>\n\n\n<li class=\"course plans post-28097 product last instock sale virtual sold-individually purchasable product-type-simple\">\n\t<div class=\"uael-woo-product-wrapper uael-prod-auto-align-enabled\">\n\t\t<div class=\"uael-woo-products-thumbnail-wrap\"><div class=\"uael-flash-container double-flash\">\n\t<div class=\"uael-sale-flash-wrap\"><span class=\"uael-onsale\">38%<\/span><\/div>\n\t<\/div><a href=\"https:\/\/thelearnyway.com\/ar\/product\/grammar-course\/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Grammar-CourseV2-300x300.webp\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Grammar Course\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Grammar-CourseV2-300x300.webp 300w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Grammar-CourseV2-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2025\/01\/Grammar-CourseV2-150x150.webp 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/div><div class=\"uael-woo-products-summary-wrap uael-auto-align-enabled\">\t\t\t<span class=\"uael-woo-product-category\">\n\t\t\t\tCourse Plans\t\t\t<\/span> \n\t\t\t<a href=\"https:\/\/thelearnyway.com\/ar\/product\/grammar-course\/\" class=\"uael-loop-product__link\"><h2 class=\"woocommerce-loop-product__title\">\u062f\u0648\u0631\u0629 \u0642\u0648\u0627\u0639\u062f \u0627\u0644\u0644\u063a\u0629<\/h2><\/a>\n\t<span class=\"price\"><del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>200,00<\/bdi><\/span><\/del> <span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u0623\u0635\u0644\u064a \u0647\u0648: &#x631;.&#x633;200,00.<\/span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#x631;.&#x633;<\/span>125,00<\/bdi><\/span><\/ins><span class=\"screen-reader-text\" data-no-translation=\"\" data-trp-gettext=\"\">\u0627\u0644\u0633\u0639\u0631 \u0627\u0644\u062d\u0627\u0644\u064a \u0647\u0648: &#x631;.&#x633;125,00.<\/span><\/span>\n<div class=\"uael-woo-products-description\"><p>\u2713 5 Live Classes<br \/>\n\u2713 1 Year Access<br \/>\n\u2713 Top 5 Grammar Rules<br \/>\n\u2713 Daily Homework<br \/>\n\u2713 Simple Sentences<br \/>\n\u2713 Small Classes<br \/>\n\u2713 Native Teachers<br \/>\n\u2713 1 Free Ebook<br \/>\n\u2713 Final Exam<br \/>\n\u274c<span style=\"display: inline-block; position: relative;\">\u0634\u0647\u0627\u062f\u0629 \u0625\u062a\u0645\u0627\u0645 \u0627\u0644\u062f\u0648\u0631\u0629<\/span><\/p>\n<\/div><div class=\"uael-woo-products-button-align\"><a href=\"\/ar\/wp-json\/wp\/v2\/pages\/17?add-to-cart=28097\" aria-describedby=\"woocommerce_loop_add_to_cart_link_describedby_28097\" data-quantity=\"1\" class=\"button product_type_simple add_to_cart_button ajax_add_to_cart\" data-product_id=\"28097\" data-product_sku=\"\" aria-label=\"\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642: &quot;Grammar Course&quot;\" rel=\"nofollow\" data-success_message=\"\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 &quot;Grammar Course&quot; \u0625\u0644\u0649 \u0639\u0631\u0628\u0629 \u0627\u0644\u062a\u0633\u0648\u0642 \u0644\u062f\u064a\u0643\" role=\"button\" data-no-translation=\"\" data-trp-gettext=\"\" data-no-translation-aria-label=\"\" data-no-translation-data-success_message=\"\">\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0633\u0644\u0629<\/a>\t<span id=\"woocommerce_loop_add_to_cart_link_describedby_28097\" class=\"screen-reader-text\">\n\t\t\t<\/span>\n<\/div><\/div>\t<\/div>\n<\/li>\n<\/ul>\n<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-f7d8587 e-flex e-con-boxed e-con e-parent\" data-id=\"f7d8587\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-e2b160a e-con-full e-flex e-con e-child\" data-id=\"e2b160a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-1ca3404 e-con-full e-flex e-con e-child\" data-id=\"1ca3404\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-b01e417 e-con-full e-transform e-flex e-con e-child\" data-id=\"b01e417\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-898a008 e-con-full e-flex e-con e-child\" data-id=\"898a008\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-7e87a9c e-flex e-con-boxed e-con e-parent\" data-id=\"7e87a9c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;mountains&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 1000 100\" preserveaspectratio=\"none\">\n\t<path class=\"elementor-shape-fill\" opacity=\"0.33\" d=\"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" opacity=\"0.66\" d=\"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" d=\"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-c522d46 e-flex e-con-boxed e-con e-parent\" data-id=\"c522d46\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-2dbc675 e-con-full e-flex e-con e-child\" data-id=\"2dbc675\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4694cf5 elementor-widget elementor-widget-image-box\" data-id=\"4694cf5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-image-box-wrapper\"><div class=\"elementor-image-box-content\"><h2 class=\"elementor-image-box-title\">\u0645\u0627\u0630\u0627 \u064a\u0642\u0648\u0644 \u0637\u0644\u0627\u0628\u0646\u0627<\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-fc0caf2 e-con-full e-flex e-con e-child\" data-id=\"fc0caf2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-a08ed23 e-con-full e-flex e-con e-child\" data-id=\"a08ed23\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6228c87 elementor-widget elementor-widget-testimonial\" data-id=\"6228c87\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-wrapper\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-content\">\n\nThe flexibility to learn at my own pace made all the difference. The instructors are fantastic, and I love how they make even tough topics easy to understand!\n<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside\">\n\t\t\t\t<div class=\"elementor-testimonial-meta-inner\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-image\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"250\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M.webp\" class=\"attachment-full size-full wp-image-26191\" alt=\"\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M.webp 250w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M-150x150.webp 150w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-details\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-name\">Ahmad A<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-job\">From Abu Dhabi, UAE<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\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<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-8054968 e-con-full e-flex e-con e-child\" data-id=\"8054968\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ebb4321 elementor-widget elementor-widget-testimonial\" data-id=\"ebb4321\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-wrapper\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-content\">I\u2019ve tried many online platforms, but this one stands out! The lessons are clear, interactive, and easy to follow. I feel more confident every day. Highly recommend!<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside\">\n\t\t\t\t<div class=\"elementor-testimonial-meta-inner\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-image\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"250\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F.webp\" class=\"attachment-full size-full wp-image-26192\" alt=\"\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F.webp 250w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F-150x150.webp 150w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-details\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-name\">Maryam S<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-job\">From Dammam, Saudi Arabia<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\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<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-47bdb05 e-con-full e-flex e-con e-child\" data-id=\"47bdb05\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-3bd6892 e-con-full e-flex e-con e-child\" data-id=\"3bd6892\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fc0bf90 elementor-widget elementor-widget-testimonial\" data-id=\"fc0bf90\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-wrapper\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-content\">Joining this platform was the best decision I made this year. The courses are engaging, and the support team is always there when I need help. A+ experience!<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside\">\n\t\t\t\t<div class=\"elementor-testimonial-meta-inner\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-image\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"250\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F.webp\" class=\"attachment-full size-full wp-image-26192\" alt=\"\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F.webp 250w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-F-150x150.webp 150w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-details\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-name\">Maryam A<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-job\">From Makah<span style=\"font-size: 13.6px\">, Saudi Arabia<\/span><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\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<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-e8b2b05 e-con-full e-flex e-con e-child\" data-id=\"e8b2b05\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-692006f elementor-widget elementor-widget-testimonial\" data-id=\"692006f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-wrapper\">\n\t\t\t\t\t\t\t<div class=\"elementor-testimonial-content\">The courses are practical and exactly what I needed to improve my skills. I already see the results, and I\u2019m excited to continue learning here!<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside\">\n\t\t\t\t<div class=\"elementor-testimonial-meta-inner\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-image\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"250\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M.webp\" class=\"attachment-full size-full wp-image-26191\" alt=\"\" srcset=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M.webp 250w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M-100x100.webp 100w, https:\/\/thelearnyway.com\/wp-content\/uploads\/2024\/12\/No-photo-M-150x150.webp 150w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-details\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-name\">Omar H<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-testimonial-job\">From Eastern Province, Saudi Arabia<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\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<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-622601d e-flex e-con-boxed e-con e-parent\" data-id=\"622601d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;mountains&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 1000 100\" preserveaspectratio=\"none\">\n\t<path class=\"elementor-shape-fill\" opacity=\"0.33\" d=\"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" opacity=\"0.66\" d=\"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" d=\"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-e850446 e-flex e-con-boxed e-con e-parent\" data-id=\"e850446\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-bfdabc8 e-con-full e-flex e-con e-child\" data-id=\"bfdabc8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-08807ac elementor-widget elementor-widget-heading\" data-id=\"08807ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u0634\u0631\u0643\u0627\u0621 \u0627\u0644\u0646\u062c\u0627\u062d<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-c70029d e-con-full e-flex e-con e-child\" data-id=\"c70029d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ef2e22 elementor-widget elementor-widget-image\" data-id=\"2ef2e22\" 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 decoding=\"async\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/elementor\/thumbs\/siquash-gold-qyxskc5scw8wuyb8i45lzd6ovqsku2vcv88cgkrvjy.webp\" title=\"siquash gold\" alt=\"siquash gold\" loading=\"lazy\" \/>\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<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-152b4ab e-con-full e-flex e-con e-child\" data-id=\"152b4ab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-17b421c elementor-widget elementor-widget-image\" data-id=\"17b421c\" 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 decoding=\"async\" src=\"https:\/\/thelearnyway.com\/wp-content\/uploads\/elementor\/thumbs\/logo1--qywdumb1tgz69a9pexsky2vjh1iy2ew9urgjcfs96m.webp\" title=\"logo1-\" alt=\"logo1-\" loading=\"lazy\" \/>\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<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-e54e420 e-con-full e-flex e-con e-child\" data-id=\"e54e420\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-particle_enable=\"false\" data-particle-mobile-disabled=\"false\" class=\"elementor-element elementor-element-eb7bcaf e-flex e-con-boxed e-con e-parent\" data-id=\"eb7bcaf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;mountains&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 1000 100\" preserveaspectratio=\"none\">\n\t<path class=\"elementor-shape-fill\" opacity=\"0.33\" d=\"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" opacity=\"0.66\" d=\"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z\"\/>\n\t<path class=\"elementor-shape-fill\" d=\"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Word Flip Learn Connect Succeed The Learny Way Small classes Offering personalized attention and active learning. Native Learning In your native language for a more intuitive and engaging experience. Interactive lessons That encourage active participation and real-time feedback. 1 Choose a plan \u2728 Pick the plan that\u2019s right for you, and let\u2019s get started on [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-17","page","type-page","status-publish","hentry","desktop-align-center","tablet-align-left","mobile-align-left"],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/pages\/17","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/comments?post=17"}],"version-history":[{"count":1611,"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/pages\/17\/revisions"}],"predecessor-version":[{"id":30440,"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/pages\/17\/revisions\/30440"}],"wp:attachment":[{"href":"https:\/\/thelearnyway.com\/ar\/wp-json\/wp\/v2\/media?parent=17"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}