{"id":465,"date":"2024-08-29T09:13:49","date_gmt":"2024-08-29T09:13:49","guid":{"rendered":"http:\/\/vtigercrm.com.vn\/?page_id=465"},"modified":"2024-09-24T07:32:59","modified_gmt":"2024-09-24T07:32:59","slug":"pricing","status":"publish","type":"page","link":"https:\/\/vtigercrm.com.vn\/en\/pricing\/","title":{"rendered":"Pricing"},"content":{"rendered":"<div id=\"gap-1809651771\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1809651771 {\n  padding-top: 0px;\n}\n@media (min-width:550px) {\n  #gap-1809651771 {\n    padding-top: 50px;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-center\"  id=\"row-1742350841\">\n\n\n\t<div id=\"col-2097219166\" class=\"col medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(250, 251, 252);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-1053075052\" class=\"text\">\n\t\t\n\n<h1 class=\"display-4 font-weight-bold mb-5\">Take advantage of the mixed pricing to lower your cost<\/h1>\n\t\t\n<style>\n#text-1053075052 {\n  font-size: 1.35rem;\n  text-align: center;\n  color: rgb(22, 28, 44);\n}\n#text-1053075052 > * {\n  color: rgb(22, 28, 44);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-4045300249\" class=\"text\">\n\t\t\n\n<p>Pay for only what you use by having the lower Single App license for majority of your users, instead of the Standard license fee<\/p>\n\t\t\n<style>\n#text-4045300249 {\n  font-size: 0.95rem;\n  text-align: center;\n  color: rgb(22, 28, 44);\n}\n#text-4045300249 > * {\n  color: rgb(22, 28, 44);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"gap-288719796\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-288719796 {\n  padding-top: 80px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t<div id=\"text-1528664000\" class=\"text\">\n\t\t\n\n<h2 class=\"text-center mb-6\">Calculate Your Price<\/h2>\n\t\t\n<style>\n#text-1528664000 {\n  color: rgb(22, 28, 45);\n}\n#text-1528664000 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"tabbed-content calculate-price-tabs\">\n\t\t\t\n\t\t\t<ul class=\"nav nav-divided nav-uppercase nav-size-normal nav-center\"><li class=\"tab active has-icon\"><a href=\"#tab_one-t\u0103ng-tr\u01b0\u1edfng\"><span>one growth<\/span><\/a><\/li>\n<li class=\"tab has-icon\"><a href=\"#tab_one-chuy\u00ean-nghi\u1ec7p\"><span>one professional<\/span><\/a><\/li>\n<li class=\"tab has-icon\"><a href=\"#tab_one-doanh-nghi\u1ec7p\"><span>one enterprise<\/span><\/a><\/li>\n<li class=\"tab has-icon\"><a href=\"#tab_one-ai\"><span>one ai<\/span><\/a><\/li><\/ul><div class=\"tab-panels\"><div class=\"panel active entry-content\" id=\"tab_one-t\u0103ng-tr\u01b0\u1edfng\">\n\n\n\n<div style=\"text-align: center\" class=\"toggle-switch\">\n  Billed Annual\n  <label class=\"calculating-your-price-switch one-growth-switch\">\n    <input type=\"checkbox\" id=\"one-growth-toggle\">\n    <span class=\"calculating-your-price-slider round\"><\/span>\n  <\/label>\n  Billed Monthly\n<\/div>\n\n\n<script>\njQuery(document).ready(function() {\n  \/\/ Toggle text based on the checkbox state\n  jQuery(\"#one-growth-toggle\").change(function() {\n    if (jQuery(this).is(\":checked\")) {\n      \/\/ If the toggle is turned on (checked), change the text to \"H\u00c0NG TH\u00c1NG\"\n      jQuery(\"#period_toggle_one_growth\").text(\"H\u00c0NG TH\u00c1NG\");\n    } else {\n      \/\/ If the toggle is turned off, change the text back to \"H\u00c0NG N\u0102M\"\n      jQuery(\"#period_toggle_one_growth\").text(\"H\u00c0NG N\u0102M\");\n    }\n  });\n});\n<\/script>\n\n<script>\n  \/\/ Function to get the price from data attributes dynamically\n  function getPricesGrowth() {\n    var $priceElement = jQuery(\".one-growth-price\"); \/\/ Reference to the price element\n    return {\n      annualPrice: parseInt($priceElement.data(\"annual\")),\n      monthlyPrice: parseInt($priceElement.data(\"monthly\")),\n    };\n  }\n\n  \/\/ Function to update total price based on quantity and toggle state\n  function updateTotalPriceGrowth() {\n    var prices = getPricesGrowth(); \/\/ Get the annual and monthly prices dynamically\n    var qty = parseInt(jQuery(\".one-growth-product-qty\").val());\n    var pricePerProduct = jQuery(\"#one-growth-toggle\").is(\":checked\") ? prices.monthlyPrice : prices.annualPrice; \/\/ Monthly or Annual price\n    var totalPrice = pricePerProduct * qty;\n    jQuery(\".one-growth-price\").text(\"USD \" + totalPrice);\n  }\n\n  jQuery(document).ready(function () {\n    \/\/ Initialize price based on current state of toggle and quantity\n    updateTotalPriceGrowth();\n\n    \/\/ Event listener for toggle switch to change between annual and monthly prices\n    jQuery(\"#one-growth-toggle\").change(function () {\n      updateTotalPriceGrowth();\n    });\n\n    \/\/ Quantity input functionality for \"one-growth\"\n    var QtyInputGrowth = (function () {\n      var $qtyInputs = jQuery(\".one-growth-qty-input\");\n\n      if (!$qtyInputs.length) {\n        return;\n      }\n\n      var $inputs = $qtyInputs.find(\".one-growth-product-qty\");\n      var $countBtn = $qtyInputs.find(\".one-growth-qty-add, .one-growth-qty-minus\");\n      var qtyMin = parseInt($inputs.attr(\"min\"));\n      var qtyMax = parseInt($inputs.attr(\"max\"));\n\n      \/\/ Handle input change\n      $inputs.change(function () {\n        var $this = jQuery(this);\n        var $minusBtn = $this.siblings(\".one-growth-qty-minus\");\n        var $addBtn = $this.siblings(\".one-growth-qty-add\");\n        var qty = parseInt($this.val());\n\n        if (isNaN(qty) || qty <= qtyMin) {\n          $this.val(qtyMin);\n          $minusBtn.attr(\"disabled\", true);\n        } else {\n          $minusBtn.attr(\"disabled\", false);\n\n          if (qty >= qtyMax) {\n            $this.val(qtyMax);\n            $addBtn.attr('disabled', true);\n          } else {\n            $this.val(qty);\n            $addBtn.attr('disabled', false);\n          }\n        }\n\n        updateTotalPriceGrowth(); \/\/ Update total price when quantity changes\n      });\n\n      \/\/ Handle increment and decrement buttons\n      $countBtn.click(function () {\n        var operator = this.dataset.action;\n        var $this = jQuery(this);\n        var $input = $this.siblings(\".one-growth-product-qty\");\n        var qty = parseInt($input.val());\n\n        if (operator == \"add\") {\n          qty += 1;\n          if (qty >= qtyMin + 1) {\n            $this.siblings(\".one-growth-qty-minus\").attr(\"disabled\", false);\n          }\n\n          if (qty >= qtyMax) {\n            $this.attr(\"disabled\", true);\n          }\n        } else {\n          qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n          if (qty == qtyMin) {\n            $this.attr(\"disabled\", true);\n          }\n\n          if (qty < qtyMax) {\n            $this.siblings(\".one-growth-qty-add\").attr(\"disabled\", false);\n          }\n        }\n\n        $input.val(qty);\n        updateTotalPriceGrowth(); \/\/ Update total price when button is clicked\n      });\n    })();\n  });\n<\/script>\n\n\t<div id=\"gap-1481385264\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1481385264 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-middle align-center calculate-price\"  id=\"row-1299932882\">\n\n\n\t<div id=\"col-2104859045\" class=\"col price-info medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-3444450703\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Standard User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with full access to all business functions available in the edition across all apps in Vtiger<\/p>\n<\/div>\n\t\t\n<style>\n#text-3444450703 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-3444450703 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-1514977971\" class=\"col price-amount medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse\"  id=\"row-327168098\">\n\n\n\t<div id=\"col-1291218241\" class=\"col price-amount-inner small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(255,255,255);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-3464764220\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Standard<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-3464764220 {\n  line-height: 1;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"one-growth-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus one-growth-qty-minus\" data-action=\"minus\" type=\"button\">-<\/button>\n  <input class=\"product-qty one-growth-product-qty\" type=\"number\" name=\"product-qty\" min=\"0\" max=\"999\" value=\"1\">\n  <button class=\"qty-count qty-count--add one-growth-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n<p><span style=\"font-size: 90%;\"><strong><span style=\"color: #506690;\">*Max users - 15<\/span><\/strong><\/span><\/p>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1291218241 > .col-inner {\n  padding: 70px 0px 70px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-1899773358\" class=\"col price-total medium-2 small-12 large-2\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-1674489573\" class=\"text\">\n\t\t\n\n<p><strong><span style=\"font-size: 100%;\">BILLED\u00a0<span id=\"period_toggle_one_growth\">ANNUALLY<\/span><\/span><\/strong><\/p>\n\t\t\n<style>\n#text-1674489573 {\n  color: rgb(22, 28, 45);\n}\n#text-1674489573 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-1777491013\" class=\"text\">\n\t\t\n\n<p><span data-annual=\"12\" data-monthly=\"15\" class=\"calculating-your-price one-growth-price\" style=\"font-size: 300%;\">USD 12<\/span><\/p>\n<p>per month<\/p>\n\t\t\n<style>\n#text-1777491013 {\n  color: rgb(22, 28, 45);\n}\n#text-1777491013 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n<a class=\"button primary price-total-btn\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"text-6222457\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\">NO CREDIT CARD REQUIRED<\/span><\/p>\n\t\t\n<style>\n#text-6222457 {\n  color: rgb(80, 102, 144);\n}\n#text-6222457 > * {\n  color: rgb(80, 102, 144);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-1299932882 > .col > .col-inner {\n  padding: 30px 0px 30px 0px;\n}\n<\/style>\n<\/div>\n\n<\/div>\n<div class=\"panel entry-content\" id=\"tab_one-chuy\u00ean-nghi\u1ec7p\">\n\n\n\n<div style=\"text-align: center\" class=\"toggle-switch\">\n  Billed Annual\n  <label class=\"calculating-your-price-switch one-professional-switch\">\n    <input type=\"checkbox\" id=\"one-professional-toggle\">\n    <span class=\"calculating-your-price-slider round\"><\/span>\n  <\/label>\n  Billed Monthly\n<\/div>\n\n<script>\njQuery(document).ready(function() {\n  \/\/ Toggle text based on the checkbox state\n  jQuery(\"#one-professional-toggle\").change(function() {\n    if (jQuery(this).is(\":checked\")) {\n      \/\/ If the toggle is turned on (checked), change the text to \"H\u00c0NG TH\u00c1NG\"\n      jQuery(\"#period_toggle_one_professional\").text(\"H\u00c0NG TH\u00c1NG\");\n    } else {\n      \/\/ If the toggle is turned off, change the text back to \"H\u00c0NG N\u0102M\"\n      jQuery(\"#period_toggle_one_professional\").text(\"H\u00c0NG N\u0102M\");\n    }\n  });\n});\n<\/script>\n\n\n<script>\n \/\/ Function to get the primary and add-on prices dynamically\nfunction getPricesProfessional() {\n  var $priceElement = jQuery(\".one-professional-price\"); \/\/ Reference to the price element\n  return {\n    annualPrice: parseInt($priceElement.data(\"annual\")),    \/\/ Primary annual price\n    monthlyPrice: parseInt($priceElement.data(\"monthly\")),  \/\/ Primary monthly price\n    singleAnnualPrice: parseInt($priceElement.attr(\"single-annual\")),   \/\/ Add-on annual price\n    singleMonthlyPrice: parseInt($priceElement.attr(\"single-monthly\"))  \/\/ Add-on monthly price\n  };\n}\n\n\/\/ Function to update total price based on quantity of the primary product, add-on, and toggle state\nfunction updateTotalPriceProfessional() {\n  var prices = getPricesProfessional(); \/\/ Get the annual and monthly prices dynamically\n  \n  var qty = parseInt(jQuery(\".one-professional-product-qty\").val()); \/\/ Primary product quantity\n  var singleQty = parseInt(jQuery(\".single-professional-product-qty\").val()); \/\/ Add-on product quantity\n\n  \/\/ Determine which prices to use (monthly or annual) based on the toggle\n  var pricePerProduct = jQuery(\"#one-professional-toggle\").is(\":checked\") ? prices.monthlyPrice : prices.annualPrice; \/\/ Primary product price\n  var pricePerAddon = jQuery(\"#one-professional-toggle\").is(\":checked\") ? prices.singleMonthlyPrice : prices.singleAnnualPrice; \/\/ Add-on product price\n\n  \/\/ Calculate the total price\n  var totalPrice = (pricePerProduct * qty) + (pricePerAddon * singleQty);\n  \n  \/\/ Update the displayed price\n  jQuery(\".one-professional-price\").text(\"USD \" + totalPrice);\n}\n\njQuery(document).ready(function () {\n  \/\/ Initialize price based on the current state of toggle and quantity\n  updateTotalPriceProfessional();\n\n  \/\/ Event listener for toggle switch to change between annual and monthly prices\n  jQuery(\"#one-professional-toggle\").change(function () {\n    updateTotalPriceProfessional();\n  });\n\n  \/\/ Functionality for \"one-professional\" quantity input\n  QtyInputProfessional = (function () {\n    var $qtyInputs = jQuery(\".one-professional-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".one-professional-product-qty\");\n    var $countBtn = $qtyInputs.find(\".one-professional-qty-add, .one-professional-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".one-professional-qty-minus\");\n      var $addBtn = $this.siblings(\".one-professional-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceProfessional(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".one-professional-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".one-professional-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".one-professional-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceProfessional(); \/\/ Update total price when button is clicked\n    });\n  })();\n\n  \/\/ Functionality for add-on quantity input\n  var QtyInputSingleProfessional = (function () {\n    var $qtyInputs = jQuery(\".single-professional-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".single-professional-product-qty\");\n    var $countBtn = $qtyInputs.find(\".single-professional-qty-add, .single-professional-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".single-professional-qty-minus\");\n      var $addBtn = $this.siblings(\".single-professional-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceProfessional(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".single-professional-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".single-professional-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".single-professional-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceProfessional(); \/\/ Update total price when button is clicked\n    });\n  })();\n});\n\n<\/script>\n\n\t<div id=\"gap-1165623017\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1165623017 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-middle align-center calculate-price\"  id=\"row-2009908291\">\n\n\n\t<div id=\"col-442293436\" class=\"col price-info medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-1285892253\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Standard User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with full access to all business functions available in the edition across all apps in Vtiger<\/p>\n<\/div>\n\t\t\n<style>\n#text-1285892253 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-1285892253 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<hr class=\"price-info-border\">\n\n\t<div id=\"text-1953895949\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Single App User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with Read\/Write access to one of the 5 apps<br \/>(Sales \/ Marketing \/ Help Desk \/ Projects \/ Inventory), and Read-only access to the modules in other 4 apps to get 360 degree view<\/p>\n<\/div>\n\t\t\n<style>\n#text-1953895949 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-1953895949 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-414122230\" class=\"col price-amount medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse\"  id=\"row-1277926334\">\n\n\n\t<div id=\"col-2042796742\" class=\"col price-amount-inner small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255,255,255);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2657470314\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Standard<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-2657470314 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"one-professional-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus one-professional-qty-minus\" data-action=\"minus\" type=\"button\">-<\/button>\n  <input class=\"product-qty one-professional-product-qty\" type=\"number\" name=\"product-qty\" min=\"0\" max=\"999\" value=\"1\">\n  <button class=\"qty-count qty-count--add one-professional-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\n\n<hr class=\"price-amount-border\">\n\n\t<div id=\"text-2679397317\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Single app<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-2679397317 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"single-professional-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus single-professional-qty-minus\" data-action=\"minus\" type=\"button\" disabled>-<\/button>\n  <input class=\"product-qty single-professional-product-qty\" type=\"number\" name=\"single-professional-product-qty\" min=\"0\" max=\"999\" value=\"0\">\n  <button class=\"qty-count qty-count--add single-professional-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\t<div id=\"text-522237173\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\"><strong><span style=\"color: #506690;\">*One Standard User is minimum<\/span><\/strong><\/span><\/p>\n\t\t\n<style>\n#text-522237173 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-2042796742 > .col-inner {\n  padding: 20px 0px 20px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-486669346\" class=\"col price-total medium-2 small-12 large-2\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2416636\" class=\"text\">\n\t\t\n\n<p><strong><span style=\"font-size: 100%;\">BILLED\u00a0<span id=\"period_toggle_one_professional\">ANNUALLY<\/span><\/span><\/strong><\/p>\n\t\t\n<style>\n#text-2416636 {\n  color: rgb(22, 28, 45);\n}\n#text-2416636 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-2522451428\" class=\"text\">\n\t\t\n\n<p><span data-annual=\"30\" data-monthly=\"42\" single-annual=\"20\" single-monthly=\"28\" class=\"calculating-your-price one-professional-price\" style=\"font-size: 300%;\">USD 30<\/span><\/p>\n<p>per month<\/p>\n\t\t\n<style>\n#text-2522451428 {\n  color: rgb(22, 28, 45);\n}\n#text-2522451428 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n<a class=\"button primary price-total-btn\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"text-69156952\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\">NO CREDIT CARD REQUIRED<\/span><\/p>\n\t\t\n<style>\n#text-69156952 {\n  color: rgb(80, 102, 144);\n}\n#text-69156952 > * {\n  color: rgb(80, 102, 144);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-2009908291 > .col > .col-inner {\n  padding: 30px 0px 30px 0px;\n}\n<\/style>\n<\/div>\n\n<\/div>\n<div class=\"panel entry-content\" id=\"tab_one-doanh-nghi\u1ec7p\">\n\n\n\n<div style=\"text-align: center\" class=\"toggle-switch\">\n  Billed Annual\n  <label class=\"calculating-your-price-switch one-enterprise-switch\">\n    <input type=\"checkbox\" id=\"one-enterprise-toggle\">\n    <span class=\"calculating-your-price-slider round\"><\/span>\n  <\/label>\n  Billed Monthly\n<\/div>\n\n<script>\njQuery(document).ready(function() {\n  \/\/ Toggle text based on the checkbox state\n  jQuery(\"#one-enterprise-toggle\").change(function() {\n    if (jQuery(this).is(\":checked\")) {\n      \/\/ If the toggle is turned on (checked), change the text to \"H\u00c0NG TH\u00c1NG\"\n      jQuery(\"#period_toggle_one_enterprise\").text(\"H\u00c0NG TH\u00c1NG\");\n    } else {\n      \/\/ If the toggle is turned off, change the text back to \"H\u00c0NG N\u0102M\"\n      jQuery(\"#period_toggle_one_enterprise\").text(\"H\u00c0NG N\u0102M\");\n    }\n  });\n});\n<\/script>\n\n<script>\n  \/\/ Function to get the primary and add-on prices dynamically\nfunction getPricesEnterprise() {\n  var $priceElement = jQuery(\".one-enterprise-price\"); \/\/ Reference to the price element\n  return {\n    annualPrice: parseInt($priceElement.data(\"annual\")),    \/\/ Primary annual price\n    monthlyPrice: parseInt($priceElement.data(\"monthly\")),  \/\/ Primary monthly price\n    singleAnnualPrice: parseInt($priceElement.attr(\"single-annual\")),   \/\/ Add-on annual price\n    singleMonthlyPrice: parseInt($priceElement.attr(\"single-monthly\"))  \/\/ Add-on monthly price\n  };\n}\n\n\/\/ Function to update total price based on quantity of the primary product, add-on, and toggle state\nfunction updateTotalPriceEnterprise() {\n  var prices = getPricesEnterprise(); \/\/ Get the annual and monthly prices dynamically\n  \n  var qty = parseInt(jQuery(\".one-enterprise-product-qty\").val()); \/\/ Primary product quantity\n  var singleQty = parseInt(jQuery(\".single-enterprise-product-qty\").val()); \/\/ Add-on product quantity\n\n  \/\/ Determine which prices to use (monthly or annual) based on the toggle\n  var pricePerProduct = jQuery(\"#one-enterprise-toggle\").is(\":checked\") ? prices.monthlyPrice : prices.annualPrice; \/\/ Primary product price\n  var pricePerAddon = jQuery(\"#one-enterprise-toggle\").is(\":checked\") ? prices.singleMonthlyPrice : prices.singleAnnualPrice; \/\/ Add-on product price\n\n  \/\/ Calculate the total price\n  var totalPrice = (pricePerProduct * qty) + (pricePerAddon * singleQty);\n  \n  \/\/ Update the displayed price\n  jQuery(\".one-enterprise-price\").text(\"USD \" + totalPrice);\n}\n\njQuery(document).ready(function () {\n  \/\/ Initialize price based on the current state of toggle and quantity\n  updateTotalPriceEnterprise();\n\n  \/\/ Event listener for toggle switch to change between annual and monthly prices\n  jQuery(\"#one-enterprise-toggle\").change(function () {\n    updateTotalPriceEnterprise();\n  });\n\n  \/\/ Functionality for \"one-enterprise\" quantity input\n  QtyInputEnterprise = (function () {\n    var $qtyInputs = jQuery(\".one-enterprise-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".one-enterprise-product-qty\");\n    var $countBtn = $qtyInputs.find(\".one-enterprise-qty-add, .one-enterprise-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".one-enterprise-qty-minus\");\n      var $addBtn = $this.siblings(\".one-enterprise-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceEnterprise(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".one-enterprise-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".one-enterprise-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".one-enterprise-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceEnterprise(); \/\/ Update total price when button is clicked\n    });\n  })();\n\n  \/\/ Functionality for add-on quantity input\n  var QtyInputSingleEnterprise = (function () {\n    var $qtyInputs = jQuery(\".single-enterprise-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".single-enterprise-product-qty\");\n    var $countBtn = $qtyInputs.find(\".single-enterprise-qty-add, .single-enterprise-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".single-enterprise-qty-minus\");\n      var $addBtn = $this.siblings(\".single-enterprise-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceEnterprise(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".single-enterprise-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".single-enterprise-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".single-enterprise-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceEnterprise(); \/\/ Update total price when button is clicked\n    });\n  })();\n});\n\n<\/script>\n\n\t<div id=\"gap-1813100904\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1813100904 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-middle align-center calculate-price\"  id=\"row-1476894949\">\n\n\n\t<div id=\"col-1895486086\" class=\"col price-info medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-4249077618\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Standard User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with full access to all business functions available in the edition across all apps in Vtiger<\/p>\n<\/div>\n\t\t\n<style>\n#text-4249077618 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-4249077618 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<hr class=\"price-info-border\">\n\n\t<div id=\"text-3406032038\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Single App User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with Read\/Write access to one of the 5 apps<br \/>(Sales \/ Marketing \/ Help Desk \/ Projects \/ Inventory), and Read-only access to the modules in other 4 apps to get 360 degree view<\/p>\n<\/div>\n\t\t\n<style>\n#text-3406032038 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-3406032038 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-32634192\" class=\"col price-amount medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse\"  id=\"row-61715372\">\n\n\n\t<div id=\"col-1187943897\" class=\"col price-amount-inner small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255,255,255);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2564542684\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Standard<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-2564542684 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"one-enterprise-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus one-enterprise-qty-minus\" data-action=\"minus\" type=\"button\">-<\/button>\n  <input class=\"product-qty one-enterprise-product-qty\" type=\"number\" name=\"product-qty\" min=\"0\" max=\"999\" value=\"1\">\n  <button class=\"qty-count qty-count--add one-enterprise-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\n\n<hr class=\"price-amount-border\">\n\n\t<div id=\"text-2992203587\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Single app<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-2992203587 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"single-enterprise-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus single-enterprise-qty-minus\" data-action=\"minus\" type=\"button\" disabled>-<\/button>\n  <input class=\"product-qty single-enterprise-product-qty\" type=\"number\" name=\"single-enterprise-product-qty\" min=\"0\" max=\"999\" value=\"0\">\n  <button class=\"qty-count qty-count--add single-enterprise-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\t<div id=\"text-3053148217\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\"><strong><span style=\"color: #506690;\">*One Standard User is minimum<\/span><\/strong><\/span><\/p>\n\t\t\n<style>\n#text-3053148217 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1187943897 > .col-inner {\n  padding: 20px 0px 20px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-1464040348\" class=\"col price-total medium-2 small-12 large-2\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2744771425\" class=\"text\">\n\t\t\n\n<p><strong><span style=\"font-size: 100%;\">BILLED <span id=\"period_toggle_one_enterprise\">ANNUALLY<\/span><\/span><\/strong><\/p>\n\t\t\n<style>\n#text-2744771425 {\n  color: rgb(22, 28, 45);\n}\n#text-2744771425 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-2598133095\" class=\"text\">\n\t\t\n\n<p><span data-annual=\"42\" data-monthly=\"58\" single-annual=\"30\" single-monthly=\"42\" class=\"calculating-your-price one-enterprise-price\" style=\"font-size: 300%;\">USD 42<\/span><\/p>\n<p>per month<\/p>\n\t\t\n<style>\n#text-2598133095 {\n  color: rgb(22, 28, 45);\n}\n#text-2598133095 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n<a class=\"button primary price-total-btn\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"text-812718512\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\">NO CREDIT CARD REQUIRED<\/span><\/p>\n\t\t\n<style>\n#text-812718512 {\n  color: rgb(80, 102, 144);\n}\n#text-812718512 > * {\n  color: rgb(80, 102, 144);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-1476894949 > .col > .col-inner {\n  padding: 30px 0px 30px 0px;\n}\n<\/style>\n<\/div>\n\n<\/div>\n<div class=\"panel entry-content\" id=\"tab_one-ai\">\n\n\n\n<div style=\"text-align: center\" class=\"toggle-switch\">\n  Billed Annual\n  <label class=\"calculating-your-price-switch one-ai-switch\">\n    <input type=\"checkbox\" id=\"one-ai-toggle\">\n    <span class=\"calculating-your-price-slider round\"><\/span>\n  <\/label>\n  Billed Monthly\n<\/div>\n\n<script>\njQuery(document).ready(function() {\n  \/\/ Toggle text based on the checkbox state\n  jQuery(\"#one-ai-toggle\").change(function() {\n    if (jQuery(this).is(\":checked\")) {\n      \/\/ If the toggle is turned on (checked), change the text to \"H\u00c0NG TH\u00c1NG\"\n      jQuery(\"#period_toggle_one_ai\").text(\"H\u00c0NG TH\u00c1NG\");\n    } else {\n      \/\/ If the toggle is turned off, change the text back to \"H\u00c0NG N\u0102M\"\n      jQuery(\"#period_toggle_one_ai\").text(\"H\u00c0NG N\u0102M\");\n    }\n  });\n});\n<\/script>\n\n\n<script>\n  \/\/ Function to get the primary and add-on prices dynamically\nfunction getPricesAi() {\n  var $priceElement = jQuery(\".one-ai-price\"); \/\/ Reference to the price element\n  return {\n    annualPrice: parseInt($priceElement.data(\"annual\")),    \/\/ Primary annual price\n    monthlyPrice: parseInt($priceElement.data(\"monthly\")),  \/\/ Primary monthly price\n    singleAnnualPrice: parseInt($priceElement.attr(\"single-annual\")),   \/\/ Add-on annual price\n    singleMonthlyPrice: parseInt($priceElement.attr(\"single-monthly\"))  \/\/ Add-on monthly price\n  };\n}\n\n\/\/ Function to update total price based on quantity of the primary product, add-on, and toggle state\nfunction updateTotalPriceAi() {\n  var prices = getPricesAi(); \/\/ Get the annual and monthly prices dynamically\n  \n  var qty = parseInt(jQuery(\".one-ai-product-qty\").val()); \/\/ Primary product quantity\n  var singleQty = parseInt(jQuery(\".single-ai-product-qty\").val()); \/\/ Add-on product quantity\n\n  \/\/ Determine which prices to use (monthly or annual) based on the toggle\n  var pricePerProduct = jQuery(\"#one-ai-toggle\").is(\":checked\") ? prices.monthlyPrice : prices.annualPrice; \/\/ Primary product price\n  var pricePerAddon = jQuery(\"#one-ai-toggle\").is(\":checked\") ? prices.singleMonthlyPrice : prices.singleAnnualPrice; \/\/ Add-on product price\n\n  \/\/ Calculate the total price\n  var totalPrice = (pricePerProduct * qty) + (pricePerAddon * singleQty);\n  \n  \/\/ Update the displayed price\n  jQuery(\".one-ai-price\").text(\"USD \" + totalPrice);\n}\n\njQuery(document).ready(function () {\n  \/\/ Initialize price based on the current state of toggle and quantity\n  updateTotalPriceAi();\n\n  \/\/ Event listener for toggle switch to change between annual and monthly prices\n  jQuery(\"#one-ai-toggle\").change(function () {\n    updateTotalPriceAi();\n  });\n\n  \/\/ Functionality for \"one-ai\" quantity input\n  QtyInputAi = (function () {\n    var $qtyInputs = jQuery(\".one-ai-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".one-ai-product-qty\");\n    var $countBtn = $qtyInputs.find(\".one-ai-qty-add, .one-ai-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".one-ai-qty-minus\");\n      var $addBtn = $this.siblings(\".one-ai-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceAi(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".one-ai-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".one-ai-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".one-ai-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceAi(); \/\/ Update total price when button is clicked\n    });\n  })();\n\n  \/\/ Functionality for add-on quantity input\n  var QtyInputSingleAi = (function () {\n    var $qtyInputs = jQuery(\".single-ai-qty-input\");\n\n    if (!$qtyInputs.length) {\n      return;\n    }\n\n    var $inputs = $qtyInputs.find(\".single-ai-product-qty\");\n    var $countBtn = $qtyInputs.find(\".single-ai-qty-add, .single-ai-qty-minus\");\n    var qtyMin = parseInt($inputs.attr(\"min\"));\n    var qtyMax = parseInt($inputs.attr(\"max\"));\n\n    $inputs.change(function () {\n      var $this = jQuery(this);\n      var $minusBtn = $this.siblings(\".single-ai-qty-minus\");\n      var $addBtn = $this.siblings(\".single-ai-qty-add\");\n      var qty = parseInt($this.val());\n\n      if (isNaN(qty) || qty <= qtyMin) {\n        $this.val(qtyMin);\n        $minusBtn.attr(\"disabled\", true);\n      } else {\n        $minusBtn.attr(\"disabled\", false);\n\n        if (qty >= qtyMax) {\n          $this.val(qtyMax);\n          $addBtn.attr('disabled', true);\n        } else {\n          $this.val(qty);\n          $addBtn.attr('disabled', false);\n        }\n      }\n\n      updateTotalPriceAi(); \/\/ Update total price when quantity changes\n    });\n\n    $countBtn.click(function () {\n      var operator = this.dataset.action;\n      var $this = jQuery(this);\n      var $input = $this.siblings(\".single-ai-product-qty\");\n      var qty = parseInt($input.val());\n\n      if (operator == \"add\") {\n        qty += 1;\n        if (qty >= qtyMin + 1) {\n          $this.siblings(\".single-ai-qty-minus\").attr(\"disabled\", false);\n        }\n\n        if (qty >= qtyMax) {\n          $this.attr(\"disabled\", true);\n        }\n      } else {\n        qty = qty <= qtyMin ? qtyMin : (qty -= 1);\n\n        if (qty == qtyMin) {\n          $this.attr(\"disabled\", true);\n        }\n\n        if (qty < qtyMax) {\n          $this.siblings(\".single-ai-qty-add\").attr(\"disabled\", false);\n        }\n      }\n\n      $input.val(qty);\n      updateTotalPriceAi(); \/\/ Update total price when button is clicked\n    });\n  })();\n});\n\n<\/script>\n\n\t<div id=\"gap-220934211\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-220934211 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-middle align-center calculate-price\"  id=\"row-1148203893\">\n\n\n\t<div id=\"col-363934028\" class=\"col price-info medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-386623192\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Standard User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with full access to all business functions available in the edition across all apps in Vtiger<\/p>\n<\/div>\n\t\t\n<style>\n#text-386623192 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-386623192 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<hr class=\"price-info-border\">\n\n\t<div id=\"text-2324306142\" class=\"text\">\n\t\t\n\n<div class=\"py-2 font-weight-bold text-primary\">\n<h4><span style=\"color: #3978fe;\">Single App User<\/span><\/h4>\n<\/div>\n<div class=\"font-weight-bold\">\n<p>Person with Read\/Write access to one of the 5 apps<br \/>(Sales \/ Marketing \/ Help Desk \/ Projects \/ Inventory), and Read-only access to the modules in other 4 apps to get 360 degree view<\/p>\n<\/div>\n\t\t\n<style>\n#text-2324306142 {\n  text-align: center;\n  color: rgb(22, 28, 45);\n}\n#text-2324306142 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-818112424\" class=\"col price-amount medium-4 small-12 large-4\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse\"  id=\"row-637151927\">\n\n\n\t<div id=\"col-1277742433\" class=\"col price-amount-inner small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255,255,255);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-4137170995\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Standard<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-4137170995 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"one-ai-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus one-ai-qty-minus\" data-action=\"minus\" type=\"button\">-<\/button>\n  <input class=\"product-qty one-ai-product-qty\" type=\"number\" name=\"product-qty\" min=\"0\" max=\"999\" value=\"1\">\n  <button class=\"qty-count qty-count--add one-ai-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\n\n<hr class=\"price-amount-border\">\n\n\t<div id=\"text-4257863459\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 150%; color: #161c2d;\"><strong>Single app<\/strong><\/span><\/p>\n\t\t\n<style>\n#text-4257863459 {\n  line-height: 1;\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n<div class=\"single-ai-qty-input qty-input\">\n  <button class=\"qty-count qty-count--minus single-ai-qty-minus\" data-action=\"minus\" type=\"button\" disabled>-<\/button>\n  <input class=\"product-qty single-ai-product-qty\" type=\"number\" name=\"single-ai-product-qty\" min=\"0\" max=\"999\" value=\"0\">\n  <button class=\"qty-count qty-count--add single-ai-qty-add\" data-action=\"add\" type=\"button\">+<\/button>\n<\/div>\n<br>\n\n\t<div id=\"text-3830874607\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\"><strong><span style=\"color: #506690;\">*One Standard User is minimum<\/span><\/strong><\/span><\/p>\n\t\t\n<style>\n#text-3830874607 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1277742433 > .col-inner {\n  padding: 20px 0px 20px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-1431581295\" class=\"col price-total medium-2 small-12 large-2\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-4039946195\" class=\"text\">\n\t\t\n\n<p><strong><span style=\"font-size: 100%;\">BILLED <span id=\"period_toggle_one_ai\">ANNUALLY<\/span><\/span><\/strong><\/p>\n\t\t\n<style>\n#text-4039946195 {\n  color: rgb(22, 28, 45);\n}\n#text-4039946195 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-1916868350\" class=\"text\">\n\t\t\n\n<p><span data-annual=\"50\" data-monthly=\"66\" single-annual=\"38\" single-monthly=\"50\" class=\"calculating-your-price one-ai-price\" style=\"font-size: 300%;\">USD 50<\/span><\/p>\n<p>per month<\/p>\n\t\t\n<style>\n#text-1916868350 {\n  color: rgb(22, 28, 45);\n}\n#text-1916868350 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n<a class=\"button primary price-total-btn\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"text-999465338\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 90%;\">NO CREDIT CARD REQUIRED<\/span><\/p>\n\t\t\n<style>\n#text-999465338 {\n  color: rgb(80, 102, 144);\n}\n#text-999465338 > * {\n  color: rgb(80, 102, 144);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-1148203893 > .col > .col-inner {\n  padding: 30px 0px 30px 0px;\n}\n<\/style>\n<\/div>\n\n<\/div><\/div><\/div>\n\t<div id=\"gap-933003455\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-933003455 {\n  padding-top: 100px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-center\"  id=\"row-1158450918\">\n\n\n\t<div id=\"col-1098691906\" class=\"col medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(241, 244, 248);\" >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse row-full-width\"  id=\"row-219010804\">\n\n\n\t<div id=\"col-1323816320\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"gap-1038587481\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1038587481 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n\n<div class=\"toggle-switch\" style=\"text-align: center\">Billed Annual<label class=\"pricing-switch\">\n  <input type=\"checkbox\" id=\"toggle-switch\">\n  <span class=\"pricing-slider round\"><\/span>\n<\/label>Billed Monthly<\/div>\n\n<script>\n  \/\/ Using jQuery to reference elements and add event listener\n  jQuery(document).ready(function() {\n    \/\/ Function to update the price based on the toggle state\n    function updatePrice() {\n      \/\/ Loop through all elements with the class \"pricing\"\n      jQuery('.pricing').each(function() {\n        var priceContainer = jQuery(this).closest('.vt-price'); \/\/ Find closest parent with class vt-price\n\n        if (jQuery('#toggle-switch').is(':checked')) {\n          \/\/ Toggle is ON, show data-monthly value\n          jQuery(this).text(priceContainer.attr('data-monthly'));\n        } else {\n          \/\/ Toggle is OFF, show data-annual value\n          jQuery(this).text(priceContainer.attr('data-annual'));\n        }\n      });\n    }\n\n    \/\/ Initialize with the correct price\n    updatePrice();\n\n    \/\/ Add event listener for change in toggle switch\n    jQuery('#toggle-switch').change(function() {\n      updatePrice();\n    });\n  });\n<\/script>\n\n\t<div id=\"gap-1610973863\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1610973863 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse row-full-width pricing\"  id=\"row-1990374028\">\n\n\n\t<div id=\"col-281193513\" class=\"col pricing-card medium-3 small-10 large-3\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2643954607\" class=\"text pricing-title\">\n\t\t\n\n<p class=\"gt-block display-lg-5 text-primary\"><strong><span style=\"font-size: 120%; color: #3978fe;\">ONE GROWTH<\/span><\/strong><\/p>\n<p class=\"mt-3\"><span style=\"color: #161c2d; font-size: 90%;\">A CRM for small and medium-sized businessesA CRM for small and medium-sized businesses<\/span><\/p>\n\t\t\n<style>\n#text-2643954607 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"row row-collapse pricing-info\"  id=\"row-768571032\">\n\n\n\t<div id=\"col-1097919039\" class=\"col pricing-info-detail medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner text-center\" style=\"background-color:rgb(255, 255, 255);\" >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-645163761\" class=\"text\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Standard<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"12\" data-monthly=\"15\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">12<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/p>\n<\/div>\n<\/div>\n\t\t\n<style>\n#text-645163761 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1097919039 > .col-inner {\n  padding: 10px 0px 20px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse\"  id=\"row-221412973\">\n\n\n\t<div id=\"col-85248559\" class=\"col pricing-info-btn medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255, 255, 255);\" >\n\t\t\t\n\t\t\t\n\n<a class=\"button primary\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-281193513 > .col-inner {\n  margin: 0px 0px 50px 0px;\n}\n@media (min-width:550px) {\n  #col-281193513 > .col-inner {\n    margin: 0px 0px 0px 0px;\n  }\n}\n<\/style>\n\t<\/div>\n\n\t\n\n\t<div id=\"col-1400741164\" class=\"col pricing-card medium-3 small-10 large-3\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-569636391\" class=\"text pricing-title\">\n\t\t\n\n<p class=\"gt-block display-lg-5 text-primary\"><strong><span style=\"font-size: 120%; color: #3978fe;\">ONE PROFESSIONAL<\/span><\/strong><\/p>\n<p class=\"mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">A complete CRM that gets all your teams on the same page with Customer One View.<\/span><\/p>\n\t\t\n<style>\n#text-569636391 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"row row-collapse row-full-width pricing-info\"  id=\"row-992253056\">\n\n\n\t<div id=\"col-239923609\" class=\"col pricing-info-detail medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-1102375163\" class=\"text pricing-info-detail-left\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Standard<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"30\" data-monthly=\"42\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">30<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/div>\n<\/div>\n\t\t\n<style>\n#text-1102375163 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-390282023\" class=\"text pricing-info-detail-right\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Single App<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"20\" data-monthly=\"28\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">20<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/div>\n<\/div>\n\t\t\n<style>\n#text-390282023 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse\"  id=\"row-524587467\">\n\n\n\t<div id=\"col-781193546\" class=\"col pricing-info-btn medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255, 255, 255);\" >\n\t\t\t\n\t\t\t\n\n<a class=\"button primary\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1400741164 > .col-inner {\n  margin: 0px 0px 50px 0px;\n}\n@media (min-width:550px) {\n  #col-1400741164 > .col-inner {\n    margin: 0px 0px 0 0px;\n  }\n}\n<\/style>\n\t<\/div>\n\n\t\n\n\t<div id=\"col-1099780103\" class=\"col pricing-card medium-3 small-10 large-3\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-351187718\" class=\"text pricing-title\">\n\t\t\n\n<p class=\"gt-block display-lg-5 text-primary\"><strong><span style=\"color: #3978fe; font-size: 120%;\">ONE ENTERPRISE<\/span><\/strong><\/p>\n<p class=\"mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">CRM c\u1ea5p doanh nghi\u1ec7p \u0111\u01b0\u1ee3c t\u1ea3i \u0111\u1ea7y \u0111\u1ee7 cung c\u1ea5p cho b\u1ea1n c\u00e1c t\u00ednh n\u0103ng t\u1ed1t nh\u1ea5t trong l\u1edbp v\u1edbi m\u1ed9t ph\u1ea7n chi ph\u00ed so v\u1edbi c\u00e1c t\u00f9y ch\u1ecdn t\u01b0\u01a1ng \u0111\u01b0\u01a1ng.<\/span><\/p>\n\t\t\n<style>\n#text-351187718 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"row row-collapse pricing-info\"  id=\"row-1901413064\">\n\n\n\t<div id=\"col-114541580\" class=\"col pricing-info-detail medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-3460940179\" class=\"text pricing-info-detail-left\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Standard<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"42\" data-monthly=\"58\"><span  class=\"pricing\"style=\"font-size: 150%; color: #869ab8;\">42<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/div>\n<\/div>\n\t\t\n<style>\n#text-3460940179 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-694732105\" class=\"text pricing-info-detail-right\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Single App<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"30\" data-monthly=\"42\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">30<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/div>\n<\/div>\n\t\t\n<style>\n#text-694732105 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse\"  id=\"row-1284728401\">\n\n\n\t<div id=\"col-120577282\" class=\"col pricing-info-btn medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255, 255, 255);\" >\n\t\t\t\n\t\t\t\n\n<a class=\"button primary\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1099780103 > .col-inner {\n  margin: 0px 0px 50px 0px;\n}\n@media (min-width:550px) {\n  #col-1099780103 > .col-inner {\n    margin: 0px 0px 0 0px;\n  }\n}\n<\/style>\n\t<\/div>\n\n\t\n\n\t<div id=\"col-1458117429\" class=\"col pricing-card medium-3 small-10 large-3\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-410725833\" class=\"text pricing-title\">\n\t\t\n\n<p class=\"gt-block display-lg-5 text-primary\"><strong><span style=\"font-size: 120%; color: #3978fe;\">ONE AI<\/span><\/strong><\/p>\n<p class=\"mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">Enterprise-grade CRM with predictive and generative AI features for maximizing AI potential.<\/span><\/p>\n\t\t\n<style>\n#text-410725833 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"row row-collapse\"  id=\"row-1023566918\">\n\n\n\t<div id=\"col-456878663\" class=\"col pricing-info-detail medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-2621483891\" class=\"text pricing-info-detail-left\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Standard<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"50\" data-monthly=\"66\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">50<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/div>\n<\/div>\n\t\t\n<style>\n#text-2621483891 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-827180945\" class=\"text pricing-info-detail-right\">\n\t\t\n\n<div class=\"card-head\">\n<h5><span style=\"color: #161c2d;\">Single App<\/span><\/h5>\n<p>\u00a0<\/p>\n<\/div>\n<div class=\"card-body p-1\">\n<div class=\"pb-5 card-text text-center h5 text-muted my-2\">\n<p class=\"gt-block\"><span class=\"h2 mb-0 mr-1\" style=\"font-size: 170%; color: #869ab8;\">US$<\/span><\/p>\n<p id=\"one_prof_price\" class=\"vt-price display-3 mb-0\" data-annual=\"38\" data-monthly=\"50\"><span class=\"pricing\" style=\"font-size: 150%; color: #869ab8;\">38<\/span><\/p>\n<p><span class=\"align-self-end mb-1\" style=\"color: #869ab8;\"><br \/>per user\/per month<\/span><\/p>\n<\/div>\n<\/div>\n\t\t\n<style>\n#text-827180945 {\n  text-align: center;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse\"  id=\"row-308259587\">\n\n\n\t<div id=\"col-1129872743\" class=\"col pricing-info-btn medium-11 small-12 large-11\"  >\n\t\t\t\t<div class=\"col-inner\" style=\"background-color:rgb(255, 255, 255);\" >\n\t\t\t\n\t\t\t\n\n<a class=\"button primary\"  >\n    <span>start free trial<\/span>\n  <\/a>\n\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1458117429 > .col-inner {\n  margin: 0px 0px 0 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-1403976679\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1403976679 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width\"  id=\"row-598516503\">\n\n\n\t<div id=\"col-1797680563\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n<a class=\"button primary lowercase pricing-btn\"  >\n    <span>Price Calculator<\/span>\n  <\/a>\n\n\n<a class=\"button primary lowercase pricing-btn\"  >\n    <span>Key Features<\/span>\n  <\/a>\n\n\n<p><span style=\"color: #161c2d;\">Local taxes will be charged in addition to the prices mentioned<\/span><\/p>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-1098691906 > .col-inner {\n  border-radius: 5px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\n<style>\n#col-2097219166 > .col-inner {\n  padding: 50px 0px 0px 0px;\n}\n<\/style>\n\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-1768138281\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1768138281 {\n  padding-top: 120px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row row-collapse row-full-width align-center key-features\"  id=\"row-869260036\">\n\n\n\t<div id=\"col-1762810716\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"text-3117759175\" class=\"text key-features-title\">\n\t\t\n\n<p style=\"text-align: center;\"><span style=\"font-size: 200%; color: #3978fe;\">Key Features<\/span><\/p>\n\t\t\t<\/div>\n\t\n<div class=\"row row-collapse row-full-width align-center\"  id=\"row-1496829638\">\n\n\n\t<div id=\"col-1240079927\" class=\"col small-11 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse row-full-width align-center\"  id=\"row-207906048\">\n\n\n\t<div id=\"col-836092245\" class=\"col key-features-card medium-2 small-6 large-2\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div>\n<p><strong><span style=\"color: #3978fe; font-size: 130%;\">ONE PILOT<\/span><\/strong><\/p>\n<p><span style=\"color: #161c2d;\">Free plan - ideal for companies getting started on their CRM journey<\/span><\/p>\n<\/div>\n<a class=\"button primary lowercase\"  >\n    <span>Get Your Forever Free Account<\/span>\n  <\/a>\n\n\n\t<div id=\"gap-606172477\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-606172477 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"800px\" height=\"800px\" viewbox=\"0 0 15 15\" fill=\"none\"><path d=\"M9.875 7.5C9.875 8.81168 8.81168 9.875 7.5 9.875C6.18832 9.875 5.125 8.81168 5.125 7.5C5.125 6.18832 6.18832 5.125 7.5 5.125C8.81168 5.125 9.875 6.18832 9.875 7.5Z\" fill=\"#000000\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2619537825\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Max users - 10<\/span><\/p>\n\t\t\n<style>\n#text-2619537825 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"800px\" height=\"800px\" viewbox=\"0 0 15 15\" fill=\"none\"><path d=\"M9.875 7.5C9.875 8.81168 8.81168 9.875 7.5 9.875C6.18832 9.875 5.125 8.81168 5.125 7.5C5.125 6.18832 6.18832 5.125 7.5 5.125C8.81168 5.125 9.875 6.18832 9.875 7.5Z\" fill=\"#000000\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2338354483\" class=\"text\">\n\t\t\n\n<p>Max records - 3000<\/p>\n\t\t\n<style>\n#text-2338354483 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2338354483 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2533875204\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">CONTACT MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-2533875204 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-709654924\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">One View<\/span><\/p>\n\t\t\n<style>\n#text-709654924 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2961061887\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Idle Alerts<\/span><\/p>\n\t\t\n<style>\n#text-2961061887 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1669440249\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">CONTACT ENGAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-1669440249 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-716809772\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Emails &amp; Phone Integration<\/span><\/p>\n\t\t\n<style>\n#text-716809772 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-681322410\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Document Engagement<\/span><\/p>\n\t\t\n<style>\n#text-681322410 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3569665801\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Zoom &amp; Google Meet<\/span><\/p>\n\t\t\n<style>\n#text-3569665801 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2723868875\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">INTERNAL COLLABORATION<\/span><\/h5>\n\t\t\n<style>\n#text-2723868875 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-348815549\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Meeting Aide in Vtiger Buzz<\/span><\/p>\n\t\t\n<style>\n#text-348815549 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3969767592\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Actions Page<\/span><\/p>\n\t\t\n<style>\n#text-3969767592 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2094315737\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Comments<\/span><\/p>\n\t\t\n<style>\n#text-2094315737 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2217051500\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">MARKETING<\/span><\/h5>\n\t\t\n<style>\n#text-2217051500 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2906501536\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Lists and Segments<\/span><\/p>\n\t\t\n<style>\n#text-2906501536 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-471438576\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Profile Scoring<\/span><\/p>\n\t\t\n<style>\n#text-471438576 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2698699717\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">1000 Emails\/month<\/span><\/p>\n\t\t\n<style>\n#text-2698699717 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2829834774\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Autoresponders<\/span><\/p>\n\t\t\n<style>\n#text-2829834774 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2023588971\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Consents for compliance<\/span><\/p>\n\t\t\n<style>\n#text-2023588971 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-779843826\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Web to Lead Forms<\/span><\/p>\n\t\t\n<style>\n#text-779843826 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-351599958\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Email Template Builder<\/span><\/p>\n\t\t\n<style>\n#text-351599958 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2224966470\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">List Reports<\/span><\/p>\n\t\t\n<style>\n#text-2224966470 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3249490562\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Email Campaign Reports<\/span><\/p>\n\t\t\n<style>\n#text-3249490562 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2935754867\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">PROJECT MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-2935754867 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3009977071\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Tasks &amp; Milestones<\/span><\/p>\n\t\t\n<style>\n#text-3009977071 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1463547216\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Subtasks<\/span><\/p>\n\t\t\n<style>\n#text-1463547216 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3047118806\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Gantt View<\/span><\/p>\n\t\t\n<style>\n#text-3047118806 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3130818830\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Kanban Board<\/span><\/p>\n\t\t\n<style>\n#text-3130818830 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1627548267\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">SALES PIPELINE\u00a0<\/span><\/h5>\n\t\t\n<style>\n#text-1627548267 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2914754417\" class=\"text\">\n\t\t\n\n<p><span style=\"font-size: 100%; color: #161c2d;\">Customize Sales Stages<\/span><\/p>\n\t\t\n<style>\n#text-2914754417 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3698367599\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Deal Kanban View<\/span><\/p>\n\t\t\n<style>\n#text-3698367599 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4242098552\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Idle Deal Alerts<\/span><\/p>\n\t\t\n<style>\n#text-4242098552 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4108625764\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Time Spent in every Stage<\/span><\/p>\n\t\t\n<style>\n#text-4108625764 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1576505767\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">SALES ENABLEMENT\u00a0<\/span><\/h5>\n\t\t\n<style>\n#text-1576505767 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1239941866\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Email SequencesEmail Sequences<\/span><\/p>\n\t\t\n<style>\n#text-1239941866 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4178006910\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Google + O365 Add-ins<\/span><\/p>\n\t\t\n<style>\n#text-4178006910 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2315349646\" class=\"text\">\n\t\t\n\n<p>Enrich LinkedIn Extension<\/p>\n\t\t\n<style>\n#text-2315349646 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2315349646 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4229130439\" class=\"text\">\n\t\t\n\n<p>Appointment Pages<\/p>\n\t\t\n<style>\n#text-4229130439 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4229130439 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1478018165\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Workflows<\/span><\/p>\n\t\t\n<style>\n#text-1478018165 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1797203541\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">HELP DESK<\/span><\/h5>\n\t\t\n<style>\n#text-1797203541 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2971035166\" class=\"text\">\n\t\t\n\n<p>Email to Case<\/p>\n\t\t\n<style>\n#text-2971035166 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2971035166 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4053700577\" class=\"text\">\n\t\t\n\n<p>First Response SLA<\/p>\n\t\t\n<style>\n#text-4053700577 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4053700577 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-803443977\" class=\"text\">\n\t\t\n\n<p>Resolution SLA<\/p>\n\t\t\n<style>\n#text-803443977 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-803443977 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2984682061\" class=\"text\">\n\t\t\n\n<p>Business HoursBusiness Hours<\/p>\n\t\t\n<style>\n#text-2984682061 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2984682061 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2929813937\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">MOBILE APPS<\/span><\/h5>\n\t\t\n<style>\n#text-2929813937 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1558554354\" class=\"text\">\n\t\t\n\n<p>Real-time Notifications<\/p>\n\t\t\n<style>\n#text-1558554354 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1558554354 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1383482274\" class=\"text\">\n\t\t\n\n<p>Actions Page<\/p>\n\t\t\n<style>\n#text-1383482274 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1383482274 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-823724701\" class=\"text\">\n\t\t\n\n<p>M\u00e1y qu\u00e9t danh thi\u1ebfp<\/p>\n\t\t\n<style>\n#text-823724701 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-823724701 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3310694108\" class=\"text\">\n\t\t\n\n<p>Leads, Contacts, Deals, Quotes, Cases<\/p>\n\t\t\n<style>\n#text-3310694108 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3310694108 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3219936889\" class=\"text\">\n\t\t\n\n<p>Voice Notes<\/p>\n\t\t\n<style>\n#text-3219936889 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3219936889 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2818737867\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">STORAGE<\/span><\/h5>\n\t\t\n<style>\n#text-2818737867 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3630821086\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">3 GB<\/span><\/p>\n\t\t\n<style>\n#text-3630821086 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3630821086 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-192180393\" class=\"col key-features-card medium-2 small-6 large-2\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div>\n<p><strong><span style=\"color: #3978fe; font-size: 130%;\">ONE GROWTH<\/span><\/strong><\/p>\n<p><span style=\"color: #161c2d;\">A CRM for small and medium-sized businessesA CRM for small and medium-sized businesses<\/span><\/p>\n<\/div>\n<a class=\"button primary\"  >\n    <span>Start a free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"gap-11705300\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-11705300 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"800px\" height=\"800px\" viewbox=\"0 0 15 15\" fill=\"none\"><path d=\"M9.875 7.5C9.875 8.81168 8.81168 9.875 7.5 9.875C6.18832 9.875 5.125 8.81168 5.125 7.5C5.125 6.18832 6.18832 5.125 7.5 5.125C8.81168 5.125 9.875 6.18832 9.875 7.5Z\" fill=\"#000000\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3133418049\" class=\"text\">\n\t\t\n\n<p><span style=\"color: #161c2d;\">Max users - 15<\/span><\/p>\n\t\t\n<style>\n#text-3133418049 {\n  font-size: 0.8rem;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"800px\" height=\"800px\" viewbox=\"0 0 15 15\" fill=\"none\"><path d=\"M9.875 7.5C9.875 8.81168 8.81168 9.875 7.5 9.875C6.18832 9.875 5.125 8.81168 5.125 7.5C5.125 6.18832 6.18832 5.125 7.5 5.125C8.81168 5.125 9.875 6.18832 9.875 7.5Z\" fill=\"#000000\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2811348946\" class=\"text\">\n\t\t\n\n<p>Max records - 100,000<\/p>\n\t\t\n<style>\n#text-2811348946 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2811348946 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-94912458\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">Everything in<\/span><br \/><span style=\"font-size: 90%; color: #161c2d;\"><span style=\"color: #3978fe;\"><b class=\"text-primary\">One Pilot<\/b><\/span> plus:<\/span><\/h5>\n\t\t\n<style>\n#text-94912458 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-1933256443\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">LEAD MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-1933256443 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2315470099\" class=\"text\">\n\t\t\n\n<p>Lead Auto-assignment &amp; Routing<\/p>\n\t\t\n<style>\n#text-2315470099 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2315470099 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2267165028\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">ACTION CENTER<\/span><\/h5>\n\t\t\n<style>\n#text-2267165028 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4124966973\" class=\"text\">\n\t\t\n\n<p>Email tracking &amp; real time notifications<\/p>\n\t\t\n<style>\n#text-4124966973 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4124966973 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1787824688\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">SALESFORCE AUTOMATION<\/span><\/h5>\n\t\t\n<style>\n#text-1787824688 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4083584622\" class=\"text\">\n\t\t\n\n<p>Multiple Pilelines<\/p>\n\t\t\n<style>\n#text-4083584622 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4083584622 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-3787391363\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">HELP DESK<\/span><\/h5>\n\t\t\n<style>\n#text-3787391363 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1055441815\" class=\"text\">\n\t\t\n\n<p>Organization matching with Email domain<\/p>\n\t\t\n<style>\n#text-1055441815 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1055441815 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3188419990\" class=\"text\">\n\t\t\n\n<p>Agent level business hours<\/p>\n\t\t\n<style>\n#text-3188419990 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3188419990 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3365248949\" class=\"text\">\n\t\t\n\n<p>Case satisfaction survey<\/p>\n\t\t\n<style>\n#text-3365248949 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3365248949 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2697684337\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">INVENTORY MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-2697684337 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1490051979\" class=\"text\">\n\t\t\n\n<p>Invoicing<\/p>\n\t\t\n<style>\n#text-1490051979 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1490051979 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1965597828\" class=\"text\">\n\t\t\n\n<p>Sales Order<\/p>\n\t\t\n<style>\n#text-1965597828 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1965597828 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1693001317\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">REPORT &amp; ANALYTICS<\/span><\/h5>\n\t\t\n<style>\n#text-1693001317 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-28220358\" class=\"text\">\n\t\t\n\n<p>Customizable dashboards<\/p>\n\t\t\n<style>\n#text-28220358 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-28220358 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1691953876\" class=\"text\">\n\t\t\n\n<p>Custom schedule reports<\/p>\n\t\t\n<style>\n#text-1691953876 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1691953876 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2741035033\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">AUTOMATION<\/span><\/h5>\n\t\t\n<style>\n#text-2741035033 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3415276543\" class=\"text\">\n\t\t\n\n<p>Opportunity creation from Email<\/p>\n\t\t\n<style>\n#text-3415276543 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3415276543 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3870648825\" class=\"text\">\n\t\t\n\n<p>Organization creation from Email<\/p>\n\t\t\n<style>\n#text-3870648825 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3870648825 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-376049543\" class=\"col key-features-card medium-2 small-6 large-2\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n\n\n<div class=\"ribbon\" width=\"75\" height=\"75\"><span> POPULAR<\/span><\/div>\n\n<div>\n<p><strong><span style=\"color: #3978fe; font-size: 130%;\">ONE PROFESSIONAL<\/span><\/strong><\/p>\n<p><span style=\"color: #161c2d;\">A complete CRM that gets all your teams on the same page with Customer One View.<\/span><\/p>\n<\/div>\n<a class=\"button primary\"  >\n    <span>Start a free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"gap-2026811220\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-2026811220 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t<div id=\"text-3290889088\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">Everything in<\/span><br \/><span style=\"font-size: 90%; color: #161c2d;\"><span style=\"color: #3978fe;\"><b class=\"text-primary\">One Growth <\/b><\/span>plus:<\/span><\/h5>\n\t\t\n<style>\n#text-3290889088 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-3715056927\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">SALESFORCE AUTOMATION<\/span><\/h5>\n\t\t\n<style>\n#text-3715056927 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-25062242\" class=\"text\">\n\t\t\n\n<p>Multiple Pilelines<\/p>\n\t\t\n<style>\n#text-25062242 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-25062242 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-618601110\" class=\"text\">\n\t\t\n\n<p>Profile &amp; Engagement Scoring<\/p>\n\t\t\n<style>\n#text-618601110 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-618601110 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-756174976\" class=\"text\">\n\t\t\n\n<p>Lead Scoring<\/p>\n\t\t\n<style>\n#text-756174976 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-756174976 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1252370244\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">HELP DESK<\/span><\/h5>\n\t\t\n<style>\n#text-1252370244 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2456650355\" class=\"text\">\n\t\t\n\n<p>Social Ticketing<\/p>\n\t\t\n<style>\n#text-2456650355 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2456650355 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2887475219\" class=\"text\">\n\t\t\n\n<p>Round Robin Ticket Assignment<\/p>\n\t\t\n<style>\n#text-2887475219 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2887475219 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-647252503\" class=\"text\">\n\t\t\n\n<p>Least Loaded Ticket Assignment<\/p>\n\t\t\n<style>\n#text-647252503 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-647252503 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2230445292\" class=\"text\">\n\t\t\n\n<p>Agent Level Business Hours<\/p>\n\t\t\n<style>\n#text-2230445292 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2230445292 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-539121877\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">CONVERSATIONS<\/span><\/h5>\n\t\t\n<style>\n#text-539121877 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3785313941\" class=\"text\">\n\t\t\n\n<p>Internal Team Collaboration<\/p>\n\t\t\n<style>\n#text-3785313941 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3785313941 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1477648487\" class=\"text\">\n\t\t\n\n<p>Live Web Chat<\/p>\n\t\t\n<style>\n#text-1477648487 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1477648487 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-2543494216\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">DASHBOARDS<\/span><\/h5>\n\t\t\n<style>\n#text-2543494216 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-397137077\" class=\"text\">\n\t\t\n\n<p>Sales Insights<\/p>\n\t\t\n<style>\n#text-397137077 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-397137077 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2471449583\" class=\"text\">\n\t\t\n\n<p>Sales Insights<\/p>\n\t\t\n<style>\n#text-2471449583 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2471449583 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2405579816\" class=\"text\">\n\t\t\n\n<p>Customizable Reports &amp; Dashboards<\/p>\n\t\t\n<style>\n#text-2405579816 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2405579816 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-3056139632\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">INVENTORY MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-3056139632 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2045341761\" class=\"text\">\n\t\t\n\n<p>Invoicing<\/p>\n\t\t\n<style>\n#text-2045341761 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2045341761 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4165325932\" class=\"text\">\n\t\t\n\n<p>Vendor Management<\/p>\n\t\t\n<style>\n#text-4165325932 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4165325932 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1355959354\" class=\"text\">\n\t\t\n\n<p>Purchase Order Management<\/p>\n\t\t\n<style>\n#text-1355959354 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1355959354 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1253680991\" class=\"text\">\n\t\t\n\n<p>Subscriptions<\/p>\n\t\t\n<style>\n#text-1253680991 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1253680991 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1527235378\" class=\"text\">\n\t\t\n\n<p>Payment Tracking<\/p>\n\t\t\n<style>\n#text-1527235378 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1527235378 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3205793720\" class=\"text\">\n\t\t\n\n<p>Sales Order<\/p>\n\t\t\n<style>\n#text-3205793720 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3205793720 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1771872753\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">PROJECT MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-1771872753 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4270994061\" class=\"text\">\n\t\t\n\n<p>Task dependencies (Finish to Start)<\/p>\n\t\t\n<style>\n#text-4270994061 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4270994061 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2219982107\" class=\"text\">\n\t\t\n\n<p>Task dependencies (Finish to Start)<\/p>\n\t\t\n<style>\n#text-2219982107 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2219982107 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-1784554644\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">LMS PROTAL<\/span><\/h5>\n\t\t\n<style>\n#text-1784554644 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-4212680854\" class=\"text\">\n\t\t\n\n<p>Courses<\/p>\n\t\t\n<style>\n#text-4212680854 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-4212680854 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1837516871\" class=\"text\">\n\t\t\n\n<p>CoursesConcepts<\/p>\n\t\t\n<style>\n#text-1837516871 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1837516871 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2760370817\" class=\"text\">\n\t\t\n\n<p>Exercises<\/p>\n\t\t\n<style>\n#text-2760370817 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2760370817 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2860564091\" class=\"text\">\n\t\t\n\n<p>Quiz<\/p>\n\t\t\n<style>\n#text-2860564091 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2860564091 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2778904066\" class=\"text\">\n\t\t\n\n<p>Questions<\/p>\n\t\t\n<style>\n#text-2778904066 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2778904066 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-955386112\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">PROCESS DISIGNER<\/span><\/h5>\n\t\t\n<style>\n#text-955386112 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3441881544\" class=\"text\">\n\t\t\n\n<p>Business Process Automation<\/p>\n\t\t\n<style>\n#text-3441881544 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3441881544 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-1833662838\" class=\"text\">\n\t\t\n\n<p>Rules, Conditions, and Actions<\/p>\n\t\t\n<style>\n#text-1833662838 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-1833662838 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2899151338\" class=\"text\">\n\t\t\n\n<p>Workflows and Approvals<\/p>\n\t\t\n<style>\n#text-2899151338 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2899151338 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2617232408\" class=\"text\">\n\t\t\n\n<p>Flowcharts<\/p>\n\t\t\n<style>\n#text-2617232408 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2617232408 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3320032355\" class=\"text\">\n\t\t\n\n<p>Tasks<\/p>\n\t\t\n<style>\n#text-3320032355 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3320032355 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-505045585\" class=\"col key-features-card medium-2 small-6 large-2\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div>\n<p><strong><span style=\"color: #3978fe; font-size: 130%;\">ONE ENTERPRISE<\/span><\/strong><\/p>\n<p><span style=\"color: #161c2d;\">Fully loaded enterprise grade CRM that gives you best-in-class features for a fraction of the cost of comparable options<\/span><\/p>\n<\/div>\n<a class=\"button primary\"  >\n    <span>Start a free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"gap-772283423\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-772283423 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t<div id=\"text-2311377552\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">Everything in<\/span><br \/><span style=\"font-size: 90%; color: #161c2d;\"><span style=\"color: #3978fe;\"><b class=\"text-primary\">One Profressional <\/b><\/span>plus:<\/span><\/h5>\n\t\t\n<style>\n#text-2311377552 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\t<div id=\"text-1471030001\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">CONTACT ENGAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-1471030001 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-103557846\" class=\"text\">\n\t\t\n\n<p>Best Time to Contact<\/p>\n\t\t\n<style>\n#text-103557846 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-103557846 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-3921502048\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">SALESFORCE AUTOMATION<\/span><\/h5>\n\t\t\n<style>\n#text-3921502048 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-306241567\" class=\"text\">\n\t\t\n\n<p>Multi Currencies<\/p>\n\t\t\n<style>\n#text-306241567 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-306241567 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-4062250859\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">INTERNAL TICKETING<\/span><\/h5>\n\t\t\n<style>\n#text-4062250859 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3003127361\" class=\"text\">\n\t\t\n\n<p>Internal Ticketing system for employees<\/p>\n\t\t\n<style>\n#text-3003127361 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3003127361 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-408078956\" class=\"text\">\n\t\t\n\n<p>Internal ticket Insights<\/p>\n\t\t\n<style>\n#text-408078956 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-408078956 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-4048016903\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">HELP DESK<\/span><\/h5>\n\t\t\n<style>\n#text-4048016903 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-3292910927\" class=\"text\">\n\t\t\n\n<p>Work order management<\/p>\n\t\t\n<style>\n#text-3292910927 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-3292910927 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\t<div id=\"text-3348041940\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">PROJECT MANAGEMENT<\/span><\/h5>\n\t\t\n<style>\n#text-3348041940 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2482270202\" class=\"text\">\n\t\t\n\n<p>Automated Time Tracking and Billing<\/p>\n\t\t\n<style>\n#text-2482270202 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2482270202 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-1735816765\" class=\"col key-features-card medium-2 small-6 large-2\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n\n\n<div class=\"ribbon\" width=\"75\" height=\"75\"><span> NEW <\/span><\/div>\n\n<div>\n<p><strong><span style=\"color: #3978fe; font-size: 130%;\">ONE AI<\/span><\/strong><\/p>\n<p><span style=\"color: #161c2d;\">Enterprise-grade CRM with predictive and generative AI features for maximizing AI potential<\/span><\/p>\n<\/div>\n<a class=\"button primary\"  >\n    <span>Start a free trial<\/span>\n  <\/a>\n\n\n\t<div id=\"gap-1914078590\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1914078590 {\n  padding-top: 30px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t<div id=\"text-4074617710\" class=\"text\">\n\t\t\n\n<h5 class=\"features__heading mt-3\"><span style=\"font-size: 90%; color: #161c2d;\">Everything in<\/span><br \/><span style=\"font-size: 90%; color: #161c2d;\"><span style=\"color: #3978fe;\"><b class=\"text-primary\">One Enterprise <\/b><\/span>plus:<\/span><\/h5>\n\t\t\n<style>\n#text-4074617710 {\n  text-align: left;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-588748346\" class=\"text\">\n\t\t\n\n<p>Predictive AI<\/p>\n\t\t\n<style>\n#text-588748346 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-588748346 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2508832784\" class=\"text\">\n\t\t\n\n<p>Generative AI capabilities<\/p>\n\t\t\n<style>\n#text-2508832784 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2508832784 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2447411959\" class=\"text\">\n\t\t\n\n<p>Natural Language Querying<\/p>\n\t\t\n<style>\n#text-2447411959 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2447411959 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2074373947\" class=\"text\">\n\t\t\n\n<p>Voice Assistants Integration<\/p>\n\t\t\n<style>\n#text-2074373947 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2074373947 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2629946638\" class=\"text\">\n\t\t\n\n<p>AI Prompt Builder<\/p>\n\t\t\n<style>\n#text-2629946638 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2629946638 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-571605924\" class=\"text\">\n\t\t\n\n<p>AI Query Analytics<\/p>\n\t\t\n<style>\n#text-571605924 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-571605924 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<div class=\"icon-box featured-box key-features-card-detail icon-box-left text-left\"  >\n\t\t\t\t\t<div class=\"icon-box-img\" style=\"width: 20px\">\n\t\t\t\t<div class=\"icon\">\n\t\t\t\t\t<div class=\"icon-inner\" style=\"color:rgb(57, 120, 254);\">\n\t\t\t\t\t\t<?xml version=\"1.0\" encoding=\"UTF-8\"?> <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 24 24\" width=\"24px\" height=\"24px\"><path d=\"M 19.980469 5.9902344 A 1.0001 1.0001 0 0 0 19.292969 6.2929688 L 9 16.585938 L 5.7070312 13.292969 A 1.0001 1.0001 0 1 0 4.2929688 14.707031 L 8.2929688 18.707031 A 1.0001 1.0001 0 0 0 9.7070312 18.707031 L 20.707031 7.7070312 A 1.0001 1.0001 0 0 0 19.980469 5.9902344 z\"><\/path><\/svg> \t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t<div class=\"icon-box-text last-reset\">\n\t\t\t\t\t\t\t\t\t\n\n\t<div id=\"text-2547962641\" class=\"text\">\n\t\t\n\n<p>AI Bot Management<\/p>\n\t\t\n<style>\n#text-2547962641 {\n  font-size: 0.8rem;\n  color: rgb(22, 28, 45);\n}\n#text-2547962641 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n\t\t<\/div>\n\t<\/div>\n\t\n\t\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-832873570\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-832873570 {\n  padding-top: 70px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n<div class=\"row row-collapse row-full-width align-center after-key-features\"  id=\"row-180310890\">\n\n\n\t<div id=\"col-1244002704\" class=\"col after-key-features-card medium-3 small-11 large-3\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse after-key-features-card-inner\"  id=\"row-746267683\">\n\n\n\t<div id=\"col-1407719431\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<p><span style=\"color: #161c2d;\"><strong class=\"block-title lg\">Booster Packs<\/strong><\/span><\/p>\n<h1><span style=\"color: #3978fe;\">Customization<\/span>\u00a0<span style=\"color: #161c2d;\">your CRM edition with additional features<\/span><\/h1>\n<div class=\"desc\">\n<p><span style=\"color: #161c2d;\">Are feature limits holding you back? Use Vtiger Booster Packs add-ons and increase the limits of specific features without upgrading the plan. Pick what feature you want. Pay for the feature you use.<\/span><\/p>\n<\/div>\n<div class=\"link-wrap\"><strong><span class=\"link blue\" style=\"color: #3978fe;\">Explore Booster Packs \u2192<\/span><\/strong><\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-746267683 > .col > .col-inner {\n  padding: 40px 20px 40px 20px;\n}\n@media (min-width:550px) {\n  #row-746267683 > .col > .col-inner {\n    padding: 40px 60px 40px 60px;\n  }\n}\n<\/style>\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-826218723\" class=\"col after-key-features-card medium-3 small-11 large-3\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse after-key-features-card-inner\"  id=\"row-993914342\">\n\n\n\t<div id=\"col-99163891\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<p><span style=\"color: #161c2d;\"><strong class=\"block-title lg\">Pricing calculator with Add-ons<\/strong><\/span><\/p>\n<h1><span style=\"color: #3978fe;\">Calculate<\/span>\u00a0<span style=\"color: #161c2d;\">and build your own CRM with add-ons<\/span><\/h1>\n<div class=\"desc\">\n<p><span style=\"color: #161c2d;\">Tailor your CRM plan, calculate costs, and enhance functionality with our add-ons for a personalized and efficient system.<\/span><\/p>\n<\/div>\n<div class=\"link-wrap\"><strong><span class=\"link blue\" style=\"color: #3978fe;\">Calculate Your Price \u2192<\/span><\/strong><\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-993914342 > .col > .col-inner {\n  padding: 40px 20px 40px 20px;\n}\n@media (min-width:550px) {\n  #row-993914342 > .col > .col-inner {\n    padding: 40px 60px 40px 60px;\n  }\n}\n<\/style>\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\t<div id=\"col-948061444\" class=\"col after-key-features-card medium-3 small-11 large-3\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<div class=\"row row-collapse after-key-features-card-inner\"  id=\"row-797831876\">\n\n\n\t<div id=\"col-415123299\" class=\"col small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n<p><span style=\"color: #161c2d;\"><strong class=\"block-title lg\">1-Week implementation Challenge<\/strong><\/span><\/p>\n<h1><span style=\"color: #161c2d;\"><span style=\"color: #3978fe;\">CRM Implementation<\/span>\u00a0made simple with commitment<\/span><\/h1>\n<div class=\"desc\">\n<p><span style=\"color: #161c2d;\">Join us to launch your CRM in just one week. With our expertise and Vtiger's easy setup, we'll quickly connect you to your prospects.<\/span><\/p>\n<\/div>\n<div class=\"link-wrap\"><strong><span class=\"link blue\" style=\"color: #3978fe;\">Explore Implementation Program \u2192<\/span><\/strong><\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n\n<style>\n#row-797831876 > .col > .col-inner {\n  padding: 40px 20px 40px 20px;\n}\n@media (min-width:550px) {\n  #row-797831876 > .col > .col-inner {\n    padding: 40px 60px 40px 60px;\n  }\n}\n<\/style>\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-1438785304\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1438785304 {\n  padding-top: 40px;\n}\n@media (min-width:550px) {\n  #gap-1438785304 {\n    padding-top: 90px;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 170%; color: #161c2d;\">Frequently Asked Questions<\/span><\/strong><\/p>\n<div class=\"row row-collapse align-center\"  id=\"row-1539246284\">\n\n\n\t<div id=\"col-166456977\" class=\"col small-11 large-12\"  >\n\t\t\t\t<div class=\"col-inner\"  >\n\t\t\t\n\t\t\t\n\n\t<div id=\"gap-1620733779\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-1620733779 {\n  padding-top: 20px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"accordion faq-accordion\" rel=\"\">\n\n<div class=\"accordion-item\"><a href=\"#\" class=\"accordion-title plain\"><button class=\"toggle\" aria-label=\"Toggle\"><i class=\"icon-angle-down\"><\/i><\/button><span>What\u2019s the difference between Standard User and Single App User?<\/span><\/a><div class=\"accordion-inner\">\n\n\t<div id=\"text-2234238605\" class=\"text\">\n\t\t\n\n<p>Standard users have full access to five apps (Marketing, Sales, Help Desk, Projects and Inventory) and all modules. Single App users have complete access to one of the five apps (Marketing, Sales, Help Desk, Projects and Inventory) and read-only access to records in the other four apps.<\/p>\n\t\t\n<style>\n#text-2234238605 {\n  color: rgb(22, 28, 45);\n}\n#text-2234238605 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n<\/div><\/div>\n<div class=\"accordion-item\"><a href=\"#\" class=\"accordion-title plain\"><button class=\"toggle\" aria-label=\"Toggle\"><i class=\"icon-angle-down\"><\/i><\/button><span>Can I get a demo of Vtiger CRM?<\/span><\/a><div class=\"accordion-inner\">\n\n\t<div id=\"text-122468759\" class=\"text\">\n\t\t\n\n<p>Yes, you can request a no-obligation demo of the latest cloud version of Vtiger CRM <a href=\"https:\/\/vtigerecs.od1.vtiger.com\/appointments\/meetwithus\"><span style=\"color: #3978fe;\">from here<\/span>.<\/a> C\u00e1c chuy\u00ean gia c\u1ee7a ch\u00fang t\u00f4i s\u1ebd h\u01b0\u1edbng d\u1eabn b\u1ea1n c\u00e1c kh\u1ea3 n\u0103ng c\u1ee7a s\u1ea3n ph\u1ea9m v\u00e0 ch\u1ec9 ra c\u00e1ch b\u1ea1n c\u00f3 th\u1ec3 \u0111\u1ecbnh c\u1ea5u h\u00ecnh Vtiger \u0111\u1ec3 \u0111\u1ea1t \u0111\u01b0\u1ee3c m\u1ee5c ti\u00eau kinh doanh c\u1ee7a m\u00ecnh.<\/p>\n\t\t\n<style>\n#text-122468759 {\n  color: rgb(22, 28, 45);\n}\n#text-122468759 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n<\/div><\/div>\n<div class=\"accordion-item\"><a href=\"#\" class=\"accordion-title plain\"><button class=\"toggle\" aria-label=\"Toggle\"><i class=\"icon-angle-down\"><\/i><\/button><span>Can I switch plans?<\/span><\/a><div class=\"accordion-inner\">\n\n\t<div id=\"text-4255299895\" class=\"text\">\n\t\t\n\n<p>You can change your existing plan at any point in time. You can either upgrade or downgrade the plan based on your necessity.<\/p>\n\t\t\n<style>\n#text-4255299895 {\n  color: rgb(22, 28, 45);\n}\n#text-4255299895 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n<\/div><\/div>\n<div class=\"accordion-item\"><a href=\"#\" class=\"accordion-title plain\"><button class=\"toggle\" aria-label=\"Toggle\"><i class=\"icon-angle-down\"><\/i><\/button><span>Have more questions?<\/span><\/a><div class=\"accordion-inner\">\n\n\t<div id=\"text-163437595\" class=\"text\">\n\t\t\n\n<p>You can connect with us instantly through live chat (24x7) or by reaching to us at sales@vtiger.com<\/p>\n\t\t\n<style>\n#text-163437595 {\n  color: rgb(22, 28, 45);\n}\n#text-163437595 > * {\n  color: rgb(22, 28, 45);\n}\n<\/style>\n\t<\/div>\n\t\n\n<\/div><\/div>\n\n<\/div>\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-957874674\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-957874674 {\n  padding-top: 140px;\n}\n<\/style>\n\t<\/div>\n\t\n\n<div class=\"row\"  id=\"row-2112703174\">\n\n\n\t<div id=\"col-105284315\" class=\"col not-sure small-12 large-12\"  >\n\t\t\t\t<div class=\"col-inner text-center\"  >\n\t\t\t\n\t\t\t\n\n<p style=\"text-align: center;\"><strong><span style=\"font-size: 190%; color: #3978fe;\">Not sure which plan to choose?<\/span><\/strong><\/p>\n<a class=\"button primary lowercase not-sure-compare-btn\"  >\n    <span>Compare editions<\/span>\n  <\/a>\n\n\n<a class=\"button primary lowercase not-sure-contact-btn\"  >\n    <span>Contact us<\/span>\n  <\/a>\n\n\n\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\n\n<\/div>\n\t<div id=\"gap-578138987\" class=\"gap-element clearfix\" style=\"display:block; height:auto;\">\n\t\t\n<style>\n#gap-578138987 {\n  padding-top: 50px;\n}\n<\/style>\n\t<\/div>\n\t\n\n\t<div id=\"text-3567307675\" class=\"text shape-bottom\">\n\t\t\n\n<p><svg viewbox=\"0 0 1440 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" preserveaspectratio=\"none\">\n            <path d=\"M0 24H1440V0C722.5 52 0 0 0 0V24Z\" fill=\"#161c2d\"><\/path>\n        <\/svg><\/p>\n\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-blank.php","meta":{"footnotes":""},"class_list":["post-465","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/pages\/465","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/comments?post=465"}],"version-history":[{"count":283,"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/pages\/465\/revisions"}],"predecessor-version":[{"id":2628,"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/pages\/465\/revisions\/2628"}],"wp:attachment":[{"href":"https:\/\/vtigercrm.com.vn\/en\/wp-json\/wp\/v2\/media?parent=465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}