{"id":64,"date":"2025-09-24T07:13:12","date_gmt":"2025-09-24T07:13:12","guid":{"rendered":"https:\/\/sas.dev2.tqnia.me\/index.php\/%d8%a7%d9%84%d8%b1%d8%a6%d9%8a%d8%b3%d9%8a%d8%a9\/"},"modified":"2026-01-13T13:09:43","modified_gmt":"2026-01-13T13:09:43","slug":"%d8%a7%d9%84%d8%b1%d8%a6%d9%8a%d8%b3%d9%8a%d8%a9","status":"publish","type":"page","link":"https:\/\/sas.dev2.tqnia.me\/ar\/","title":{"rendered":"\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"64\" class=\"elementor elementor-64 elementor-12\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f687fce e-flex e-con-boxed e-con e-parent\" data-eae-slider=\"1730\" data-id=\"f687fce\" 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-992ab9b elementor-widget elementor-widget-html\" data-id=\"992ab9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", () => {\n  \/\/ Define the breakpoint for mobile devices.\n  const mobileBreakpoint = 768;\n  if (window.innerWidth <= mobileBreakpoint) {\n    return;\n  }\n\n  const sections = Array.from(document.querySelectorAll(\".zoom-scroll\"));\n  const footer = document.querySelector(\"footer, .elementor-location-footer, .page-footer\");\n  const navbar = document.querySelector(\".elementor-location-header, header\");\n  const navbarHeight = navbar ? navbar.offsetHeight : 0;\n  const nextSectionButton = document.querySelector(\".next-section-btn\");\n\n  if (!sections.length) return;\n\n  let current = 0;\n  let isAnimating = false;\n  let atFooter = false;\n\n  \/\/ === Initialize ===\n  requestAnimationFrame(() => {\n    document.body.style.overflow = \"hidden\";\n    sections[0].classList.add(\"scroll-in\", \"no-fade\");\n    sections[1]?.classList.add(\"no-fade\");\n    window.scrollTo({ top: 0, behavior: \"auto\" });\n  });\n\n  if (nextSectionButton) {\n    nextSectionButton.addEventListener(\"click\", (e) => {\n      e.preventDefault();\n      scrollToSection(current + 1);\n    });\n  }\n\n  function scrollToSection(index, fromFooter = false) {\n    if (isAnimating) return;\n\n    \/\/ === Footer reached ===\n    if (index >= sections.length) {\n      atFooter = true;\n      document.body.style.overflow = \"auto\";\n      footer?.scrollIntoView({ behavior: \"smooth\", block: \"start\" });\n      return;\n    }\n\n    \/\/ === Returning from footer ===\n    if (fromFooter) {\n      atFooter = false;\n      document.body.style.overflow = \"hidden\";\n      const lastSection = sections[sections.length - 1];\n      lastSection.classList.add(\"scroll-in\");\n      lastSection.classList.remove(\"scroll-out\", \"scroll-up-fade\");\n      window.scrollTo({\n        top: lastSection.offsetTop - navbarHeight,\n        behavior: \"smooth\",\n      });\n      current = sections.length - 1;\n      return;\n    }\n\n    if (index < 0 || index >= sections.length) return;\n\n    const isTopTransition = (current <= 1 && index <= 1);\n    \n    \/\/ Set the animation lock at the beginning\n    isAnimating = true;\n\n    const currentSection = sections[current];\n    const nextSection = sections[index];\n\n    sections.forEach(s => s.classList.remove(\"scroll-in\", \"scroll-out\", \"scroll-up-fade\"));\n\n    \/\/ === No fade between section 1 & 2 ===\n    if (isTopTransition) {\n      sections[0].classList.add(\"no-fade\");\n      sections[1].classList.add(\"no-fade\");\n      currentSection.classList.add(\"scroll-in\");\n      nextSection.classList.add(\"scroll-in\");\n      const yOffset = -navbarHeight;\n      const y = nextSection.getBoundingClientRect().top + window.scrollY + yOffset;\n      window.scrollTo({ top: y, behavior: \"smooth\" });\n      current = index;\n      \/\/ THE FIX: Use a timeout here as well\n      setTimeout(() => (isAnimating = false), 1200);\n      return;\n    }\n\n    currentSection.classList.remove(\"no-fade\");\n    nextSection.classList.remove(\"no-fade\");\n    currentSection.classList.add(\"scroll-out\");\n    nextSection.classList.add(\"scroll-in\");\n\n    const yOffset = -navbarHeight;\n    const y = nextSection.getBoundingClientRect().top + window.scrollY + yOffset;\n\n    window.scrollTo({ top: y, behavior: \"smooth\" });\n    current = index;\n\n    setTimeout(() => (isAnimating = false), 1200);\n  }\n\n  \/\/ === Wheel Handler ===\n  function wheelHandler(e) {\n    if (atFooter) {\n      if (e.deltaY < 0 && window.scrollY <= footer.offsetTop - window.innerHeight + navbarHeight + 50) {\n        scrollToSection(sections.length - 1, true);\n      }\n      return;\n    }\n    e.preventDefault();\n    const direction = e.deltaY > 0 ? 1 : -1;\n    scrollToSection(current + direction);\n  }\n\n  \/\/ === Touch Handler ===\n  let startY = 0;\n  function touchStartHandler(e) {\n    startY = e.touches[0].clientY;\n  }\n  function touchEndHandler(e) {\n    const endY = e.changedTouches[0].clientY;\n    const direction = startY > endY ? 1 : -1;\n    if (atFooter && direction < 0 && window.scrollY <= footer.offsetTop - window.innerHeight + navbarHeight + 50) {\n      scrollToSection(sections.length - 1, true);\n      return;\n    }\n    if (!atFooter) scrollToSection(current + direction);\n  }\n\n  window.addEventListener(\"wheel\", wheelHandler, { passive: false });\n  window.addEventListener(\"touchstart\", touchStartHandler, { passive: true }); \/\/ passive: true can improve touch performance\n  window.addEventListener(\"touchend\", touchEndHandler, { passive: true });\n});\n<\/script>\n\n\n<style> \n.zoom-scroll {\n  transition: transform 1s ease, opacity 1s ease;\n  opacity: 1;\n  transform: scale(1);\n  will-change: transform, opacity;\n  position: relative;\n  z-index: 2;\n}\n\n.zoom-scroll.scroll-out {\n  transform: scale(0.9);\n  opacity: 0.6;\n  z-index: 1;\n}\n\n.zoom-scroll.scroll-up-fade {\n  opacity: 0;\n  transform: scale(0.95);\n  transition: opacity 1s ease, transform 1s ease;\n}\n\n\/* Disable fading for first two sections *\/\n.zoom-scroll.no-fade {\n  opacity: 1 !important;\n  transform: scale(1) !important;\n}\n\n\/* Footer remains normal scroll *\/\n.page-footer {\n  position: relative;\n  transform: none !important;\n  opacity: 1 !important;\n}\n\n\/* Optional: smooth overlay fade *\/\n.zoom-scroll::after {\n  content: \"\";\n  position: absolute;\n  inset: 0;\n  background: rgba(0, 0, 0, 0);\n  pointer-events: none;\n  transition: background 1s ease;\n}\n.zoom-scroll.scroll-up-fade::after {\n  background: rgba(0, 0, 0, 0.5);\n}\n\n\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-5c035d2 e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"40329\" data-id=\"5c035d2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-eb1211a e-con-full e-flex e-con e-child\" data-eae-slider=\"22344\" data-id=\"eb1211a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/sas.dev2.tqnia.me\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/NUOVO-CHIN.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-9d1dce3 elementor-absolute next-section-btn elementor-hidden-tablet elementor-hidden-mobile elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"9d1dce3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"38\" height=\"67\" viewBox=\"0 0 38 67\" fill=\"none\"><rect x=\"2\" y=\"2\" width=\"33.2222\" height=\"63\" rx=\"16.6111\" stroke=\"#F9D24A\" stroke-width=\"4\"><\/rect><circle cx=\"18.6112\" cy=\"51.6975\" r=\"6.2037\" fill=\"#F9D24A\"><\/circle><\/svg>\t\t\t<\/div>\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 class=\"has_eae_slider elementor-element elementor-element-ef8e450 e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"87330\" data-id=\"ef8e450\" data-element_type=\"container\" data-e-type=\"container\" id=\"learn\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-09e6513 e-con-full e-flex e-con e-child\" data-eae-slider=\"39546\" data-id=\"09e6513\" 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-672e872 elementor-widget elementor-widget-heading\" data-id=\"672e872\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u062a\u0639\u0631\u0641 \u0639\u0644\u0649 \u0625\u0646\u062c\u0627\u0632\u0627\u062a\u0646\u0627<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0f553cf elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"0f553cf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u062a\u0639\u0627\u0648\u0646 \u0645\u0639\u0646\u0627 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u062d\u0644\u0648\u0644 \u0644\u0648\u062c\u0633\u062a\u064a\u0629 \u0633\u0644\u0633\u0629 \u062a\u0639\u0632\u0632 \u0627\u0644\u0643\u0641\u0627\u0621\u0629 \u0648\u0627\u0644\u0646\u0645\u0648. \u0645\u0646 \u0627\u0644\u0634\u062d\u0646 \u0625\u0644\u0649 \u0627\u0644\u062a\u062e\u0632\u064a\u0646\u060c \u0646\u0636\u0645\u0646 \u0644\u0643 \u0623\u0646 \u062a\u0633\u064a\u0631 \u0623\u0639\u0645\u0627\u0644\u0643 \u0628\u0634\u0643\u0644 \u0623\u0633\u0631\u0639 \u0648\u0623\u0643\u062b\u0631 \u0630\u0643\u0627\u0621\u064b.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-f192e4b e-con-full e-flex e-con e-child\" data-eae-slider=\"44088\" data-id=\"f192e4b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-e38d956 e-grid e-con-full e-con e-child\" data-eae-slider=\"8747\" data-id=\"e38d956\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-991ea71 e-con-full e-flex e-con e-child\" data-eae-slider=\"53598\" data-id=\"991ea71\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-01d2c14 elementor-widget elementor-widget-heading\" data-id=\"01d2c14\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0628\u0641\u0636\u0644 \u062e\u0628\u0631\u062a\u0647\u0627 \u0627\u0644\u062a\u064a \u062a\u0632\u064a\u062f \u0639\u0646 40 \u0639\u0627\u0645\u064b\u0627\u060c \u0628\u0646\u062a \u0634\u0631\u0643\u0629 SAS \u0644\u0644\u0635\u0646\u0627\u0639\u0627\u062a \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0633\u0645\u0639\u0629 \u0642\u0648\u064a\u0629 \u0643\u0648\u0627\u062d\u062f\u0629 \u0645\u0646 \u0627\u0644\u0634\u0631\u0643\u0627\u062a \u0627\u0644\u0631\u0627\u0626\u062f\u0629 \u0641\u064a \u0645\u0635\u0631 \u0641\u064a \u062a\u0635\u0646\u064a\u0639 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-67a8097 elementor-widget elementor-widget-html\" data-id=\"67a8097\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\r\n<div class=\"progress-container\">\r\n    <div class=\"circular-progress\" tabindex=\"0\" role=\"button\" aria-label=\"Circular progress showing 100+\">\r\n        <svg class=\"progress-svg\" viewbox=\"0 0 300 300\">\r\n            <!-- Inner dashed circle (golden) -->\r\n            <circle class=\"inner-dashed-circle\" cx=\"150\" cy=\"150\" r=\"120\"\/>\r\n            \r\n            <!-- Outer track (white dashed) -->\r\n            <circle class=\"outer-track\" cx=\"150\" cy=\"150\" r=\"140\"\/>\r\n            \r\n            <!-- Progress bar (golden) -->\r\n            <circle class=\"progress-bar\" cx=\"150\" cy=\"150\" r=\"140\"\/>\r\n            \r\n            <!-- Dot at the end (white outer + golden inner) -->\r\n            <circle class=\"progress-dot-outer\" cx=\"150\" cy=\"10\" r=\"10\"\/>\r\n            <circle class=\"progress-dot-inner\" cx=\"150\" cy=\"10\" r=\"6\"\/>\r\n        <\/svg>\r\n        \r\n        <div class=\"progress-text\">\r\n            <span class=\"counter\">0<\/span><span class=\"plus-sign\">+<\/span>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-eb2e052 e-con-full e-flex e-con e-child\" data-eae-slider=\"86417\" data-id=\"eb2e052\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f9d5755 elementor-widget elementor-widget-heading\" data-id=\"f9d5755\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0646\u0641\u062e\u0631 \u0628\u062a\u0642\u062f\u064a\u0645 \u0623\u0643\u062b\u0631 \u0645\u0646 5000 \u0645\u0646\u062a\u062c \u0645\u062a\u0645\u064a\u0632\u060c \u0645\u0635\u0645\u0645\u0629 \u0645\u0639 \u0645\u0631\u0627\u0639\u0627\u0629 \u0627\u0644\u0627\u0628\u062a\u0643\u0627\u0631 \u0648\u0627\u0644\u0633\u0644\u0627\u0645\u0629 \u0648\u0627\u0644\u0623\u0646\u0627\u0642\u0629 - \u0644\u062a\u0644\u0628\u064a\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a \u0627\u0644\u0633\u0643\u0646\u064a\u0629 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u064a\u0629 \u0639\u0644\u0649 \u062d\u062f \u0633\u0648\u0627\u0621.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-784d057 elementor-widget elementor-widget-html\" data-id=\"784d057\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\r\n<div class=\"progress-container\">\r\n    <div class=\"circular-progress\" tabindex=\"0\" role=\"button\" aria-label=\"Circular progress showing 100+\">\r\n        <svg class=\"progress-svg\" viewbox=\"0 0 300 300\">\r\n            <!-- Inner dashed circle (golden) -->\r\n            <circle class=\"inner-dashed-circle\" cx=\"150\" cy=\"150\" r=\"120\"\/>\r\n            \r\n            <!-- Outer track (white dashed) -->\r\n            <circle class=\"outer-track\" cx=\"150\" cy=\"150\" r=\"140\"\/>\r\n            \r\n            <!-- Progress bar (golden) -->\r\n            <circle class=\"progress-bar\" cx=\"150\" cy=\"150\" r=\"140\"\/>\r\n            \r\n            <!-- Dot at the end (white outer + golden inner) -->\r\n            <circle class=\"progress-dot-outer\" cx=\"150\" cy=\"10\" r=\"10\"\/>\r\n            <circle class=\"progress-dot-inner\" cx=\"150\" cy=\"10\" r=\"6\"\/>\r\n        <\/svg>\r\n        \r\n        <div class=\"progress-text\">\r\n            <span class=\"counter\">0<\/span><span class=\"plus-sign\">+<\/span>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-b5988b8 e-con-full e-flex e-con e-child\" data-eae-slider=\"72530\" data-id=\"b5988b8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-796c91b elementor-widget elementor-widget-heading\" data-id=\"796c91b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0627\u0644\u064a\u0648\u0645\u060c \u062a\u062d\u0638\u0649 \u0645\u0646\u062a\u062c\u0627\u062a SAS \u0628\u062b\u0642\u0629 \u0623\u0643\u062b\u0631 \u0645\u0646 4000 \u0645\u0648\u0632\u0639 \u0648\u0645\u0634\u0631\u0648\u0639 \u0641\u064a \u062c\u0645\u064a\u0639 \u0623\u0646\u062d\u0627\u0621 \u0645\u0635\u0631\u060c \u0645\u0645\u0627 \u064a\u0639\u0643\u0633 \u0627\u0644\u062a\u0632\u0627\u0645\u0646\u0627 \u0628\u0627\u0644\u062c\u0648\u062f\u0629 \u0648\u0627\u0644\u0645\u0648\u062b\u0648\u0642\u064a\u0629 \u0648\u0627\u0644\u0634\u0631\u0627\u0643\u0627\u062a \u0637\u0648\u064a\u0644\u0629 \u0627\u0644\u0623\u062c\u0644.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a428e5c elementor-widget elementor-widget-html\" data-id=\"a428e5c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>.progress-container {\r\n        padding: 2rem;\r\n        max-width: 100%;\r\n        width: 100%;\r\n        display: flex;\r\n        justify-content: center;\r\n        align-items: center;\r\n    }\r\n\r\n    .circular-progress {\r\n        position: relative;\r\n        width: 100%;\r\n        max-width: 400px;\r\n        aspect-ratio: 1;\r\n        margin: 0 auto;\r\n        cursor: pointer;\r\n        opacity: 0;\r\n        transform: translateY(20px);\r\n        transition: opacity 0.6s ease, transform 0.6s ease;\r\n    }\r\n\r\n    .circular-progress.is-visible {\r\n        opacity: 1;\r\n        transform: translateY(0);\r\n    }\r\n\r\n    .circular-progress:hover {\r\n        transform: scale(1.02);\r\n    }\r\n\r\n    .progress-svg {\r\n        position: absolute;\r\n        top: 0;\r\n        left: 0;\r\n        width: 100%;\r\n        height: 100%;\r\n        transform: rotate(-90deg);\r\n        overflow: visible;\r\n    }\r\n\r\n    \/* Inner dashed circle - golden *\/\r\n    .inner-dashed-circle {\r\n        fill: none;\r\n        stroke: #ffd700;\r\n        stroke-width: 2;\r\n        stroke-dasharray: 6, 4;\r\n        opacity: 0.5;\r\n    }\r\n\r\n    \/* Outer track - white dashed *\/\r\n    .outer-track {\r\n        fill: none;\r\n        stroke: rgba(255, 255, 255, 0.3);\r\n        stroke-width: 2;\r\n        stroke-dasharray: 5, 5;\r\n    }\r\n\r\n    \/* Progress bar - golden *\/\r\n    .progress-bar {\r\n        fill: none;\r\n        stroke: #ffd700;\r\n        stroke-width: 8;\r\n        stroke-linecap: round;\r\n        stroke-dasharray: 0, 1000;\r\n        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));\r\n    }\r\n\r\n    \/* Dot at the end *\/\r\n    .progress-dot-outer {\r\n        fill: #ffffff;\r\n        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));\r\n    }\r\n\r\n    .progress-dot-inner {\r\n        fill: #ffd700;\r\n        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));\r\n    }\r\n\r\n    \/* Center text *\/\r\n    .progress-text {\r\n        position: absolute;\r\n        top: 50%;\r\n        left: 50%;\r\n        transform: translate(-50%, -50%);\r\n        font-family: 'Arial', sans-serif;\r\n        font-weight: 700;\r\n        color: white;\r\n        text-align: center;\r\n        font-size: clamp(1.5rem, 4vw, 2.5rem);\r\n        line-height: 1;\r\n        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);\r\n    }\r\n\r\n    .counter {\r\n        display: inline-block;\r\n    }\r\n\r\n    .plus-sign {\r\n        color: #ffd700;\r\n        margin-left: 0.3rem;\r\n        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));\r\n    }\r\n\r\n    \/* Responsive adjustments *\/\r\n    @media (max-width: 768px) {\r\n        .circular-progress {\r\n            max-width: 320px;\r\n        }\r\n        .progress-bar {\r\n            stroke-width: 6;\r\n        }\r\n    }\r\n\r\n\r\n\/*@media (min-width: 400px) & (max-width:500px)  {*\/\r\n\/*        .circular-progress {*\/\r\n\/*            max-width: 200px;*\/\r\n\/*        }*\/\r\n\/*    }*\/\r\n\r\n    @media (max-width: 480px) {\r\n        .circular-progress {\r\n            max-width: 230px;\r\n        }\r\n        .progress-bar {\r\n            stroke-width: 5;\r\n        }\r\n        .progress-container {\r\n            padding: 1rem;\r\n        }\r\n    }\r\n\r\n    @media (prefers-reduced-motion: reduce) {\r\n        .circular-progress {\r\n            transition: none;\r\n        }\r\n    }\r\n    \r\n    @media (min-width:1030px) and (max-width:1300px){\r\n        .progress-container{\r\n            padding:0px !important;\r\n        }\r\n        .progress-text{\r\n            clamp(1.5rem, 4vw, 2rem); \r\n        }\r\n        .elementor-12 .elementor-element.elementor-element-f192e4b{\r\n            --padding-left:0px !important; \r\n            --padding-right:0px !important; \r\n        }\r\n    }\r\n    \r\n<\/style><div class=\"progress-container\"><div class=\"circular-progress\" tabindex=\"0\" role=\"button\" aria-label=\"Circular progress showing 4000+\"><svg class=\"progress-svg\" viewBox=\"0 0 300 300\"><!-- Inner dashed circle (golden) --><circle class=\"inner-dashed-circle\" cx=\"150\" cy=\"150\" r=\"120\"><\/circle><!-- Outer track (white dashed) --><circle class=\"outer-track\" cx=\"150\" cy=\"150\" r=\"140\"><\/circle><!-- Progress bar (golden) --><circle class=\"progress-bar\" cx=\"150\" cy=\"150\" r=\"140\"><\/circle><!-- Dot at the end (white outer + golden inner) --><circle class=\"progress-dot-outer\" cx=\"150\" cy=\"10\" r=\"10\"><\/circle><circle class=\"progress-dot-inner\" cx=\"150\" cy=\"10\" r=\"6\"><\/circle><\/svg><div class=\"progress-text\"><span class=\"counter\">0<\/span><span class=\"plus-sign\">+<\/span><\/div><\/div><\/div><script>document.addEventListener('DOMContentLoaded', () => {\r\n    \/\/ Get ALL progress bars on the page\r\n    const allProgressBars = document.querySelectorAll('.circular-progress');\r\n\r\n    \/\/ Setup each progress bar independently\r\n    allProgressBars.forEach((progressElement) => {\r\n        const progressBar = progressElement.querySelector('.progress-bar');\r\n        const dotOuter = progressElement.querySelector('.progress-dot-outer');\r\n        const dotInner = progressElement.querySelector('.progress-dot-inner');\r\n        const counter = progressElement.querySelector('.counter');\r\n\r\n        \/\/ Circle calculations\r\n        const radius = 140;\r\n        const circumference = 2 * Math.PI * radius;\r\n        const centerX = 150;\r\n        const centerY = 150;\r\n\r\n        \/\/ Set initial state - start dot at the beginning (top of circle)\r\n        progressBar.style.strokeDasharray = `0 ${circumference}`;\r\n        dotOuter.setAttribute('cx', '150');\r\n        dotOuter.setAttribute('cy', '10');\r\n        dotInner.setAttribute('cx', '150');\r\n        dotInner.setAttribute('cy', '10');\r\n\r\n        \/\/ Animation function\r\n        const animateProgress = () => {\r\n            if (progressElement.dataset.animated === 'true') return;\r\n            progressElement.dataset.animated = 'true';\r\n\r\n            const targetValue = 100;\r\n            const targetPercentage = 75; \/\/ 75% of the circle\r\n            const startTime = performance.now();\r\n            const duration = 2000;\r\n\r\n            function animate(currentTime) {\r\n                const elapsed = currentTime - startTime;\r\n                const progress = Math.min(elapsed \/ duration, 1);\r\n                const easeOut = 1 - Math.pow(1 - progress, 3);\r\n\r\n                \/\/ Update progress bar\r\n                const currentPercentage = targetPercentage * easeOut;\r\n                const currentDashArray = (circumference * currentPercentage) \/ 100;\r\n                progressBar.style.strokeDasharray = `${currentDashArray} ${circumference}`;\r\n\r\n                \/\/ Update dot position to follow the end of progress bar\r\n                const angle = (currentPercentage \/ 100) * 360; \/\/ degrees\r\n                const angleRad = (angle * Math.PI) \/ 180;\r\n                \r\n                const dotX = centerX + radius * Math.cos(angleRad);\r\n                const dotY = centerY + radius * Math.sin(angleRad);\r\n\r\n                dotOuter.setAttribute('cx', dotX);\r\n                dotOuter.setAttribute('cy', dotY);\r\n                dotInner.setAttribute('cx', dotX);\r\n                dotInner.setAttribute('cy', dotY);\r\n\r\n                \/\/ Update counter\r\n                const currentValue = Math.floor(targetValue * easeOut);\r\n                counter.textContent = currentValue;\r\n\r\n                if (progress < 1) {\r\n                    requestAnimationFrame(animate);\r\n                } else {\r\n                    counter.textContent = targetValue;\r\n                }\r\n            }\r\n\r\n            requestAnimationFrame(animate);\r\n        };\r\n\r\n        \/\/ Reset function\r\n        const resetProgress = () => {\r\n            progressElement.dataset.animated = 'false';\r\n            progressElement.classList.remove('is-visible');\r\n\r\n            \/\/ Reset to initial position (no transition needed as we're using requestAnimationFrame)\r\n            progressBar.style.strokeDasharray = `0 ${circumference}`;\r\n            dotOuter.setAttribute('cx', '150');\r\n            dotOuter.setAttribute('cy', '10');\r\n            dotInner.setAttribute('cx', '150');\r\n            dotInner.setAttribute('cy', '10');\r\n            counter.textContent = '0';\r\n        };\r\n\r\n        \/\/ Click to replay\r\n        progressElement.addEventListener('click', () => {\r\n            resetProgress();\r\n            setTimeout(() => {\r\n                progressElement.classList.add('is-visible');\r\n                animateProgress();\r\n            }, 100);\r\n        });\r\n\r\n        \/\/ Keyboard support\r\n        progressElement.addEventListener('keydown', (e) => {\r\n            if (e.key === 'Enter' || e.key === ' ') {\r\n                e.preventDefault();\r\n                resetProgress();\r\n                setTimeout(() => {\r\n                    progressElement.classList.add('is-visible');\r\n                    animateProgress();\r\n                }, 100);\r\n            }\r\n        });\r\n\r\n        \/\/ Auto-start animation on scroll into view\r\n        if ('IntersectionObserver' in window) {\r\n            const observer = new IntersectionObserver((entries) => {\r\n                entries.forEach(entry => {\r\n                    if (entry.isIntersecting) {\r\n                        progressElement.classList.add('is-visible');\r\n                        setTimeout(animateProgress, 300);\r\n                    } else {\r\n                        resetProgress();\r\n                    }\r\n                });\r\n            }, { threshold: 0.5 });\r\n\r\n            observer.observe(progressElement);\r\n        } else {\r\n            \/\/ Fallback for older browsers\r\n            progressElement.classList.add('is-visible');\r\n            animateProgress();\r\n        }\r\n    });\r\n});\r\n<\/script>\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<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-4206b53 e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"70663\" data-id=\"4206b53\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-b6303a0 e-con-full e-flex e-con e-child\" data-eae-slider=\"415\" data-id=\"b6303a0\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-aaf6a0b e-con-full e-flex e-con e-child\" data-eae-slider=\"27313\" data-id=\"aaf6a0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16f74a1 elementor-widget elementor-widget-heading\" data-id=\"16f74a1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u062a\u0639\u0631\u0641 \u0639\u0644\u0649 \u0633\u0627\u0633<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-73f0bd9 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"73f0bd9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u0641\u064a \u0634\u0631\u0643\u0629 SAS \u0644\u0644\u0635\u0646\u0627\u0639\u0627\u062a \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629\u060c \u0646\u0635\u0645\u0645 \u0648\u0646\u064f\u0635\u0646\u0651\u0639 \u0645\u0641\u0627\u062a\u064a\u062d \u0648\u0645\u0622\u062e\u0630 \u0648\u0645\u0644\u062d\u0642\u0627\u062a \u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0639\u0627\u0644\u064a\u0629 \u0627\u0644\u062c\u0648\u062f\u0629 \u062a\u062c\u0645\u0639 \u0628\u064a\u0646 \u0627\u0644\u062a\u0635\u0645\u064a\u0645 \u0627\u0644\u0639\u0635\u0631\u064a \u0648\u0627\u0644\u0633\u0644\u0627\u0645\u0629 \u0648\u0627\u0644\u0645\u062a\u0627\u0646\u0629.<br \/>\u0645\u0646\u0630 \u0639\u0627\u0645 \u0661\u0669\u0668\u0667\u060c \u0648\u0646\u062d\u0646 \u0645\u0644\u062a\u0632\u0645\u0648\u0646 \u0628\u062a\u0642\u062f\u064a\u0645 \u062d\u0644\u0648\u0644 \u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0645\u0628\u062a\u0643\u0631\u0629 \u062a\u0644\u0628\u064a \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a \u0627\u0644\u0645\u062a\u0646\u0648\u0639\u0629 \u0644\u0644\u0645\u0646\u0627\u0632\u0644 \u0648\u0627\u0644\u0634\u0631\u0643\u0627\u062a \u0648\u0627\u0644\u0645\u0634\u0627\u0631\u064a\u0639 \u0627\u0644\u0643\u0628\u064a\u0631\u0629 \u0639\u0644\u0649 \u062d\u062f \u0633\u0648\u0627\u0621.<\/p><p>\u062a\u064f\u0635\u0645\u064e\u0651\u0645 \u0645\u0646\u062a\u062c\u0627\u062a\u0646\u0627 \u0628\u062f\u0642\u0629 \u0645\u062a\u0646\u0627\u0647\u064a\u0629 \u0648\u062a\u064f\u0635\u0646\u064e\u0651\u0639 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0623\u062d\u062f\u062b \u062a\u0642\u0646\u064a\u0627\u062a \u0627\u0644\u062a\u0635\u0646\u064a\u0639 \u0644\u0636\u0645\u0627\u0646 \u0623\u062f\u0627\u0621 \u064a\u062f\u0648\u0645 \u0637\u0648\u064a\u0644\u0627\u064b \u0648\u0645\u0638\u0647\u0631 \u0623\u0646\u064a\u0642.<br \/>\u0628\u0641\u0636\u0644 \u0627\u0644\u0627\u0628\u062a\u0643\u0627\u0631 \u0627\u0644\u0645\u0633\u062a\u0645\u0631\u060c \u0648\u062a\u0634\u0643\u064a\u0644\u0629 \u0648\u0627\u0633\u0639\u0629 \u0645\u0646 \u0627\u0644\u062a\u0635\u0627\u0645\u064a\u0645 \u0648\u0627\u0644\u062a\u0634\u0637\u064a\u0628\u0627\u062a\u060c \u0648\u0645\u0639\u0627\u064a\u064a\u0631 \u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0635\u0627\u0631\u0645\u0629\u060c \u0631\u0633\u0651\u062e\u062a SAS \u0645\u0643\u0627\u0646\u062a\u0647\u0627 \u0643\u0627\u0633\u0645 \u0645\u0648\u062b\u0648\u0642 \u0641\u064a \u0633\u0648\u0642 \u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0621 \u0627\u0644\u0645\u0635\u0631\u064a\u0629.<\/p><p>\u0627\u0646\u0637\u0644\u0627\u0642\u0627\u064b \u0645\u0646 \u0625\u064a\u0645\u0627\u0646\u0646\u0627 \u0628\u0623\u0646 \u0643\u0644 \u062a\u0641\u0635\u064a\u0644 \u0645\u0647\u0645\u060c \u0646\u0648\u0627\u0635\u0644 \u062a\u0648\u0633\u064a\u0639 \u0645\u0646\u062a\u062c\u0627\u062a\u0646\u0627 \u0648\u062a\u062d\u0633\u064a\u0646 \u062a\u062c\u0631\u0628\u0629 \u0627\u0644\u0639\u0645\u0644\u0627\u0621 &#8211; \u0645\u0645\u0627 \u064a\u062f\u0639\u0645 \u0627\u0644\u062d\u064a\u0627\u0629 \u0627\u0644\u0639\u0635\u0631\u064a\u0629 \u0628\u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0639\u0627\u0644\u064a\u0629 \u0648\u0627\u0644\u0623\u0646\u0627\u0642\u0629 \u0648\u0627\u0644\u0633\u0644\u0627\u0645\u0629 \u0648\u0627\u0644\u0645\u0648\u062b\u0648\u0642\u064a\u0629.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4ef6c05 elementor-absolute next-section-btn elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"4ef6c05\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"#SLIDE1\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"38\" height=\"67\" viewBox=\"0 0 38 67\" fill=\"none\"><rect x=\"2\" y=\"2\" width=\"33.2222\" height=\"63\" rx=\"16.6111\" stroke=\"#F9D24A\" stroke-width=\"4\"><\/rect><circle cx=\"18.6112\" cy=\"51.6975\" r=\"6.2037\" fill=\"#F9D24A\"><\/circle><\/svg>\t\t\t<\/a>\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 class=\"has_eae_slider elementor-element elementor-element-d11a5ea e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"90153\" data-id=\"d11a5ea\" data-element_type=\"container\" data-e-type=\"container\" id=\"SLIDE1\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-a27e417 e-con-full e-flex e-con e-child\" data-eae-slider=\"86343\" data-id=\"a27e417\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-41bc799 elementor-widget elementor-widget-heading\" data-id=\"41bc799\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0644\u0645\u0627\u0630\u0627 \u062a\u062e\u062a\u0627\u0631\u0646\u0627\u061f<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b5ce74c elementor-widget__width-initial elementor-widget elementor-widget-eael-adv-accordion\" data-id=\"b5ce74c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-adv-accordion.default\">\n\t\t\t\t\t            <div class=\"eael-adv-accordion\" id=\"eael-adv-accordion-b5ce74c\" data-scroll-on-click=\"no\" data-scroll-speed=\"300\" data-accordion-id=\"b5ce74c\" data-accordion-type=\"accordion\" data-toogle-speed=\"300\">\n            <div class=\"eael-accordion-list\">\n\t\t\t\t\t<div id=\"-\" class=\"elementor-tab-title eael-accordion-header\" tabindex=\"0\" data-tab=\"1\" aria-controls=\"elementor-tab-content-1901\"><span class=\"eael-accordion-tab-title\">\u062c\u0648\u062f\u0629 \u0639\u0627\u0644\u064a\u0629 \u0648\u0623\u0645\u0627\u0646<\/span><svg aria-hidden=\"true\" class=\"fa-toggle e-font-icon-svg e-fas-angle-left\" viewBox=\"0 0 256 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"><\/path><\/svg><\/div><div id=\"elementor-tab-content-1901\" class=\"eael-accordion-content clearfix\" data-tab=\"1\" aria-labelledby=\"-\"><p>\u064a\u062a\u0645 \u062a\u0635\u0646\u064a\u0639 \u0643\u0644 \u0645\u0646\u062a\u062c \u0645\u0646 \u0645\u0646\u062a\u062c\u0627\u062a SAS \u0645\u0646 \u0645\u0648\u0627\u062f \u0645\u0645\u062a\u0627\u0632\u0629 \u0648\u064a\u062a\u0645 \u0627\u062e\u062a\u0628\u0627\u0631\u0647 \u0648\u0641\u0642\u064b\u0627 \u0644\u0645\u0639\u0627\u064a\u064a\u0631 \u062c\u0648\u062f\u0629 \u0635\u0627\u0631\u0645\u0629 \u0644\u0636\u0645\u0627\u0646 \u0627\u0644\u0645\u062a\u0627\u0646\u0629 \u0648\u0627\u0644\u0645\u0648\u062b\u0648\u0642\u064a\u0629 \u0648\u0627\u0644\u0633\u0644\u0627\u0645\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629 \u0644\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u064a\u0648\u0645\u064a.<\/p><\/div>\n\t\t\t\t\t<\/div><div class=\"eael-accordion-list\">\n\t\t\t\t\t<div id=\"-\" class=\"elementor-tab-title eael-accordion-header\" tabindex=\"0\" data-tab=\"2\" aria-controls=\"elementor-tab-content-1902\"><span class=\"eael-accordion-tab-title\">\u062a\u0635\u0645\u064a\u0645 \u0639\u0635\u0631\u064a \u0648\u062a\u0646\u0648\u0639<\/span><svg aria-hidden=\"true\" class=\"fa-toggle e-font-icon-svg e-fas-angle-left\" viewBox=\"0 0 256 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"><\/path><\/svg><\/div><div id=\"elementor-tab-content-1902\" class=\"eael-accordion-content clearfix\" data-tab=\"2\" aria-labelledby=\"-\"><p>\u0646\u0642\u062f\u0645 \u0645\u062c\u0645\u0648\u0639\u0629 \u0648\u0627\u0633\u0639\u0629 \u0645\u0646 \u0627\u0644\u062a\u0635\u0627\u0645\u064a\u0645 \u0627\u0644\u0623\u0646\u064a\u0642\u0629 \u0648\u0627\u0644\u0623\u0644\u0648\u0627\u0646 \u0627\u0644\u0631\u0627\u0642\u064a\u0629 \u0627\u0644\u062a\u064a \u062a\u0643\u0645\u0644 \u0628\u0634\u0643\u0644 \u0645\u062b\u0627\u0644\u064a \u0623\u064a \u0646\u0645\u0637 \u062f\u0627\u062e\u0644\u064a \u0648\u0623\u064a \u0630\u0648\u0642 \u0634\u062e\u0635\u064a.<\/p><\/div>\n\t\t\t\t\t<\/div><div class=\"eael-accordion-list\">\n\t\t\t\t\t<div id=\"-\" class=\"elementor-tab-title eael-accordion-header\" tabindex=\"0\" data-tab=\"3\" aria-controls=\"elementor-tab-content-1903\"><span class=\"eael-accordion-tab-title\">\u062d\u0644\u0648\u0644 \u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0645\u0628\u062a\u0643\u0631\u0629<\/span><svg aria-hidden=\"true\" class=\"fa-toggle e-font-icon-svg e-fas-angle-left\" viewBox=\"0 0 256 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"><\/path><\/svg><\/div><div id=\"elementor-tab-content-1903\" class=\"eael-accordion-content clearfix\" data-tab=\"3\" aria-labelledby=\"-\"><p>\u0645\u0646 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0627\u0644\u0630\u0643\u064a\u0629 \u0625\u0644\u0649 \u062a\u0642\u0646\u064a\u0627\u062a \u062a\u0634\u0637\u064a\u0628 \u0627\u0644\u0623\u0633\u0637\u062d \u0627\u0644\u0645\u062a\u0642\u062f\u0645\u0629\u060c \u062a\u0648\u0627\u0635\u0644 SAS \u0627\u0644\u0627\u0628\u062a\u0643\u0627\u0631\u060c \u0645\u0645\u0627 \u064a\u062c\u0639\u0644 \u0627\u0644\u0623\u0646\u0638\u0645\u0629 \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0623\u0643\u062b\u0631 \u0630\u0643\u0627\u0621\u064b \u0648\u0623\u0645\u0627\u0646\u064b\u0627 \u0648\u0623\u0646\u0627\u0642\u0629.<\/p><\/div>\n\t\t\t\t\t<\/div><div class=\"eael-accordion-list\">\n\t\t\t\t\t<div id=\"-\" class=\"elementor-tab-title eael-accordion-header\" tabindex=\"0\" data-tab=\"4\" aria-controls=\"elementor-tab-content-1904\"><span class=\"eael-accordion-tab-title\">\u0639\u0644\u0627\u0645\u0629 \u062a\u062c\u0627\u0631\u064a\u0629 \u0645\u0635\u0631\u064a\u0629 \u0645\u0648\u062b\u0648\u0642\u0629<\/span><svg aria-hidden=\"true\" class=\"fa-toggle e-font-icon-svg e-fas-angle-left\" viewBox=\"0 0 256 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"><\/path><\/svg><\/div><div id=\"elementor-tab-content-1904\" class=\"eael-accordion-content clearfix\" data-tab=\"4\" aria-labelledby=\"-\"><p>\u062a\u062c\u0645\u0639 \u0634\u0631\u0643\u0629 SAS \u0628\u064a\u0646 \u0627\u0644\u0645\u0639\u0627\u064a\u064a\u0631 \u0627\u0644\u0639\u0627\u0644\u0645\u064a\u0629 \u0648\u0627\u0644\u062e\u0628\u0631\u0629 \u0627\u0644\u0639\u0645\u064a\u0642\u0629 \u0644\u062a\u0642\u062f\u064a\u0645 \u0645\u0646\u062a\u062c\u0627\u062a \u062a\u0641\u0647\u0645 \u0627\u062d\u062a\u064a\u0627\u062c\u0627\u062a \u0627\u0644\u0633\u0648\u0642 \u0648\u062a\u0644\u0628\u064a\u0647\u0627 \u062d\u0642\u0627\u064b.<\/p><\/div>\n\t\t\t\t\t<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-abeb8df e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"24576\" data-id=\"abeb8df\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e85fad elementor-widget elementor-widget-html\" data-id=\"5e85fad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- DEFINITIVE CODE: SOLID TRIANGLE ARROW - NO 'X' -->\r\n\r\n<style>\r\n\/* 1. Prepare the button container for positioning *\/\r\n.e-hotspot__button {\r\n    position: relative;\r\n}\r\n\r\n\/* 2. Create the TRIANGLE SHAPE ONLY *\/\r\n.e-hotspot__button::after {\r\n    content: '' !important; \r\n    \r\n    \/* These lines create the triangle shape using borders *\/\r\n    width: 0;\r\n    height: 0;\r\n      border-top: 15px solid transparent !important;\r\n      border-bottom: 15px solid transparent !important;\r\n      border-left: 25px solid #FFD43B !important;\r\n    \r\n    \/* Positioning and Hiding *\/\r\n    position: absolute;\r\n    top: 50%;\r\n    right: 100%;\r\n    margin-right: 15px;\r\n  transform: translate(-50%, -50%) !important; \/* center inside button *\/\r\n    opacity: 0;\r\n    visibility: hidden;\r\n    transition: all 0.3s ease;\r\n    z-index: 99;\r\n}\r\n\r\n\/* 3. This is our trigger to SHOW the shape *\/\r\n.e-hotspot__button.arrow-is-visible::after {\r\n    opacity: 1 !important;\r\n    visibility: visible !important;\r\n}\r\n<\/style>\r\n\r\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.6.0\/jquery.min.js\"><\/script>\r\n<script>\r\njQuery(document).ready(function($) {\r\n    $(document).on('click', '.e-hotspot__button', function() {\r\n        var clickedButton = $(this);\r\n        var wasAlreadyVisible = clickedButton.hasClass('arrow-is-visible');\r\n        $('.e-hotspot__button').removeClass('arrow-is-visible');\r\n        if (!wasAlreadyVisible) {\r\n            clickedButton.addClass('arrow-is-visible');\r\n        }\r\n    });\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-296cc94 elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel\" data-id=\"296cc94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;79cfb0c&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;3d0d627&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"rtl\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 2\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-2e30db5 e-con-full e-flex e-con e-child\" data-eae-slider=\"19463\" data-id=\"2e30db5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec6d2e6 elementor-widget elementor-widget-hotspot\" data-id=\"ec6d2e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;hotspot&quot;:[{&quot;_id&quot;:&quot;64d9561&quot;,&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sas.dev2.tqnia.me\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Vector.svg&quot;,&quot;id&quot;:459},&quot;library&quot;:&quot;svg&quot;},&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;personality, supports your lifestyle, and brings comfort every day.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:77,&quot;sizes&quot;:[]},&quot;__dynamic__&quot;:null,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null}],&quot;tooltip_position&quot;:&quot;left&quot;,&quot;tooltip_position_mobile&quot;:&quot;top&quot;,&quot;hotspot_sequenced_animation&quot;:&quot;no&quot;,&quot;tooltip_trigger&quot;:&quot;click&quot;,&quot;tooltip_animation&quot;:&quot;e-hotspot--fade-in-out&quot;}\" data-widget_type=\"hotspot.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1920\" height=\"978\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq.jpg\" class=\"attachment-full size-full wp-image-6012\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq.jpg 1920w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-300x153.jpg 300w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-1024x522.jpg 1024w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-768x391.jpg 768w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-1536x782.jpg 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-64d9561  e-hotspot--position-right    e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\"><path d=\"M16.6021 9.88554H9.88725V16.6004H7.64896V9.88554H0.934082V7.64725H7.64896V0.932373H9.88725V7.64725H16.6021V9.88554Z\" fill=\"white\"><\/path><\/svg><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>personality, supports your lifestyle, and brings comfort every day.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\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\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 2\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-ba64d5d e-con-full e-flex e-con e-child\" data-eae-slider=\"93939\" data-id=\"ba64d5d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b3756ec elementor-widget elementor-widget-hotspot\" data-id=\"b3756ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;hotspot&quot;:[{&quot;_id&quot;:&quot;64d9561&quot;,&quot;hotspot_icon&quot;:{&quot;value&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/sas.dev2.tqnia.me\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Vector.svg&quot;,&quot;id&quot;:459},&quot;library&quot;:&quot;svg&quot;},&quot;hotspot_tooltip_content&quot;:&quot;&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;\\u062a\\u064f\\u0636\\u0641\\u064a \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\\u0629\\u060c \\u0648\\u062a\\u062f\\u0639\\u0645 \\u0646\\u0645\\u0637 \\u062d\\u064a\\u0627\\u062a\\u0643\\u060c \\u0648\\u062a\\u062c\\u0644\\u0628 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629 \\u0643\\u0644 \\u064a\\u0648\\u0645.&lt;\\\/p&gt;\\n&lt;p&gt;\\u064a\\u062a\\u0639\\u0644\\u0642 \\u0627\\u0644\\u0623\\u0645\\u0631 \\u0628\\u062e\\u0644\\u0642 \\u0645\\u0633\\u0627\\u062d\\u0629 \\u062a\\u0639\\u0643\\u0633 \\u0634\\u062e\\u0635\\u064a\\u062a\\u0643&lt;\\\/p&gt;\\n&lt;p&gt;personality, supports your lifestyle, and brings comfort every day.&lt;\\\/p&gt;\\n&quot;,&quot;hotspot_offset_x&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:77,&quot;sizes&quot;:[]},&quot;__dynamic__&quot;:null,&quot;hotspot_label&quot;:&quot;&quot;,&quot;hotspot_link&quot;:{&quot;url&quot;:&quot;&quot;,&quot;is_external&quot;:&quot;&quot;,&quot;nofollow&quot;:&quot;&quot;,&quot;custom_attributes&quot;:&quot;&quot;},&quot;hotspot_custom_size&quot;:&quot;no&quot;,&quot;hotspot_horizontal&quot;:&quot;right&quot;,&quot;hotspot_vertical&quot;:&quot;top&quot;,&quot;hotspot_tooltip_position&quot;:&quot;no&quot;,&quot;hotspot_position&quot;:null}],&quot;tooltip_position&quot;:&quot;left&quot;,&quot;tooltip_position_mobile&quot;:&quot;top&quot;,&quot;hotspot_sequenced_animation&quot;:&quot;no&quot;,&quot;tooltip_trigger&quot;:&quot;click&quot;,&quot;tooltip_animation&quot;:&quot;e-hotspot--fade-in-out&quot;}\" data-widget_type=\"hotspot.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1920\" height=\"978\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq.jpg\" class=\"attachment-full size-full wp-image-6012\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq.jpg 1920w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-300x153.jpg 300w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-1024x522.jpg 1024w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-768x391.jpg 768w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/qq-1536x782.jpg 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\n\t\t\t\t\t\t<div class=\"e-hotspot elementor-repeater-item-64d9561  e-hotspot--position-right    e-hotspot--icon\">\n\n\t\t\t\t\t\t\t\t<div class=\"e-hotspot__button e-hotspot--soft-beat\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__icon\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\"><path d=\"M16.6021 9.88554H9.88725V16.6004H7.64896V9.88554H0.934082V7.64725H7.64896V0.932373H9.88725V7.64725H16.6021V9.88554Z\" fill=\"white\"><\/path><\/svg><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"e-hotspot__tooltip  e-hotspot--tooltip-position e-hotspot--fade-in-out \" >\n\t\t\t\t\t\t<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>\u062a\u064f\u0636\u0641\u064a \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u060c \u0648\u062a\u062f\u0639\u0645 \u0646\u0645\u0637 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u062c\u0644\u0628 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/p>\n<p>\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643<\/p>\n<p>personality, supports your lifestyle, and brings comfort every day.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\n\t\t\t<\/div>\n\n\t\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\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"44\" viewBox=\"0 0 24 44\" fill=\"none\"><path d=\"M23.8267 3.9333L20.29 0.399971L1.02671 19.6566C0.716194 19.9652 0.469766 20.3321 0.301606 20.7363C0.133446 21.1404 0.046875 21.5739 0.046875 22.0116C0.046875 22.4494 0.133446 22.8828 0.301606 23.287C0.469766 23.6912 0.716194 24.0581 1.02671 24.3666L20.29 43.6333L23.8234 40.1L5.74338 22.0166L23.8267 3.9333Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"44\" viewBox=\"0 0 24 44\" fill=\"none\"><path d=\"M0.17329 3.9333L3.70996 0.399971L22.9733 19.6566C23.2838 19.9652 23.5302 20.3321 23.6984 20.7363C23.8666 21.1404 23.9531 21.5739 23.9531 22.0116C23.9531 22.4494 23.8666 22.8828 23.6984 23.287C23.5302 23.6912 23.2838 24.0581 22.9733 24.3666L3.70996 43.6333L0.176622 40.1L18.2566 22.0166L0.17329 3.9333Z\" fill=\"white\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-2c28c96 e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"10240\" data-id=\"2c28c96\" 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-81403ab elementor-widget elementor-widget-heading\" data-id=\"81403ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0645\u0646\u062a\u062c\u0646\u0627<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d2d8cf3 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"d2d8cf3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u064a\u062a\u0639\u0644\u0642 \u0627\u0644\u0623\u0645\u0631 \u0628\u062e\u0644\u0642 \u0645\u0633\u0627\u062d\u0629 \u062a\u0639\u0643\u0633 \u0634\u062e\u0635\u064a\u062a\u0643\u060c \u0648\u062a\u062f\u0639\u0645 \u0623\u0633\u0644\u0648\u0628 \u062d\u064a\u0627\u062a\u0643\u060c \u0648\u062a\u0648\u0641\u0631 \u0644\u0643 \u0627\u0644\u0631\u0627\u062d\u0629 \u0643\u0644 \u064a\u0648\u0645.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e5ab2b6 elementor-widget elementor-widget-n-carousel\" data-id=\"e5ab2b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;b1cdebe&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;4c81e0b&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;1a2294a&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:30,&quot;sizes&quot;:[]},&quot;offset_sides&quot;:&quot;both&quot;,&quot;offset_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:200,&quot;sizes&quot;:[]},&quot;offset_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;offset_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:60,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"rtl\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-616a1bd e-con-full e-flex e-con e-child\" data-eae-slider=\"70823\" data-id=\"616a1bd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-86b1d14 e-con-full e-flex e-con e-child\" data-eae-slider=\"55728\" data-id=\"86b1d14\" 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-6da7e05 elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"6da7e05\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0627\u0644\u0623\u0646\u0638\u0645\u0629 \u0648\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a \u0627\u0644\u0630\u0643\u064a\u0629<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c21dfb elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"0c21dfb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Duis \u0648 Tellus \u0648\u0636\u062d\u0643 \u0645\u0631\u0643\u0628\u0627\u062a Vulputate. \u062d\u062a\u0649 \u0636\u062d\u0643 \u0627\u0644\u0646\u062e\u0628\u0629. \u062d\u062a\u0649 \u0641\u064a \u0628\u0639\u0636 \u0627\u0644\u0623\u062d\u064a\u0627\u0646. \u0643\u0645\u0627 \u0647\u0648 \u0627\u0644\u062d\u0627\u0644 \u0641\u064a ullamcorper\u060c \u0641\u0625\u0646 ligula eu tempor congue\u060c \u0625\u064a\u0631\u0648\u0633 \u0647\u0648 euismod turpis\u060c id tincidunt sapien risus a quam. \u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u0646\u0648\u0639\u060c \u062c\u0639\u0628\u0629 \u0642\u0628\u064a\u062d\u0629 \u0648\u0645\u0631\u064a\u062d\u0629.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\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<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-647526b e-con-full e-flex e-con e-child\" data-eae-slider=\"50826\" data-id=\"647526b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-f8fce1d e-con-full e-flex e-con e-child\" data-eae-slider=\"98024\" data-id=\"f8fce1d\" 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-c7d804b elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"c7d804b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0627\u0644\u0623\u0646\u0638\u0645\u0629 \u0648\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a \u0627\u0644\u0630\u0643\u064a\u0629<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-999fc54 elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"999fc54\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Duis \u0648 Tellus \u0648\u0636\u062d\u0643 \u0645\u0631\u0643\u0628\u0627\u062a Vulputate. \u062d\u062a\u0649 \u0636\u062d\u0643 \u0627\u0644\u0646\u062e\u0628\u0629. \u062d\u062a\u0649 \u0641\u064a \u0628\u0639\u0636 \u0627\u0644\u0623\u062d\u064a\u0627\u0646. Ut ullamcorper, ligula eu tempor congue, eros est euismod turpis, id tincidunt sapien risus a quam. \u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u0646\u0648\u0639\u060c \u062c\u0639\u0628\u0629 \u0642\u0628\u064a\u062d\u0629 \u0648\u0645\u0631\u064a\u062d\u0629.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\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<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-1a87a90 e-con-full e-flex e-con e-child\" data-eae-slider=\"55902\" data-id=\"1a87a90\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-5d1e538 e-con-full e-flex e-con e-child\" data-eae-slider=\"94347\" data-id=\"5d1e538\" 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-c454c10 elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"c454c10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0627\u0644\u0623\u0646\u0638\u0645\u0629 \u0648\u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a \u0627\u0644\u0630\u0643\u064a\u0629<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-abee1a6 elementor-widget__width-initial hover-text elementor-widget elementor-widget-heading\" data-id=\"abee1a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Duis \u0648 Tellus \u0648\u0636\u062d\u0643 \u0645\u0631\u0643\u0628\u0627\u062a Vulputate. \u062d\u062a\u0649 \u0636\u062d\u0643 \u0627\u0644\u0646\u062e\u0628\u0629. \u062d\u062a\u0649 \u0641\u064a \u0628\u0639\u0636 \u0627\u0644\u0623\u062d\u064a\u0627\u0646. Ut ullamcorper, ligula eu tempor congue, eros est euismod turpis, id tincidunt sapien risus a quam. \u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u0646\u0648\u0639\u060c \u062c\u0639\u0628\u0629 \u0642\u0628\u064a\u062d\u0629 \u0648\u0645\u0631\u064a\u062d\u0629.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-84bc534 e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"19230\" data-id=\"84bc534\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-ce7bb8e e-con-full e-flex e-con e-child\" data-eae-slider=\"61858\" data-id=\"ce7bb8e\" 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-ebd18d0 elementor-widget elementor-widget-heading\" data-id=\"ebd18d0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0645\u062f\u0648\u0646\u0627\u062a\u0646\u0627 \u0648\u0623\u062e\u0628\u0627\u0631\u0646\u0627<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e3412f7 custom-arrow-nav elementor-arrows-position-inside elementor-widget elementor-widget-loop-carousel\" data-id=\"e3412f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:5947,&quot;slides_to_show&quot;:&quot;4&quot;,&quot;_skin&quot;:&quot;post&quot;,&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;.elementor-loop-container&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-carousel.post\">\n\t\t\t\t\t\t\t<div class=\"swiper elementor-loop-container elementor-grid\" role=\"list\" dir=\"rtl\">\n\t\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t<style id=\"loop-5947\">body{\n    background:black;\n}.elementor-5947 .elementor-element.elementor-element-deaeb99{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-icon.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon-wrapper{text-align:center;}.elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-stacked .elementor-icon{background-color:#F9D24A39;color:#FAD7811C;}.elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-framed .elementor-icon, .elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-default .elementor-icon{color:#F9D24A39;border-color:#F9D24A39;}.elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-framed .elementor-icon, .elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-default .elementor-icon svg{fill:#F9D24A39;}.elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-framed .elementor-icon{background-color:#FAD7811C;}.elementor-5947 .elementor-element.elementor-element-ec9573b.elementor-view-stacked .elementor-icon svg{fill:#FAD7811C;}.elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon{font-size:1.3rem;border-width:3px 3px 3px 3px;}.elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon svg{height:1.3rem;}body:not(.rtl) .elementor-5947 .elementor-element.elementor-element-ec9573b{right:0%;}body.rtl .elementor-5947 .elementor-element.elementor-element-ec9573b{left:0%;}.elementor-5947 .elementor-element.elementor-element-ec9573b{top:0px;--e-transform-flipX:-1;}.elementor-5947 .elementor-element.elementor-element-bfc43a9{--display:flex;--justify-content:flex-end;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-5947 .elementor-element.elementor-element-bfc43a9:not(.elementor-motion-effects-element-type-background), .elementor-5947 .elementor-element.elementor-element-bfc43a9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/Subtract-1-e1766401624357.png\");background-position:center center;background-repeat:no-repeat;background-size:contain;}.elementor-5947 .elementor-element.elementor-element-f3fc15e{--display:flex;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:40px;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-5947 .elementor-element.elementor-element-d9c53a9 .elementor-heading-title{font-family:\"Bahij\", Sans-serif;font-size:18px;font-weight:600;color:var( --e-global-color-secondary );}.elementor-5947 .elementor-element.elementor-element-60ea05c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-5947 .elementor-element.elementor-element-530ed5b img{height:25vh;border-radius:20px 20px 20px 20px;}.elementor-5947 .elementor-element.elementor-element-530ed5b{padding:14px 14px 0px 14px;}@media(max-width:1024px){.elementor-5947 .elementor-element.elementor-element-530ed5b img{height:90%;}}@media(max-width:767px){.elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon{font-size:25px;}.elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon svg{height:25px;}.elementor-5947 .elementor-element.elementor-element-ec9573b{margin:0px -15px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;top:0px;}body:not(.rtl) .elementor-5947 .elementor-element.elementor-element-ec9573b{right:11%;}body.rtl .elementor-5947 .elementor-element.elementor-element-ec9573b{left:11%;}.elementor-5947 .elementor-element.elementor-element-bfc43a9{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}.elementor-5947 .elementor-element.elementor-element-f3fc15e{--width:60%;--align-items:flex-end;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:5px;--padding-bottom:5px;--padding-left:5px;--padding-right:5px;}.elementor-5947 .elementor-element.elementor-element-f3fc15e.e-con{--align-self:flex-start;}.elementor-5947 .elementor-element.elementor-element-d9c53a9{text-align:end;}.elementor-5947 .elementor-element.elementor-element-d9c53a9 .elementor-heading-title{font-size:20px;}.elementor-5947 .elementor-element.elementor-element-60ea05c{--width:80%;--margin-top:7%;--margin-bottom:7%;--margin-left:7%;--margin-right:7%;}.elementor-5947 .elementor-element.elementor-element-530ed5b img{width:85%;max-width:85%;}}\/* Start custom CSS for icon, class: .elementor-element-ec9573b *\/@media (min-width:300px) and (max-width:500px){\r\n    \r\n    .elementor-5947 .elementor-element.elementor-element-ec9573b{\r\n        left:12% !important;\r\n    }\r\n    .elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon{\r\n        font-size:16px;\r\n    }\r\n    .elementor-5947 .elementor-element.elementor-element-ec9573b .elementor-icon{\r\n        padding:0.3rem;\r\n    }\r\n}\r\n\r\n@media (min-width:770px) and (max-width:1020){\r\n .elementor-5947 .elementor-element.elementor-element-ec9573b{\r\n            left:3% !important;\r\n}\r\n}\r\n\r\n\r\n\r\n\r\n@media (min-width:300px) and (max-width:500px){\r\n\r\n    .elementor-726 .elementor-element.elementor-element-530ed5b{\r\n        padding:0px !important;\r\n    }\r\n}\r\n\r\n@media (min-width:880px) and (max-width:1024px){\r\n    .elementor-726 .elementor-element.elementor-element-530ed5b img{\r\n        width:80% !important;\r\n    }\r\n    .elementor-5947 .elementor-element.elementor-element-ec9573b{\r\n        left:6% !important;\r\n    }\r\n        .elementor-726 .elementor-element.elementor-element-d9c53a9 .elementor-heading-title{\r\n\r\n            margin-left:2rem !important;\r\n        }\r\n    \r\n}\r\n\r\n@media (min-width:600px) and (max-width:764px){\r\n    .elementor-726 .elementor-element.elementor-element-d9c53a9 .elementor-heading-title{\r\n        margin-left:3rem;\r\n    }\r\n}\r\n\r\n\r\n@media (min-width:1030px) and (max-width:1400px){\r\n.elementor-726 .elementor-element.elementor-element-530ed5b img{\r\n    height: 10vh !important; \r\n}\r\n}\/* End custom CSS *\/\n\/* Start custom CSS for theme-post-title, class: .elementor-element-d9c53a9 *\/@media (min-width: 1200px) {\r\n  \r\n  .elementor-5947 .elementor-element.elementor-element-d9c53a9{\r\n      margin-left:20px;\r\n  }\r\n  \r\n  \r\n}\/* End custom CSS *\/\n\/* Start custom CSS for container, class: .elementor-element-f3fc15e *\/@media (max-width: 767px){\n    .elementor-5947 .elementor-element.elementor-element-f3fc15e{\n        width:70%;\n    }\n}\/* End custom CSS *\/\n\/* Start custom CSS for container, class: .elementor-element-60ea05c *\/@media (min-width: 1200px) {\r\n  \r\n  .elementor-5947 .elementor-element.elementor-element-60ea05c{\r\n      padding-left:20px;\r\n      padding-right:20px;\r\n  }\r\n  \r\n  \r\n}\/* End custom CSS *\/\n\/* Start custom CSS for container, class: .elementor-element-deaeb99 *\/.elementor-5947 .elementor-element.elementor-element-deaeb99{\n    direction: rtl;\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"5947\" class=\"elementor elementor-5947 elementor-726 swiper-slide e-loop-item e-loop-item-6028 post-6028 post type-post status-publish format-standard has-post-thumbnail hentry category-179 tag-180\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-deaeb99 e-flex e-con-boxed e-con e-parent\" data-eae-slider=\"96478\" data-id=\"deaeb99\" 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<a class=\"eael-wrapper-link-ec9573b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-3\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-ec9573b\" class=\"elementor-element elementor-element-ec9573b elementor-view-framed elementor-absolute e-transform elementor-shape-circle elementor-widget elementor-widget-icon\" data-id=\"ec9573b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_transform_flipX_effect&quot;:&quot;transform&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\"><path d=\"M13.2468 10.9749L13.2468 3.90381L6.17578 3.90381\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><path d=\"M13.2466 3.90381L4.0542 13.0962\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-bfc43a9 e-con-full e-flex e-con e-child\" data-eae-slider=\"2261\" data-id=\"bfc43a9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-f3fc15e e-con-full e-flex e-con e-child\" data-eae-slider=\"18343\" data-id=\"f3fc15e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-d9c53a9 --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-3\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-d9c53a9\" class=\"elementor-element elementor-element-d9c53a9 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"d9c53a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u0627\u0633\u0645 \u0627\u0644\u0645\u062f\u0648\u0646\u0629<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-60ea05c e-con-full e-flex e-con e-child\" data-eae-slider=\"97034\" data-id=\"60ea05c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-530ed5b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-3\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-530ed5b\" class=\"elementor-element elementor-element-530ed5b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"530ed5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"720\" height=\"540\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/45929698a4220ca6ef125a19f5f8bbd3d25f44b7.jpg\" class=\"attachment-large size-large wp-image-714\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/45929698a4220ca6ef125a19f5f8bbd3d25f44b7.jpg 720w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/45929698a4220ca6ef125a19f5f8bbd3d25f44b7-300x225.jpg 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/>\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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"5947\" class=\"elementor elementor-5947 elementor-726 swiper-slide e-loop-item e-loop-item-6035 post-6035 post type-post status-publish format-standard has-post-thumbnail hentry category-179 tag-180\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-deaeb99 e-flex e-con-boxed e-con e-parent\" data-eae-slider=\"96478\" data-id=\"deaeb99\" 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<a class=\"eael-wrapper-link-ec9573b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-2\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-ec9573b\" class=\"elementor-element elementor-element-ec9573b elementor-view-framed elementor-absolute e-transform elementor-shape-circle elementor-widget elementor-widget-icon\" data-id=\"ec9573b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_transform_flipX_effect&quot;:&quot;transform&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\"><path d=\"M13.2468 10.9749L13.2468 3.90381L6.17578 3.90381\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><path d=\"M13.2466 3.90381L4.0542 13.0962\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-bfc43a9 e-con-full e-flex e-con e-child\" data-eae-slider=\"2261\" data-id=\"bfc43a9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-f3fc15e e-con-full e-flex e-con e-child\" data-eae-slider=\"18343\" data-id=\"f3fc15e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-d9c53a9 --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-2\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-d9c53a9\" class=\"elementor-element elementor-element-d9c53a9 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"d9c53a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u0627\u0633\u0645 \u0627\u0644\u0645\u062f\u0648\u0646\u0629<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-60ea05c e-con-full e-flex e-con e-child\" data-eae-slider=\"97034\" data-id=\"60ea05c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-530ed5b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d8%a7%d8%b3%d9%85-%d8%a7%d9%84%d9%85%d8%af%d9%88%d9%86%d8%a9-2\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-530ed5b\" class=\"elementor-element elementor-element-530ed5b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"530ed5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"720\" height=\"540\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/96db7795b8b1bc73c645056b25151832ff6de3e0.png\" class=\"attachment-large size-large wp-image-713\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/96db7795b8b1bc73c645056b25151832ff6de3e0.png 720w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/96db7795b8b1bc73c645056b25151832ff6de3e0-300x225.png 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/>\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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"5947\" class=\"elementor elementor-5947 elementor-726 swiper-slide e-loop-item e-loop-item-10 post-10 post type-post status-publish format-standard has-post-thumbnail hentry category-179\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-deaeb99 e-flex e-con-boxed e-con e-parent\" data-eae-slider=\"96478\" data-id=\"deaeb99\" 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<a class=\"eael-wrapper-link-ec9573b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d9%85%d8%b1%d8%ad%d8%a8%d8%a7%d9%8b-%d8%a8%d8%a7%d9%84%d8%b9%d8%a7%d9%84%d9%85\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-ec9573b\" class=\"elementor-element elementor-element-ec9573b elementor-view-framed elementor-absolute e-transform elementor-shape-circle elementor-widget elementor-widget-icon\" data-id=\"ec9573b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_transform_flipX_effect&quot;:&quot;transform&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\"><path d=\"M13.2468 10.9749L13.2468 3.90381L6.17578 3.90381\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><path d=\"M13.2466 3.90381L4.0542 13.0962\" stroke=\"#F9D24A\" stroke-width=\"2\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-bfc43a9 e-con-full e-flex e-con e-child\" data-eae-slider=\"2261\" data-id=\"bfc43a9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-f3fc15e e-con-full e-flex e-con e-child\" data-eae-slider=\"18343\" data-id=\"f3fc15e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-d9c53a9 --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d9%85%d8%b1%d8%ad%d8%a8%d8%a7%d9%8b-%d8%a8%d8%a7%d9%84%d8%b9%d8%a7%d9%84%d9%85\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-d9c53a9\" class=\"elementor-element elementor-element-d9c53a9 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"d9c53a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u0627\u0633\u0645 \u0627\u0644\u0645\u062f\u0648\u0646\u0629<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-60ea05c e-con-full e-flex e-con e-child\" data-eae-slider=\"97034\" data-id=\"60ea05c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<a class=\"eael-wrapper-link-530ed5b --eael-wrapper-link-tag\" href=\"https:\/\/sas.dev2.tqnia.me\/ar\/%d9%85%d8%b1%d8%ad%d8%a8%d8%a7%d9%8b-%d8%a8%d8%a7%d9%84%d8%b9%d8%a7%d9%84%d9%85\/\"><\/a>\t\t<div data-eael-wrapper-link=\"eael-wrapper-link-530ed5b\" class=\"elementor-element elementor-element-530ed5b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"530ed5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"540\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/92d82dada34a65da7bced52d47aeb37df69e4e2f.jpg\" class=\"attachment-large size-large wp-image-691\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/92d82dada34a65da7bced52d47aeb37df69e4e2f.jpg 720w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/09\/92d82dada34a65da7bced52d47aeb37df69e4e2f-300x225.jpg 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/>\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\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>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\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 class=\"has_eae_slider elementor-element elementor-element-06c181a e-con-full zoom-scroll e-flex e-con e-parent\" data-eae-slider=\"32994\" data-id=\"06c181a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-94d63b4 e-con-full e-flex e-con e-child\" data-eae-slider=\"86696\" data-id=\"94d63b4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9649cc5 elementor-widget elementor-widget-heading\" data-id=\"9649cc5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0634\u0647\u0627\u062f\u0629<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-824eb0d elementor-widget elementor-widget-heading\" data-id=\"824eb0d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0645\u0627 \u064a\u0642\u0648\u0644\u0647 \u0639\u0645\u064a\u0644\u0646\u0627<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ff7561d elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"ff7561d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0639\u0644\u0649 \u0645\u062f\u0627\u0631 \u0623\u0643\u062b\u0631 \u0645\u0646 \u0623\u0631\u0628\u0639\u064a\u0646 \u0639\u0627\u0645\u064b\u0627\u060c \u0628\u0646\u062a \u0634\u0631\u0643\u0629 SAS \u0644\u0644\u0635\u0646\u0627\u0639\u0627\u062a \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0639\u0644\u0627\u0642\u0627\u062a \u0645\u062a\u064a\u0646\u0629 \u0645\u0639 \u0627\u0644\u0645\u0648\u0632\u0639\u064a\u0646 \u0648\u0627\u0644\u0645\u0647\u0646\u062f\u0633\u064a\u0646 \u0648\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u0646\u0647\u0627\u0626\u064a\u064a\u0646 \u0641\u064a \u062c\u0645\u064a\u0639 \u0623\u0646\u062d\u0627\u0621 \u0645\u0635\u0631.<br>\u0631\u0636\u0627\u0647\u0645 \u0648\u062b\u0642\u062a\u0647\u0645 \u0647\u0645\u0627 \u0627\u0644\u0645\u0642\u064a\u0627\u0633 \u0627\u0644\u062d\u0642\u064a\u0642\u064a \u0644\u0646\u062c\u0627\u062d\u0646\u0627.\n\u0643\u0644 \u0634\u0647\u0627\u062f\u0629 \u0646\u062a\u0644\u0642\u0627\u0647\u0627 \u062a\u0639\u0643\u0633 \u0627\u0644\u062a\u0632\u0627\u0645\u0646\u0627 \u0627\u0644\u0645\u0633\u062a\u0645\u0631 \u0628\u0627\u0644\u062c\u0648\u062f\u0629 \u0648\u0627\u0644\u0645\u0648\u062b\u0648\u0642\u064a\u0629 \u0648\u0627\u0644\u0627\u0628\u062a\u0643\u0627\u0631.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-9156d87 e-con-full e-flex e-con e-child\" data-eae-slider=\"46212\" data-id=\"9156d87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-258822f elementor-arrows-position-outside elementor-pagination-type-bullets elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel\" data-id=\"258822f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;33f6ebb&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;5d81681&quot;},{&quot;slide_title&quot;:&quot;Slide #1&quot;,&quot;_id&quot;:&quot;19efb9a&quot;}],&quot;slides_to_show&quot;:&quot;3&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:30,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;2&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"rtl\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"polite\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f9d1809 e-flex e-con-boxed e-con e-child\" data-eae-slider=\"41983\" data-id=\"f9d1809\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-185014b e-con-full e-flex e-con e-child\" data-eae-slider=\"68443\" data-id=\"185014b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-c6061f6 e-con-full e-flex e-con e-child\" data-eae-slider=\"50062\" data-id=\"c6061f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6190137 elementor-widget elementor-widget-image\" data-id=\"6190137\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-image-6020\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png 150w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a.png 200w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-da1fa4f elementor-widget elementor-widget-heading\" data-id=\"da1fa4f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0623\u062d\u0645\u062f \u0645.<br><p style=\"font-weight: 400;font-size:12px;margin-top:5px\">\u0645\u0648\u0632\u0639 \u0645\u0639\u062f\u0627\u062a \u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 - \u0627\u0644\u0642\u0627\u0647\u0631\u0629<\/p><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-34050f1 e-con-full e-flex e-con e-child\" data-eae-slider=\"2704\" data-id=\"34050f1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ccd45a4 elementor-widget elementor-widget-rating\" data-id=\"ccd45a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"rating.default\">\n\t\t\t\t\t\t\t<div class=\"e-rating\" itemtype=\"https:\/\/schema.org\/Rating\" itemscope=\"\" itemprop=\"reviewRating\">\n\t\t\t<meta itemprop=\"worstRating\" content=\"0\">\n\t\t\t<meta itemprop=\"bestRating\" content=\"5\">\n\t\t\t<div class=\"e-rating-wrapper\" itemprop=\"ratingValue\" content=\"4.5\" role=\"img\" aria-label=\"Rated 4.5 out of 5\">\n\t\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\" style=\"--e-rating-icon-marked-width: 50%;\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1cb041c elementor-widget elementor-widget-heading\" data-id=\"1cb041c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\"\u062a\u062a\u0645\u064a\u0632 \u0645\u0646\u062a\u062c\u0627\u062a SAS \u0628\u062c\u0648\u062f\u062a\u0647\u0627 \u0648\u0645\u062a\u0627\u0646\u062a\u0647\u0627. \u0644\u0642\u062f \u0639\u0645\u0644\u0646\u0627 \u0645\u0639\u0647\u0645 \u0644\u0633\u0646\u0648\u0627\u062a\u060c \u0648\u062b\u0628\u0627\u062a \u0623\u062f\u0627\u0626\u0647\u0645 \u0644\u0627 \u0645\u062b\u064a\u0644 \u0644\u0647.\"<\/p>\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\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-3380848 e-flex e-con-boxed e-con e-child\" data-eae-slider=\"63169\" data-id=\"3380848\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-d700779 e-con-full e-flex e-con e-child\" data-eae-slider=\"82915\" data-id=\"d700779\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-7a6e3f3 e-con-full e-flex e-con e-child\" data-eae-slider=\"2603\" data-id=\"7a6e3f3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8a40324 elementor-widget elementor-widget-image\" data-id=\"8a40324\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-image-6020\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png 150w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a.png 200w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b8dab09 elementor-widget elementor-widget-heading\" data-id=\"b8dab09\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0627\u0644\u0645\u0647\u0646\u062f\u0633 \u0631\u0627\u0646\u064a\u0627 \u0633.<br><p style=\"font-weight: 400;font-size:12px;margin-top:5px\">\u0645\u0633\u062a\u0634\u0627\u0631 \u0645\u0634\u0627\u0631\u064a\u0639 \u0627\u0644\u0625\u0636\u0627\u0621\u0629<\/p><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-b30c0b0 e-con-full e-flex e-con e-child\" data-eae-slider=\"6871\" data-id=\"b30c0b0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8e48bf0 elementor-widget elementor-widget-rating\" data-id=\"8e48bf0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"rating.default\">\n\t\t\t\t\t\t\t<div class=\"e-rating\" itemtype=\"https:\/\/schema.org\/Rating\" itemscope=\"\" itemprop=\"reviewRating\">\n\t\t\t<meta itemprop=\"worstRating\" content=\"0\">\n\t\t\t<meta itemprop=\"bestRating\" content=\"5\">\n\t\t\t<div class=\"e-rating-wrapper\" itemprop=\"ratingValue\" content=\"4.5\" role=\"img\" aria-label=\"Rated 4.5 out of 5\">\n\t\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\" style=\"--e-rating-icon-marked-width: 50%;\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4316cef elementor-widget elementor-widget-heading\" data-id=\"4316cef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\"\u0641\u0631\u064a\u0642 \u0645\u062d\u062a\u0631\u0641\u060c \u0648\u062a\u0635\u0627\u0645\u064a\u0645 \u0623\u0646\u064a\u0642\u0629\u060c \u0648\u0645\u0646\u062a\u062c\u0627\u062a \u062a\u062f\u0648\u0645 \u0637\u0648\u064a\u0644\u0627\u064b. SAS \u0627\u0633\u0645 \u0646\u062b\u0642 \u0628\u0647.\"<\/p>\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\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 3\">\n\t\t\t\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-6e05bc1 e-flex e-con-boxed e-con e-child\" data-eae-slider=\"94577\" data-id=\"6e05bc1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-3f0a2e5 e-con-full e-flex e-con e-child\" data-eae-slider=\"2793\" data-id=\"3f0a2e5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-6e4ae27 e-con-full e-flex e-con e-child\" data-eae-slider=\"4360\" data-id=\"6e4ae27\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-06a2b0a elementor-widget elementor-widget-image\" data-id=\"06a2b0a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-image-6020\" alt=\"\" srcset=\"https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a-150x150.png 150w, https:\/\/sas.dev2.tqnia.me\/wp-content\/uploads\/2025\/10\/8b3f84ca3130b5b5e260698e48a3e80147d5a60a.png 200w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ecdc150 elementor-widget elementor-widget-heading\" data-id=\"ecdc150\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0645\u062c\u0645\u0648\u0639\u0629 \u0645\u0648\u062f\u0631\u0646 \u0625\u0644\u0643\u062a\u0631\u064a\u0643<br><p style=\"font-weight: 400;font-size:12px;margin-top:5px\">\u0627\u0644\u0625\u0633\u0643\u0646\u062f\u0631\u064a\u0629<\/p><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-588d1d6 e-con-full e-flex e-con e-child\" data-eae-slider=\"86025\" data-id=\"588d1d6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e7b1b5 elementor-widget elementor-widget-rating\" data-id=\"1e7b1b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"rating.default\">\n\t\t\t\t\t\t\t<div class=\"e-rating\" itemtype=\"https:\/\/schema.org\/Rating\" itemscope=\"\" itemprop=\"reviewRating\">\n\t\t\t<meta itemprop=\"worstRating\" content=\"0\">\n\t\t\t<meta itemprop=\"bestRating\" content=\"5\">\n\t\t\t<div class=\"e-rating-wrapper\" itemprop=\"ratingValue\" content=\"4.5\" role=\"img\" aria-label=\"Rated 4.5 out of 5\">\n\t\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"e-icon\">\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-marked\" style=\"--e-rating-icon-marked-width: 50%;\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"e-icon-wrapper e-icon-unmarked\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-star\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z\"><\/path><\/svg>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-926351a elementor-widget elementor-widget-heading\" data-id=\"926351a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\"\u0645\u0646 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0625\u0644\u0649 \u0625\u0636\u0627\u0621\u0629 LED\u060c \u062a\u0642\u062f\u0645 SAS \u062f\u0627\u0626\u0645\u064b\u0627 \u0645\u0646\u062a\u062c\u0627\u062a \u062a\u0644\u0628\u064a \u062a\u0648\u0642\u0639\u0627\u062a \u0639\u0645\u0644\u0627\u0626\u0646\u0627.\"<\/p>\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\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-left\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/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","protected":false},"excerpt":{"rendered":"<p>\u062a\u0639\u0631\u0641 \u0639\u0644\u0649 \u0625\u0646\u062c\u0627\u0632\u0627\u062a\u0646\u0627 \u062a\u0639\u0627\u0648\u0646 \u0645\u0639\u0646\u0627 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u062d\u0644\u0648\u0644 \u0644\u0648\u062c\u0633\u062a\u064a\u0629 \u0633\u0644\u0633\u0629 \u062a\u0639\u0632\u0632 \u0627\u0644\u0643\u0641\u0627\u0621\u0629 \u0648\u0627\u0644\u0646\u0645\u0648. \u0645\u0646 \u0627\u0644\u0634\u062d\u0646 \u0625\u0644\u0649 \u0627\u0644\u062a\u062e\u0632\u064a\u0646\u060c \u0646\u0636\u0645\u0646 \u0644\u0643 \u0623\u0646 \u062a\u0633\u064a\u0631 \u0623\u0639\u0645\u0627\u0644\u0643 \u0628\u0634\u0643\u0644 \u0623\u0633\u0631\u0639 \u0648\u0623\u0643\u062b\u0631 \u0630\u0643\u0627\u0621\u064b. \u0628\u0641\u0636\u0644 \u062e\u0628\u0631\u062a\u0647\u0627 \u0627\u0644\u062a\u064a \u062a\u0632\u064a\u062f \u0639\u0646 40 \u0639\u0627\u0645\u064b\u0627\u060c \u0628\u0646\u062a \u0634\u0631\u0643\u0629 SAS \u0644\u0644\u0635\u0646\u0627\u0639\u0627\u062a \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629 \u0633\u0645\u0639\u0629 \u0642\u0648\u064a\u0629 \u0643\u0648\u0627\u062d\u062f\u0629 \u0645\u0646 \u0627\u0644\u0634\u0631\u0643\u0627\u062a \u0627\u0644\u0631\u0627\u0626\u062f\u0629 \u0641\u064a \u0645\u0635\u0631 \u0641\u064a \u062a\u0635\u0646\u064a\u0639 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0627\u0644\u0643\u0647\u0631\u0628\u0627\u0626\u064a\u0629. 0+ \u0646\u0641\u062e\u0631 \u0628\u062a\u0642\u062f\u064a\u0645 \u0623\u0643\u062b\u0631 \u0645\u0646 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-64","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/pages\/64","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/comments?post=64"}],"version-history":[{"count":47,"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/pages\/64\/revisions"}],"predecessor-version":[{"id":6332,"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/pages\/64\/revisions\/6332"}],"wp:attachment":[{"href":"https:\/\/sas.dev2.tqnia.me\/ar\/wp-json\/wp\/v2\/media?parent=64"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}