{"id":28677,"date":"2026-04-24T10:43:55","date_gmt":"2026-04-24T09:43:55","guid":{"rendered":"https:\/\/invoicefly.com\/?page_id=28677"},"modified":"2026-04-24T10:44:03","modified_gmt":"2026-04-24T09:44:03","slug":"plantilla-presupuesto","status":"publish","type":"page","link":"https:\/\/invoicefly.com\/es\/free-resources\/free-templates\/estimate-templates\/","title":{"rendered":"Plantillas de presupuesto gratuitas"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"28677\" class=\"elementor elementor-28677\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-97936ee e-flex e-con-boxed e-con e-parent\" data-id=\"97936ee\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-c4726ad e-con-full e-flex e-con e-child\" data-id=\"c4726ad\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83672b4 elementor-widget elementor-widget-elementskit-breadcrumb\" data-id=\"83672b4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-breadcrumb.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><ol class=\"ekit-breadcrumb\"><li class=\"ekit_breadcrumbs_start\"><span class=\"ekit_home_icon\"> <i class=\"fas fa-home\"><\/i> <\/span><a href=\"https:\/\/invoicefly.com\/es\">Home<\/a><\/li><\/ol><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b92ac81 elementor-widget elementor-widget-heading\" data-id=\"b92ac81\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Free Estimate Templates <\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-20cecf5 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"20cecf5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Our professional estimate templates feature clean, modern designs and are fully customizable to reflect your brand. Choose from six unique layouts\u2014then download, print, share, and send polished estimates in seconds.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8fb5b5b elementor-widget elementor-widget-html\" data-id=\"8fb5b5b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<input\n  type=\"text\"\n  placeholder=\"Search template\"\n  id=\"templateSearch\"\n  autocomplete=\"off\"\n\/>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8519044 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"8519044\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-56b9c3c elementor-widget elementor-widget-html\" data-id=\"56b9c3c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\nwindow.df_activeColors     = [];\nwindow.df_activeStyles     = [];\nwindow.df_activeFormats    = [];\nwindow.df_activeIndustries = [];\n\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n\n  const formatDataMap = {\n    excel: \"excel\", word: \"word\", pdf: \"pdf\", gdoc: \"gdoc\", sheet: \"sheet\"\n  };\n\n  function normalize(text) {\n    return text ? text.toLowerCase().trim() : \"\";\n  }\n\n  function df_filterTemplates() {\n    const templates = document.querySelectorAll(\".invoice-template\");\n    templates.forEach(function(template) {\n      const colorAttr     = normalize(template.dataset.color || \"\");\n      const styleAttr     = normalize(template.dataset.style || \"\");\n      const industryAttrs = (template.dataset.industrie || \"\").toLowerCase().trim().split(\/\\s+\/).filter(Boolean);\n\n      const matchesColor    = !window.df_activeColors.length || window.df_activeColors.includes(\"all\") || window.df_activeColors.includes(colorAttr);\n      const matchesStyle    = !window.df_activeStyles.length || window.df_activeStyles.includes(\"all\") || window.df_activeStyles.includes(styleAttr);\n      const matchesIndustry = !window.df_activeIndustries.length || window.df_activeIndustries.includes(\"all\") || window.df_activeIndustries.some(function(i) { return industryAttrs.includes(i); });\n\n      let matchesFormat = true;\n      if (window.df_activeFormats.length && !window.df_activeFormats.includes(\"all\")) {\n        matchesFormat = window.df_activeFormats.some(function(fmt) {\n          return formatDataMap[fmt] && template.dataset[formatDataMap[fmt]];\n        });\n      }\n\n      template.classList.toggle(\"template-hidden\", !(matchesColor && matchesStyle && matchesFormat && matchesIndustry));\n    });\n  }\n\n  function df_closeAll() {\n    document.querySelectorAll(\".df-dropdown.open\").forEach(function(d) { d.classList.remove(\"open\"); });\n    document.querySelectorAll(\".df-btn.open\").forEach(function(b) { b.classList.remove(\"open\"); });\n  }\n\n  document.addEventListener(\"click\", function(e) {\n    if (!e.target.closest(\".df-wrap\")) df_closeAll();\n  });\n\n  document.querySelectorAll(\".df-wrap\").forEach(function(wrap) {\n    const btn      = wrap.querySelector(\".df-btn\");\n    const dropdown = wrap.querySelector(\".df-dropdown\");\n    if (!btn || !dropdown) return;\n\n    const type         = btn.dataset.df;\n    const checkboxes   = dropdown.querySelectorAll(\"input[type='checkbox']\");\n    const labelDefault = btn.childNodes[0].textContent.trim();\n\n    function updateFilter() {\n      const selected = Array.from(checkboxes).filter(function(cb) { return cb.checked; }).map(function(cb) { return normalize(cb.value); });\n\n      if (type === \"colors\")   window.df_activeColors     = selected;\n      if (type === \"styles\")   window.df_activeStyles     = selected;\n      if (type === \"formats\")  window.df_activeFormats    = selected;\n      if (type === \"industry\") window.df_activeIndustries = selected;\n\n      btn.childNodes[0].textContent = selected.length ? labelDefault + \" (\" + selected.length + \") \" : labelDefault + \" \";\n      btn.classList.toggle(\"active\", selected.length > 0);\n\n      df_filterTemplates();\n    }\n\n    checkboxes.forEach(function(cb) {\n      cb.addEventListener(\"change\", updateFilter);\n    });\n\n    btn.addEventListener(\"click\", function(e) {\n      e.stopPropagation();\n      const isOpen = dropdown.classList.contains(\"open\");\n      df_closeAll();\n      if (!isOpen) {\n        dropdown.classList.add(\"open\");\n        btn.classList.add(\"open\");\n      }\n    });\n\n    dropdown.querySelector(\".df-clear\").addEventListener(\"click\", function() {\n      checkboxes.forEach(function(cb) { cb.checked = false; });\n      if (type === \"colors\")   window.df_activeColors     = [];\n      if (type === \"styles\")   window.df_activeStyles     = [];\n      if (type === \"formats\")  window.df_activeFormats    = [];\n      if (type === \"industry\") window.df_activeIndustries = [];\n\n      btn.childNodes[0].textContent = labelDefault + \" \";\n      btn.classList.remove(\"active\");\n\n      df_filterTemplates();\n    });\n  });\n});\n<\/script>\n\n<div class=\"df-wrap\">\n  <button type=\"button\" class=\"df-btn\" data-df=\"colors\">\n    Color <span class=\"df-arrow\">\u25be<\/span>\n  <\/button>\n  <div class=\"df-dropdown\" id=\"df-colorsDropdown\">\n    <div class=\"df-inner\">\n      <label><input type=\"checkbox\" value=\"all\"> All<\/label>\n      <label><input type=\"checkbox\" value=\"black\"> Black<\/label>\n      <label><input type=\"checkbox\" value=\"blue\"> Blue<\/label>\n      <label><input type=\"checkbox\" value=\"brown\"> Brown<\/label>\n      <label><input type=\"checkbox\" value=\"green\"> Green<\/label>\n      <label><input type=\"checkbox\" value=\"grey\"> Grey<\/label>\n      <label><input type=\"checkbox\" value=\"orange\"> Orange<\/label>\n      <label><input type=\"checkbox\" value=\"red\"> Red<\/label>\n      <label><input type=\"checkbox\" value=\"yellow\"> Yellow<\/label>\n    <\/div>\n    <div class=\"df-footer\">\n      <button type=\"button\" class=\"df-clear\">Clear<\/button>\n    <\/div>\n  <\/div>\n<\/div>\n\n<div class=\"df-wrap\">\n  <button type=\"button\" class=\"df-btn\" data-df=\"styles\">\n    Style <span class=\"df-arrow\">\u25be<\/span>\n  <\/button>\n  <div class=\"df-dropdown\" id=\"df-stylesDropdown\">\n    <div class=\"df-inner\">\n      <label><input type=\"checkbox\" value=\"all\"> All<\/label>\n      <label><input type=\"checkbox\" value=\"classic\"> Classic<\/label>\n      <label><input type=\"checkbox\" value=\"minimalist\"> Minimalist<\/label>\n      <label><input type=\"checkbox\" value=\"modern\"> Modern<\/label>\n      <label><input type=\"checkbox\" value=\"simple\"> Simple<\/label>\n    <\/div>\n    <div class=\"df-footer\">\n      <button type=\"button\" class=\"df-clear\">Clear<\/button>\n    <\/div>\n  <\/div>\n<\/div>\n\n<div class=\"df-wrap\">\n  <button type=\"button\" class=\"df-btn\" data-df=\"formats\">\n    Format <span class=\"df-arrow\">\u25be<\/span>\n  <\/button>\n  <div class=\"df-dropdown\" id=\"df-formatsDropdown\">\n    <div class=\"df-inner\">\n      <label><input type=\"checkbox\" value=\"all\"> All<\/label>\n      <label><input type=\"checkbox\" value=\"excel\"> Excel<\/label>\n      <label><input type=\"checkbox\" value=\"word\"> Word<\/label>\n      <label><input type=\"checkbox\" value=\"pdf\"> PDF<\/label>\n      <label><input type=\"checkbox\" value=\"gdoc\"> Google Docs<\/label>\n      <label><input type=\"checkbox\" value=\"sheet\"> Google Sheets<\/label>\n    <\/div>\n    <div class=\"df-footer\">\n      <button type=\"button\" class=\"df-clear\">Clear<\/button>\n    <\/div>\n  <\/div>\n<\/div>\n\n<div class=\"df-wrap\">\n  <button type=\"button\" class=\"df-btn\" data-df=\"industry\">\n    Industry <span class=\"df-arrow\">\u25be<\/span>\n  <\/button>\n  <div class=\"df-dropdown\" id=\"df-industryDropdown\">\n    <div class=\"df-inner\">\n      <label><input type=\"checkbox\" value=\"all\"> All<\/label>\n      <label><input type=\"checkbox\" value=\"autorepair\"> Auto Repair<\/label>\n      <label><input type=\"checkbox\" value=\"business\"> Business<\/label>\n      <label><input type=\"checkbox\" value=\"catering\"> Catering<\/label>\n      <label><input type=\"checkbox\" value=\"cleaning\"> Cleaning<\/label>\n      <label><input type=\"checkbox\" value=\"construction\"> Construction<\/label>\n      <label><input type=\"checkbox\" value=\"consulting\"> Consulting<\/label>\n      <label><input type=\"checkbox\" value=\"contractor\"> Contractor<\/label>\n      <label><input type=\"checkbox\" value=\"electrical\"> Electrical<\/label>\n      <label><input type=\"checkbox\" value=\"freelance\"> Freelance<\/label>\n      <label><input type=\"checkbox\" value=\"handyman\"> Handyman<\/label>\n      <label><input type=\"checkbox\" value=\"landscaping\"> Landscaping<\/label>\n      <label><input type=\"checkbox\" value=\"lawncare\"> Lawn Care<\/label>\n      <label><input type=\"checkbox\" value=\"mechanic\"> Mechanic<\/label>\n      <label><input type=\"checkbox\" value=\"painting\"> Painting<\/label>\n      <label><input type=\"checkbox\" value=\"photography\"> Photography<\/label>\n      <label><input type=\"checkbox\" value=\"plumbing\"> Plumbing<\/label>\n      <label><input type=\"checkbox\" value=\"propertymanagement\"> Property Management<\/label>\n      <label><input type=\"checkbox\" value=\"roofing\"> Roofing<\/label>\n      <label><input type=\"checkbox\" value=\"selfemployedcleaner\"> Self-Employed Cleaner<\/label>\n      <label><input type=\"checkbox\" value=\"therapy\"> Therapy<\/label>\n      <label><input type=\"checkbox\" value=\"treeremoval\"> Tree Removal<\/label>\n      <label><input type=\"checkbox\" value=\"trucking\"> Trucking<\/label>\n    <\/div>\n    <div class=\"df-footer\">\n      <button type=\"button\" class=\"df-clear\">Clear<\/button>\n    <\/div>\n  <\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0b12c07 e-con-full elementor-hidden-desktop e-flex e-con e-child\" data-id=\"0b12c07\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a17d01d elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"a17d01d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<button type=\"button\" class=\"filter-btn open-colors\">\n  Color\n<\/button>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0df8df1 elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"0df8df1\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<button type=\"button\" class=\"filter-btn open-styles\">\n  Style\n<\/button>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8abaae3 elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"8abaae3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<button type=\"button\" class=\"filter-btn open-formats\">\n  Format\n<\/button>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24e5992 elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"24e5992\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<button type=\"button\" class=\"filter-btn open-industry\">\n  Industry\n<\/button>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c679be5 e-con-full e-flex e-con e-parent\" data-id=\"c679be5\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4d7248e elementor-widget elementor-widget-template\" data-id=\"4d7248e\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"94329\" class=\"elementor elementor-94329\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"elementor-element elementor-element-476ca758 e-con-full e-flex e-con e-parent\" data-id=\"476ca758\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-708553f9 e-con-full e-flex e-con e-child\" data-id=\"708553f9\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1539c8cf e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"1539c8cf\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-31dd5b35 e-con-full e-flex e-con e-child\" data-id=\"31dd5b35\" data-element_type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_offset&quot;:120,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;],&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-335e4853 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"335e4853\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><g clip-path=\"url(#clip0_4593_4847)\"><path d=\"M16 23C16 23.552 15.553 24 15 24H6C3.243 24 1 21.757 1 19V5C1 2.243 3.243 0 6 0H10.515C12.384 0 14.142 0.728 15.465 2.05L18.949 5.536C19.22 5.807 19.472 6.104 19.697 6.419C20.018 6.868 19.914 7.493 19.465 7.814C19.016 8.134 18.39 8.031 18.07 7.581C17.909 7.356 17.729 7.143 17.536 6.951L14.051 3.465C13.733 3.147 13.38 2.878 13 2.66V7C13 7.551 13.448 8 14 8H17C17.553 8 18 8.448 18 9C18 9.552 17.553 10 17 10H14C12.346 10 11 8.654 11 7V2.023C10.84 2.008 10.678 2 10.515 2H6C4.346 2 3 3.346 3 5V19C3 20.654 4.346 22 6 22H15C15.553 22 16 22.448 16 23ZM21.685 16.267L18.644 15.76C18.271 15.698 18 15.378 18 15C18 14.449 18.448 14 19 14H21.268C21.624 14 21.956 14.192 22.135 14.5C22.41 14.978 23.02 15.141 23.501 14.865C23.979 14.588 24.143 13.977 23.865 13.499C23.331 12.574 22.335 11.999 21.267 11.999H20.999V10.999C20.999 10.447 20.552 9.999 19.999 9.999C19.446 9.999 18.999 10.447 18.999 10.999V11.999C17.345 11.999 15.999 13.345 15.999 14.999C15.999 16.359 16.973 17.509 18.314 17.732L21.355 18.239C21.728 18.301 21.999 18.621 21.999 18.999C21.999 19.55 21.551 19.999 20.999 19.999H18.731C18.375 19.999 18.043 19.807 17.864 19.499C17.589 19.02 16.978 18.857 16.498 19.134C16.02 19.411 15.856 20.022 16.134 20.5C16.668 21.425 17.664 21.999 18.732 21.999H19V22.999C19 23.551 19.447 23.999 20 23.999C20.553 23.999 21 23.551 21 22.999V21.999C22.654 21.999 24 20.653 24 18.999C24 17.639 23.026 16.49 21.685 16.267ZM7.5 15H13C13.553 15 14 14.552 14 14C14 13.448 13.553 13 13 13H7.5C6.122 13 5 14.122 5 15.5V17.5C5 18.878 6.122 20 7.5 20H13C13.553 20 14 19.552 14 19C14 18.448 13.553 18 13 18H7.5C7.224 18 7 17.776 7 17.5V15.5C7 15.224 7.224 15 7.5 15ZM6 11H8C8.552 11 9 10.552 9 10C9 9.448 8.552 9 8 9H6C5.448 9 5 9.448 5 10C5 10.552 5.448 11 6 11ZM6 7H8C8.552 7 9 6.552 9 6C9 5.448 8.552 5 8 5H6C5.448 5 5 5.448 5 6C5 6.552 5.448 7 6 7Z\" fill=\"black\"><\/path><\/g><defs><clipPath id=\"clip0_4593_4847\"><rect width=\"24\" height=\"24\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Invoice Templates<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><g clip-path=\"url(#clip0_4593_4850)\"><path d=\"M21 0H6.499C4.57 0 3 1.571 3 3.5V7C3 7.552 3.448 8 4 8C4.552 8 5 7.552 5 7V3.5C5 2.673 5.673 2 6.5 2C7.327 2 8 2.673 8 3.5C8 4.878 9.122 6 10.5 6H19V19C19 20.654 17.654 22 16 22H14C13.448 22 13 22.448 13 23C13 23.552 13.448 24 14 24H16C18.757 24 21 21.757 21 19V6H21.5C22.878 6 24 4.878 24 3.5V3C24 1.346 22.654 0 21 0ZM22 3.5C22 3.776 21.776 4 21.5 4H10.5C10.224 4 10 3.776 10 3.5C10 2.963 9.878 2.455 9.662 2H21C21.551 2 22 2.449 22 3V3.5ZM8.5 10H3.5C1.57 10 0 11.57 0 13.5V20.5C0 22.43 1.57 24 3.5 24H8.5C10.43 24 12 22.43 12 20.5V13.5C12 11.57 10.43 10 8.5 10ZM10 20.5C10 21.327 9.327 22 8.5 22H3.5C2.673 22 2 21.327 2 20.5V13.5C2 12.673 2.673 12 3.5 12H8.5C9.327 12 10 12.673 10 13.5V20.5ZM9 14C9 14.552 8.552 15 8 15H4C3.448 15 3 14.552 3 14C3 13.448 3.448 13 4 13H8C8.552 13 9 13.448 9 14ZM9 17C9 17.552 8.552 18 8 18H7.5C6.948 18 6.5 17.552 6.5 17C6.5 16.448 6.948 16 7.5 16H8C8.552 16 9 16.448 9 17ZM5.5 17C5.5 17.552 5.052 18 4.5 18H4C3.448 18 3 17.552 3 17C3 16.448 3.448 16 4 16H4.5C5.052 16 5.5 16.448 5.5 17ZM9 20C9 20.552 8.552 21 8 21H7.5C6.948 21 6.5 20.552 6.5 20C6.5 19.448 6.948 19 7.5 19H8C8.552 19 9 19.448 9 20ZM5.5 20C5.5 20.552 5.052 21 4.5 21H4C3.448 21 3 20.552 3 20C3 19.448 3.448 19 4 19H4.5C5.052 19 5.5 19.448 5.5 20Z\" fill=\"black\"><\/path><\/g><defs><clipPath id=\"clip0_4593_4850\"><rect width=\"24\" height=\"24\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Estimate Templates<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/quote-templates\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><g clip-path=\"url(#clip0_4593_4853)\"><path d=\"M18 24H6C4.67441 23.9984 3.40356 23.4711 2.46622 22.5338C1.52888 21.5964 1.00159 20.3256 1 19V5C1.00159 3.67441 1.52888 2.40356 2.46622 1.46622C3.40356 0.528882 4.67441 0.00158786 6 0L18 0C19.3256 0.00158786 20.5964 0.528882 21.5338 1.46622C22.4711 2.40356 22.9984 3.67441 23 5V19C22.9984 20.3256 22.4711 21.5964 21.5338 22.5338C20.5964 23.4711 19.3256 23.9984 18 24ZM6 2C5.20435 2 4.44129 2.31607 3.87868 2.87868C3.31607 3.44129 3 4.20435 3 5V19C3 19.7956 3.31607 20.5587 3.87868 21.1213C4.44129 21.6839 5.20435 22 6 22H18C18.7956 22 19.5587 21.6839 20.1213 21.1213C20.6839 20.5587 21 19.7956 21 19V5C21 4.20435 20.6839 3.44129 20.1213 2.87868C19.5587 2.31607 18.7956 2 18 2H6ZM16 10H8C7.20435 10 6.44129 9.68393 5.87868 9.12132C5.31607 8.55871 5 7.79565 5 7C5 6.20435 5.31607 5.44129 5.87868 4.87868C6.44129 4.31607 7.20435 4 8 4H16C16.7956 4 17.5587 4.31607 18.1213 4.87868C18.6839 5.44129 19 6.20435 19 7C19 7.79565 18.6839 8.55871 18.1213 9.12132C17.5587 9.68393 16.7956 10 16 10ZM8 6C7.73478 6 7.48043 6.10536 7.29289 6.29289C7.10536 6.48043 7 6.73478 7 7C7 7.26522 7.10536 7.51957 7.29289 7.70711C7.48043 7.89464 7.73478 8 8 8H16C16.2652 8 16.5196 7.89464 16.7071 7.70711C16.8946 7.51957 17 7.26522 17 7C17 6.73478 16.8946 6.48043 16.7071 6.29289C16.5196 6.10536 16.2652 6 16 6H8ZM6 13C5.80222 13 5.60888 13.0586 5.44443 13.1685C5.27998 13.2784 5.15181 13.4346 5.07612 13.6173C5.00043 13.8 4.98063 14.0011 5.01921 14.1951C5.0578 14.3891 5.15304 14.5673 5.29289 14.7071C5.43275 14.847 5.61093 14.9422 5.80491 14.9808C5.99889 15.0194 6.19996 14.9996 6.38268 14.9239C6.56541 14.8482 6.72159 14.72 6.83147 14.5556C6.94135 14.3911 7 14.1978 7 14C7 13.7348 6.89464 13.4804 6.70711 13.2929C6.51957 13.1054 6.26522 13 6 13ZM10 13C9.80222 13 9.60888 13.0586 9.44443 13.1685C9.27998 13.2784 9.15181 13.4346 9.07612 13.6173C9.00043 13.8 8.98063 14.0011 9.01921 14.1951C9.0578 14.3891 9.15304 14.5673 9.29289 14.7071C9.43275 14.847 9.61093 14.9422 9.80491 14.9808C9.99889 15.0194 10.2 14.9996 10.3827 14.9239C10.5654 14.8482 10.7216 14.72 10.8315 14.5556C10.9414 14.3911 11 14.1978 11 14C11 13.7348 10.8946 13.4804 10.7071 13.2929C10.5196 13.1054 10.2652 13 10 13ZM14 13C13.8022 13 13.6089 13.0586 13.4444 13.1685C13.28 13.2784 13.1518 13.4346 13.0761 13.6173C13.0004 13.8 12.9806 14.0011 13.0192 14.1951C13.0578 14.3891 13.153 14.5673 13.2929 14.7071C13.4327 14.847 13.6109 14.9422 13.8049 14.9808C13.9989 15.0194 14.2 14.9996 14.3827 14.9239C14.5654 14.8482 14.7216 14.72 14.8315 14.5556C14.9414 14.3911 15 14.1978 15 14C15 13.7348 14.8946 13.4804 14.7071 13.2929C14.5196 13.1054 14.2652 13 14 13ZM6 17C5.80222 17 5.60888 17.0586 5.44443 17.1685C5.27998 17.2784 5.15181 17.4346 5.07612 17.6173C5.00043 17.8 4.98063 18.0011 5.01921 18.1951C5.0578 18.3891 5.15304 18.5673 5.29289 18.7071C5.43275 18.847 5.61093 18.9422 5.80491 18.9808C5.99889 19.0194 6.19996 18.9996 6.38268 18.9239C6.56541 18.8482 6.72159 18.72 6.83147 18.5556C6.94135 18.3911 7 18.1978 7 18C7 17.7348 6.89464 17.4804 6.70711 17.2929C6.51957 17.1054 6.26522 17 6 17ZM10 17C9.80222 17 9.60888 17.0586 9.44443 17.1685C9.27998 17.2784 9.15181 17.4346 9.07612 17.6173C9.00043 17.8 8.98063 18.0011 9.01921 18.1951C9.0578 18.3891 9.15304 18.5673 9.29289 18.7071C9.43275 18.847 9.61093 18.9422 9.80491 18.9808C9.99889 19.0194 10.2 18.9996 10.3827 18.9239C10.5654 18.8482 10.7216 18.72 10.8315 18.5556C10.9414 18.3911 11 18.1978 11 18C11 17.7348 10.8946 17.4804 10.7071 17.2929C10.5196 17.1054 10.2652 17 10 17ZM18 13C17.8022 13 17.6089 13.0586 17.4444 13.1685C17.28 13.2784 17.1518 13.4346 17.0761 13.6173C17.0004 13.8 16.9806 14.0011 17.0192 14.1951C17.0578 14.3891 17.153 14.5673 17.2929 14.7071C17.4327 14.847 17.6109 14.9422 17.8049 14.9808C17.9989 15.0194 18.2 14.9996 18.3827 14.9239C18.5654 14.8482 18.7216 14.72 18.8315 14.5556C18.9414 14.3911 19 14.1978 19 14C19 13.7348 18.8946 13.4804 18.7071 13.2929C18.5196 13.1054 18.2652 13 18 13ZM19 18C19 17.7348 18.8946 17.4804 18.7071 17.2929C18.5196 17.1054 18.2652 17 18 17H14C13.7348 17 13.4804 17.1054 13.2929 17.2929C13.1054 17.4804 13 17.7348 13 18C13 18.2652 13.1054 18.5196 13.2929 18.7071C13.4804 18.8946 13.7348 19 14 19H18C18.2652 19 18.5196 18.8946 18.7071 18.7071C18.8946 18.5196 19 18.2652 19 18Z\" fill=\"black\"><\/path><\/g><defs><clipPath id=\"clip0_4593_4853\"><rect width=\"24\" height=\"24\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Quote Templates<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/receipt-templates\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><g clip-path=\"url(#clip0_4593_4856)\"><path d=\"M16 0H8C6.67441 0.00158786 5.40356 0.528882 4.46622 1.46622C3.52888 2.40356 3.00159 3.67441 3 5V23C3.00014 23.1819 3.04989 23.3603 3.14388 23.516C3.23788 23.6717 3.37256 23.7989 3.53344 23.8837C3.69431 23.9686 3.87529 24.008 4.05688 23.9976C4.23847 23.9873 4.4138 23.9276 4.564 23.825L6.67 22.386L8.776 23.825C8.94239 23.9389 9.13934 23.9999 9.341 23.9999C9.54266 23.9999 9.73961 23.9389 9.906 23.825L12.006 22.386L14.106 23.825C14.2725 23.9392 14.4696 24.0003 14.6715 24.0003C14.8734 24.0003 15.0705 23.9392 15.237 23.825L17.337 22.387L19.437 23.824C19.5871 23.9263 19.7623 23.9857 19.9436 23.996C20.125 24.0062 20.3057 23.9669 20.4664 23.8821C20.627 23.7974 20.7616 23.6706 20.8556 23.5151C20.9496 23.3597 20.9996 23.1816 21 23V5C20.9984 3.67441 20.4711 2.40356 19.5338 1.46622C18.5964 0.528882 17.3256 0.00158786 16 0ZM19 21.1L17.9 20.348C17.7334 20.2336 17.5361 20.1724 17.334 20.1724C17.1319 20.1724 16.9346 20.2336 16.768 20.348L14.668 21.787L12.568 20.348C12.4015 20.2338 12.2044 20.1727 12.0025 20.1727C11.8006 20.1727 11.6035 20.2338 11.437 20.348L9.337 21.787L7.237 20.348C7.07071 20.2343 6.87396 20.1734 6.6725 20.1734C6.47105 20.1734 6.27429 20.2343 6.108 20.348L5 21.1V5C5 4.20435 5.31607 3.44129 5.87868 2.87868C6.44129 2.31607 7.20435 2 8 2H16C16.7956 2 17.5587 2.31607 18.1213 2.87868C18.6839 3.44129 19 4.20435 19 5V21.1Z\" fill=\"black\"><\/path><path d=\"M16 8H8C7.44772 8 7 8.44772 7 9C7 9.55228 7.44772 10 8 10H16C16.5523 10 17 9.55228 17 9C17 8.44772 16.5523 8 16 8Z\" fill=\"black\"><\/path><path d=\"M14 12H8C7.44772 12 7 12.4477 7 13C7 13.5523 7.44772 14 8 14H14C14.5523 14 15 13.5523 15 13C15 12.4477 14.5523 12 14 12Z\" fill=\"black\"><\/path><\/g><defs><clipPath id=\"clip0_4593_4856\"><rect width=\"24\" height=\"24\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Receipt Templates<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/bill-templates\/\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><g clip-path=\"url(#clip0_4593_4861)\"><path d=\"M19.95 5.535L16.465 2.05C15.143 0.728 13.385 3.34244e-07 11.515 3.34244e-07H7C4.243 -0.000999666 2 2.242 2 4.999V18.999C2 21.756 4.243 23.999 7 23.999H17C19.757 23.999 22 21.756 22 18.999V10.484C22 8.614 21.272 6.858 19.95 5.535ZM18.536 6.949C18.854 7.267 19.123 7.62 19.341 7.999H15C14.449 7.999 14 7.55 14 6.999V2.658C14.379 2.876 14.733 3.145 15.05 3.463L18.535 6.948L18.536 6.949ZM20 18.999C20 20.653 18.654 21.999 17 21.999H7C5.346 21.999 4 20.653 4 18.999V4.999C4 3.345 5.346 1.999 7 1.999H11.515C11.678 1.999 11.84 2.007 12 2.022V6.999C12 8.653 13.346 9.999 15 9.999H19.977C19.992 10.159 20 10.321 20 10.484V18.999ZM15.5 12.999H8.5C7.122 12.999 6 14.121 6 15.499V17.499C6 18.877 7.122 19.999 8.5 19.999H15.5C16.878 19.999 18 18.877 18 17.499V15.499C18 14.121 16.878 12.999 15.5 12.999ZM16 17.499C16 17.775 15.776 17.999 15.5 17.999H8.5C8.224 17.999 8 17.775 8 17.499V15.499C8 15.223 8.224 14.999 8.5 14.999H15.5C15.776 14.999 16 15.223 16 15.499V17.499ZM6 9.999C6 9.447 6.448 8.999 7 8.999H9C9.552 8.999 10 9.447 10 9.999C10 10.551 9.552 10.999 9 10.999H7C6.448 10.999 6 10.551 6 9.999ZM6 5.999C6 5.447 6.448 4.999 7 4.999H9C9.552 4.999 10 5.447 10 5.999C10 6.551 9.552 6.999 9 6.999H7C6.448 6.999 6 6.551 6 5.999Z\" fill=\"black\"><\/path><\/g><defs><clipPath id=\"clip0_4593_4861\"><rect width=\"24\" height=\"24\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Bill Templates<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-45e0dffe e-con-full e-flex e-con e-child\" data-id=\"45e0dffe\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-278bcc8a elementor-widget elementor-widget-heading\" data-id=\"278bcc8a\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Invoice Fly Pro<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b6b7ebd elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"6b6b7ebd\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Try Invoice Fly today without credit card<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41435b98 elementor-align-justify elementor-widget__width-initial elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"41435b98\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get started now &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6416ee6e elementor-align-justify elementor-widget__width-initial elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-button\" data-id=\"6416ee6e\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/appinvoicefly\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get started now &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-762f5fba elementor-widget elementor-widget-text-editor\" data-id=\"762f5fba\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Start for free<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-21f51039 e-con-full e-flex e-con e-child\" data-id=\"21f51039\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7b7dfb07 e-con-full templates-wrapper e-grid e-con e-child\" data-id=\"7b7dfb07\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-73655b06 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"73655b06\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-18b28d30 elementor-widget elementor-widget-image\" data-id=\"18b28d30\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\" target=\"_blank\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"399\" height=\"288\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png\" class=\"attachment-large size-large wp-image-89044\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png 399w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587-300x217.png 300w\" sizes=\"(max-width: 399px) 100vw, 399px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c40b707 elementor-widget elementor-widget-heading\" data-id=\"c40b707\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u00bfNeed Premium Templates?<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ea540ce elementor-align-center elementor-widget__width-initial elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"2ea540ce\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Download the App<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1838c0e e-con-full elementor-hidden-desktop e-flex e-con e-child\" data-id=\"1838c0e\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-51ad71b elementor-widget elementor-widget-image\" data-id=\"51ad71b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/appinvoicefly\/\" target=\"_blank\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"399\" height=\"288\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png\" class=\"attachment-large size-large wp-image-89044\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png 399w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587-300x217.png 300w\" sizes=\"(max-width: 399px) 100vw, 399px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-607660b elementor-widget elementor-widget-heading\" data-id=\"607660b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u00bfNeed Premium Templates?<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b97761d elementor-align-center elementor-widget__width-initial elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"b97761d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/appinvoicefly\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Download the App<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<a class=\"elementor-element elementor-element-5b17bf5d e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"5b17bf5d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" modern=\"\" data-color=\"black\" data-style=\"modern\" data-name=\"Modern Black Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1-stVY3fNufgsUi5POPeyEJShWvrmHDIXr-uazBa1Guw\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1bUfzMTNFOP2Jw50uD-CXxAoiZ9J6iZy-2cSpLd7fjeE\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=modernFrameBlack\" data-industrie=\"autorepair business cleaning construction consulting contractor electrical freelance handyman landscaping\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72281b56 elementor-widget elementor-widget-image\" data-id=\"72281b56\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94331\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Azure-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-6deb7b01 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"6deb7b01\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_top&quot;:&quot;curve&quot;}\" minimal=\"\" data-color=\"blue\" data-style=\"minimalist\" data-name=\"Minimal Blue Geometric Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1FP8-m4nfVAkgkVJReAj7adVvE0HQO5OEuLzzZPzv84s\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1HWUVyLYiPp7clig5DaG02DNo2tgdSBMxsqViqGkPGps\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=geometricBlue\" data-industrie=\"business catering cleaning consulting contractor freelance lawncare mechanic painting photography\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n    <path class=\"elementor-shape-fill\" d=\"M1000,4.3V0H0v4.3C0.9,23.1,126.7,99.2,500,100S1000,22.7,1000,4.3z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d5f1a17 elementor-widget elementor-widget-image\" data-id=\"4d5f1a17\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94355\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Blue-Geometric-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-465bdf44 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"465bdf44\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"black\" data-style=\"classic\" data-name=\"Classic Black Estimate Template\" data-description=\"This classic Estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1FFCZIdmXzBIPoLPS9tqyxXcNLL-xcNjP4SD_xvI09rE\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1gqEe7yIj-11dBUJVslj0AAHOH8mP-m6-oDBVszrdRTE\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV2Black\" data-industrie=\"autorepair construction electrical handyman landscaping lawncare mechanic plumbing roofing trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec708f6 elementor-widget elementor-widget-image\" data-id=\"ec708f6\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94337\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Black-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-39043a3d e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"39043a3d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"green\" data-style=\"classic\" data-name=\"Classic Forest Green Estimate Template\" data-description=\"This classic Estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1JSM-HirGOMdCMKNcLplFHlGHYwz0ZuKdAarIVGla_zs\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1t59JESUNT11796DJbETYM5AB6msIij3dvSXOHU1M2Vo\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicGreen\" data-industrie=\"catering cleaning consulting contractor freelance painting photography plumbing therapy treeremoval\">\n\t\t\t\t<div class=\"elementor-element elementor-element-633017d3 elementor-widget elementor-widget-image\" data-id=\"633017d3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94339\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Forest-Green-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-83650af e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"83650af\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"green\" data-style=\"classic\" data-name=\"Classic Olive Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/d\/1I2REncHkRPNC9NW27vrWMAK5cO62QYpLEpmVe2uS62M\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/12ZnjxIwGnG-2mOtDDz6iEFNVdhzQLiWf_L18mOACcCk\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV3Olive\" data-industrie=\"autorepair business construction electrical freelance handyman mechanic roofing selfemployedcleaner trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ad96a9b elementor-widget elementor-widget-image\" data-id=\"2ad96a9b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94343\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Olive-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-3a4cbc41 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"3a4cbc41\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"purple\" data-style=\"classic\" data-name=\"Classic Purple Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1jzwdhCnEyMH9Gx4_EB3Z4yfLL1U3JUvr7DxyW1q1yoQ\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1P4pfF3PiS8V6y_inmJodzWeOWvI_E0CSqvmWWdFT8RU\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicPurple\" data-industrie=\"business catering consulting lawncare painting photography plumbing propertymanagement therapy treeremoval\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6a510723 elementor-widget elementor-widget-image\" data-id=\"6a510723\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94344\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purple-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-a5a1a7c e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"a5a1a7c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"brown\" data-style=\"minimalist\" data-name=\"Minimal Beige Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/12LSqIu_-6qTCLYrizHLVcr5CPWhl75YYMBd6MwOdVQE\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1fY4dQ_X2ejYVN9cEVNAMvzNKwRvmAKdg8NJdLVxaVWE\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=beigeMinimal\" data-industrie=\"autorepair cleaning construction contractor electrical landscaping mechanic roofing trucking selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-67b3ca40 elementor-widget elementor-widget-image\" data-id=\"67b3ca40\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94354\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Beige-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-813a16f e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"813a16f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Modern Blue Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1MCKAIwAVf0k0GC-hncCP8YVTXk4y8RZQ-Nty867OPRE\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1Z8vGT9wg_ii704fz_7jawvCilrq_p4S7SadTr47n_MM\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=blueOutline\" data-industrie=\"business catering freelance handyman lawncare painting photography therapy treeremoval propertymanagement\">\n\t\t\t\t<div class=\"elementor-element elementor-element-54942ecf elementor-widget elementor-widget-image\" data-id=\"54942ecf\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94359\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Blue-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-3022fc64 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"3022fc64\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"orange\" data-style=\"modern\" data-name=\"Modern Soft Peach Estimate template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/13aDqlWkPpEbSDrN8XfFYQMGbdXtde4UQzIY8VXxyE70\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1l8BxUr_wp58PLq7BjbOlE-F3g25JH2mVwzaV-eWLEgA\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=modernFrameBeige\" data-industrie=\"autorepair consulting construction electrical landscaping mechanic plumbing roofing selfemployedcleaner trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a2f0c45 elementor-widget elementor-widget-image\" data-id=\"7a2f0c45\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template.jpg\" class=\"attachment-large size-large wp-image-94360\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Soft-Peach-Estimate-template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-56506aa4 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"56506aa4\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"classic\" data-name=\"Classic Blue Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template-.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template-.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/d\/1Qaj0nUaykpNe_Ha5BHKKeTg7doXsl-3qmneRB3j4giE\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1ryNXmnpD7MyfjgjA4P54MHmLjlBfyZ7UB9nQEz_YL0Y\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template-.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV2Blue\" data-industrie=\"business catering cleaning contractor freelance handyman painting photography propertymanagement therapy\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7be25426 elementor-widget elementor-widget-image\" data-id=\"7be25426\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template-.jpg\" class=\"attachment-large size-large wp-image-94338\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template-.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template--212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Blue-Estimate-Template--8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-25fdab6c e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"25fdab6c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"red\" data-style=\"classic\" data-name=\"Classic Red Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1zriyhzAJwJFgY0-yunvMx8gydaXd6I0CUaZwo6o9AqI\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1IWGn1sochgeoRWkqePX5TNa1BD4-CaSdcNPcwKt3TUU\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV3Red\" data-industrie=\"autorepair construction consulting electrical freelance lawncare mechanic roofing treeremoval trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74373199 elementor-widget elementor-widget-image\" data-id=\"74373199\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94346\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Red-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-c1d31c2 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"c1d31c2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"minimalist\" data-name=\"Minimal Azure Geometric Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1mHIxkMaYguDfDVcMpXvTejH4WGUsiQmCudJ8aLAcrEc\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/19JZ3-K1HxhQNvhs0EWPiR2oM4RhFTAUuaumJCzzmwBk\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=geometricAzure\" data-industrie=\"business catering cleaning handyman landscaping painting photography plumbing propertymanagement selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3855b36f elementor-widget elementor-widget-image\" data-id=\"3855b36f\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94353\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Azure-Geometric-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-260da42b e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"260da42b\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"green\" data-style=\"classic\" data-name=\"Classic Green &amp; Beige Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template.jpg\" data-excel=\"\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1rOQzr18OGcH7uGVfYEmsDIRNh3iZWy8-VIA5P5WAdjo\/copy\" data-sheet=\"\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV2Green\" data-industrie=\"autorepair consulting contractor electrical freelance mechanic roofing therapy treeremoval trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-29c5ddca elementor-widget elementor-widget-image\" data-id=\"29c5ddca\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94340\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Green-Beige-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-6327eca2 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"6327eca2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"minimalist\" data-name=\"Minimal Sky Blue Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-Blue-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1p5KnW0uFn1zk1YVo91mA-IpmgPzyJciElSN080dwbF8\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1LxAGbr4g2LA9a9Mg_KgNMlfMUBd_UIFvoMeJOuQCVgo\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=lightblueMinimal\" data-industrie=\"business catering cleaning construction handyman landscaping lawncare photography plumbing selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60f8d88 elementor-widget elementor-widget-image\" data-id=\"60f8d88\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94357\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Light-Sky-blue-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-5a4ba324 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"5a4ba324\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"brown\" data-style=\"classic\" data-name=\"Classic Beige Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template-.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-brown-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template-.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1FeP_9J5OBGmcRRMYKZ6Rmou8_BeYf2oIRzM-Bk7fNCo\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/17WMNJj6Z5J0Az2hcRdmk2mNKyVH0ObpdMxkna6hBAk4\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template-.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicBeige\" data-industrie=\"autorepair consulting contractor electrical freelance painting propertymanagement roofing therapy trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c60c9fa elementor-widget elementor-widget-image\" data-id=\"5c60c9fa\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template-.jpg\" class=\"attachment-large size-large wp-image-94336\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template-.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template--232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Beige-Brown-Estimate-Template--9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-52dca2a3 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"52dca2a3\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"black\" data-style=\"modern\" data-name=\"Modern Black Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template-II-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1Dyotwb30NM8v2YiO4jxqNa8hPTraFjSaxoIL1t4Mg44\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1HTazxJN9j3bsLvFekpGqsOGECjzDqOUB_fxFKDMlHOI\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=blackOutline\" data-industrie=\"business catering cleaning construction landscaping lawncare mechanic photography treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-240940d9 elementor-widget elementor-widget-image\" data-id=\"240940d9\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94358\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Black-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-a54ed1d e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"a54ed1d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Modern Teal Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1n1a599pzLuxxL_dBiBImoDfFaKE9daEsdg-S7UlJQsU\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1-KCMPoEbKVdhTXPzZKeeQYpfWJhmbet32z3uSle7wOE\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=modernFrameBlue\" data-industrie=\"autorepair consulting contractor electrical handyman painting plumbing roofing therapy trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4a09a08c elementor-widget elementor-widget-image\" data-id=\"4a09a08c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94361\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Modern-Teal-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-52b45631 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"52b45631\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"purple\" data-style=\"classic\" data-name=\"Classic Purplish Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1Q7aaBee_4GCPPp8S67m-bfXgAl5bsOBKYfV73s5q6F8\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1htYzrKfx0QfpgVBdJzUq093NecUCGuK8xX5FDLaZ28g\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=classicV3Purple\" data-industrie=\"business catering cleaning freelance landscaping lawncare mechanic propertymanagement treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d5a43b elementor-widget elementor-widget-image\" data-id=\"2d5a43b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94345\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Purplish-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-26c6a593 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"26c6a593\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"green\" data-style=\"minimalist\" data-name=\"Minimal Lime Green Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1j8tOJe0nqDhyBTZNdDxdfRTUcIFBI-oBF-7abQUti0I\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1OXWGrq_rnOnr721fapPuXOr6FPhtsKyXjHLfYVQHVxU\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=limeMinimal\" data-industrie=\"autorepair construction consulting contractor electrical handyman photography roofing therapy trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3373afc0 elementor-widget elementor-widget-image\" data-id=\"3373afc0\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94485\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Lime-Green-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-13f9aa5d e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"13f9aa5d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"brown\" data-style=\"minimalist\" data-name=\"Minimal Brown Geometric Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/16a2ayJ2rVDXGt15iQb4u_J8MmHOfG-hK-quma57aMiM\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1GgvIOODw30TxIM3t-S8G_AS38wDlq4O_uiVy5YntJbg\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-generator=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/free-estimate-generator\/?theme=geometricBrown\" data-industrie=\"business catering cleaning freelance landscaping painting plumbing propertymanagement treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13068fd7 elementor-widget elementor-widget-image\" data-id=\"13068fd7\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94356\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Minimal-Brown-Geometric-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-63a41955 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"63a41955\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Sky Blue Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1L4wUqJDM4ur8FMsAqP6PzEsh9dRHawU7LAYWeoiakAU\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1r3dOU9lX8ssKbHXXU-Bw1cTyR3TncineXOBcK9vDyfI\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction contractor electrical handyman lawncare mechanic painting roofing trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f4ab274 elementor-widget elementor-widget-image\" data-id=\"1f4ab274\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94362\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Sky-Blue-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-4228e9c e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"4228e9c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"yellow\" data-style=\"classic\" data-name=\"Classic Modern Light Lemon Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1q8SLTxJjcHNpUDXG1ik8r2nRCBa2bnTOyxTNJr68DbA\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1LusF9YDM5myHvqMUeWQN7O6Mf4ODIMFY14h3uWLVGCA\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting freelance photography plumbing propertymanagement therapy treeremoval\">\n\t\t\t\t<div class=\"elementor-element elementor-element-45e565b9 elementor-widget elementor-widget-image\" data-id=\"45e565b9\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94341\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Light-Lemon-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-63e9462c e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"63e9462c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Clean Gradient Blue Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1v_uT5X--J0-AIdQXymPHpz6fsxWs-sNJWzBQeMUK5ww\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1Fk9r3lhVNpACfUtpxhUypx26T-1qn9ElZ2NvAg-qpfs\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical handyman landscaping lawncare painting roofing selfemployedcleaner trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-59a18b2b elementor-widget elementor-widget-image\" data-id=\"59a18b2b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94347\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Blue-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-685cb2dd e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"685cb2dd\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"minimalist\" data-name=\"Blue and Yellow Estimate Template\" data-description=\"This classic invoice template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template.jpg\" data-excel=\"\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template.docx\" data-gdoc=\"\" data-sheet=\"\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting contractor mechanic photography plumbing propertymanagement therapy\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3df6cd10 elementor-widget elementor-widget-image\" data-id=\"3df6cd10\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94335\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Yellow-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-4b1eb66e e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"4b1eb66e\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Azure Dark Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Invoice-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1161bcWLnJlLPSPiNdWx_bWrRYlE14rpRV02dQ08aKaQ\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1wZZbpJTpd9lvHYxbnK73dgjCVkDF-3hIcEo_mn66MsY\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical freelance handyman landscaping painting roofing treeremoval trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-784db806 elementor-widget elementor-widget-image\" data-id=\"784db806\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94333\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Azure-Dark-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-1330bb45 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"1330bb45\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"modern\" data-name=\"Clean Teal &amp; Yellow Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1JkpH06cWTXmXMSXzt-HZdJz3Gfrt3zKqAY9k4GHbpfo\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/10MYM54lvN6Vp-UuQf7vygFI0G2X4jbJcpGIaHwUL-qA\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting contractor lawncare mechanic photography propertymanagement selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a1f9fb5 elementor-widget elementor-widget-image\" data-id=\"3a1f9fb5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94350\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Teal-Yellow-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-39176fb1 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"39176fb1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"purple\" data-style=\"simple\" data-name=\"Floral Purple Estimate Template\" data-description=\"This classic invoice template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1oSFhd9fwAcsIRD3g_Ni43L2u6c8EcA1Oiies6Aad_yw\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1A4qZTdNht1EPs-Icl8h84ia7i1Ohao6mhZOHauB-lUo\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical freelance landscaping lawncare painting plumbing therapy trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55ce9fed elementor-widget elementor-widget-image\" data-id=\"55ce9fed\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94352\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Purple-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-6ab8f3b6 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"6ab8f3b6\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"purple\" data-style=\"modern\" data-name=\"Artistic Purple Invoice Template\" data-description=\"This classic invoice template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1Pj6XNZO9u7gdT63yj4_uze47b5YKshMTg8tFFWs-thw\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1XvlaRkJYZWLrMcQ3oLY-4AT-zGaDW0jCjTWGZoICH4Y\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting contractor handyman mechanic roofing treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f5ac92d elementor-widget elementor-widget-image\" data-id=\"6f5ac92d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94332\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Artistic-Purple-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-24f5e5cf e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"24f5e5cf\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"red\" data-style=\"modern\" data-name=\"Clean Red &amp; Pink Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template-.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1ww9TDeu0Z3apJOjvRqMggYjXEbRg86864pyLxXA7NCc\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1fhwXoZ-9_o7ocwyvy1dpb-gS9omSKKMKzVUwmmEX27A\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical freelance landscaping painting photography plumbing therapy trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25b7147b elementor-widget elementor-widget-image\" data-id=\"25b7147b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94349\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Red-Pink-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-1e662b94 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"1e662b94\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"black\" data-style=\"classic\" data-name=\"Classic Modern Black Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1pxffmsXV_ig5LfFyc__7X2P0gUVR-PFhkPZ7UF3V3KE\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1Ss33pyjhFClco4dQEiDbjsF_wrJ6HCjncpmc1erL5Yw\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting contractor handyman lawncare mechanic treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ae1ad48 elementor-widget elementor-widget-image\" data-id=\"2ae1ad48\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94342\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Classic-Modern-Black-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-42390745 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"42390745\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"green\" data-style=\"simple\" data-name=\"Floral Green Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1rN1gzmgESDaCfcTOpXqmY_rsnd4Y1KTrIYcokE901P4\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1PknCsWAIvtSeKxQ7rWTsdneOP6wrFXJpVDZ7Ybdpvoo\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical freelance handyman lawncare photography plumbing roofing trucking\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e3c5e71 elementor-widget elementor-widget-image\" data-id=\"4e3c5e71\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94351\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Floral-Green-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-36deedcb e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"36deedcb\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"blue\" data-style=\"minimalist\" data-name=\"Blue and Red Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1J-iCVthiMVULmoet_qOgDXwZDZ0r6YUazYgbLtilMrs\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1w81lRrDbD9ZYEA0l6q-DvZAhFV-1wXvl15GNzGT8x5g\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"business catering cleaning consulting contractor landscaping mechanic painting treeremoval selfemployedcleaner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-659107e3 elementor-widget elementor-widget-image\" data-id=\"659107e3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"612\" height=\"792\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94334\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template.jpg 612w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template-232x300.jpg 232w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Blue-and-Red-Estimate-Template-9x12.jpg 9w\" sizes=\"(max-width: 612px) 100vw, 612px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<a class=\"elementor-element elementor-element-5405bb36 e-con-full invoice-template open-dynamic-modal e-flex e-con e-child\" data-id=\"5405bb36\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" data-color=\"purple\" data-style=\"modern\" data-name=\"Clean Gradient Purple Estimate Template\" data-description=\"This classic estimate template allows you to calculate the total price for each item based on its quantity. You can customize the logo and information to your brand.\" data-image=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.jpg\" data-excel=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.xlsx\" data-word=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.docx\" data-gdoc=\"https:\/\/docs.google.com\/document\/u\/1\/d\/1rEj_Cdu1x-bS7zY1lw-eUQq-qvcgg2CIcKgw9SJOlJM\/copy\" data-sheet=\"https:\/\/docs.google.com\/spreadsheets\/u\/1\/d\/1XPAV7X1K5eGelXKKRszHVVBWN49ENUz_as9RZ_wdv-k\/copy\" data-pdf=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.pdf\" data-app=\"https:\/\/invoicefly.com\/appinvoicefly\/\" data-industrie=\"autorepair construction electrical freelance handyman landscaping lawncare plumbing therapy treeremoval\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3baa818 elementor-widget elementor-widget-image\" data-id=\"3baa818\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"842\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.jpg\" class=\"attachment-large size-large wp-image-94348\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template.jpg 595w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template-212x300.jpg 212w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Clean-Gradient-Purple-Estimate-Template-8x12.jpg 8w\" sizes=\"(max-width: 595px) 100vw, 595px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t<div class=\"elementor-element elementor-element-42b9c7c0 e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"42b9c7c0\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71504f5a elementor-widget elementor-widget-image\" data-id=\"71504f5a\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\" target=\"_blank\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"399\" height=\"288\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png\" class=\"attachment-large size-large wp-image-89044\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587.png 399w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/02\/Group-165-2-e1771246574587-300x217.png 300w\" sizes=\"(max-width: 399px) 100vw, 399px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ec744b3 elementor-widget elementor-widget-heading\" data-id=\"6ec744b3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u00bfNeed Premium Templates?<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b71ce09 elementor-align-center elementor-widget__width-initial elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-hidden-mobile elementor-widget elementor-widget-button\" data-id=\"6b71ce09\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Download the App<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3f51b7d0 e-con-full e-flex e-con e-child\" data-id=\"3f51b7d0\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5f5f9580 elementor-widget elementor-widget-text-editor\" data-id=\"5f5f9580\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2>Browse by format<\/h2>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-73e3d37d e-con-full e-flex e-con e-child\" data-id=\"73e3d37d\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5dfaeb56 elementor-align-center elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"5dfaeb56\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/free-invoice-template-pdf\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">PDF<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21bb40d4 elementor-align-center elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"21bb40d4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/invoice-template-microsoft-word\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Word<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3db0775a elementor-align-center elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"3db0775a\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/excel-invoice-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Excel<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5438628e elementor-align-center elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"5438628e\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/google-sheets-invoice-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Google Sheets<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7597fe27 elementor-align-center elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"7597fe27\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/google-docs-invoice-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Google Docs<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5e19fa80 e-con-full e-flex e-con e-child\" data-id=\"5e19fa80\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-41cd3f2e elementor-widget elementor-widget-text-editor\" data-id=\"41cd3f2e\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2>Browse by industry<\/h2>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-63968d86 e-con-full e-flex e-con e-child\" data-id=\"63968d86\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1c9f9c64 elementor-align-center elementor-widget-mobile__width-auto elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"1c9f9c64\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">All Estimate templates<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f6817b7 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"3f6817b7\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/auto-repair-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Auto Repair Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4e14ba7 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"4e14ba7\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/cleaning-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Cleaning Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4896ed8b elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"4896ed8b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/construction-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Construction Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e3b7794 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"3e3b7794\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/contractor-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Contractor Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-29ca349c elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"29ca349c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/electrical-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Electrical Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a78597d elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"6a78597d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/handyman-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Handyman Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a81bcb4 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"7a81bcb4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/landscaping-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Landscaping Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69d93222 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"69d93222\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/painting-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Painting Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fb8c526 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"fb8c526\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/pressure-washing-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Pressure Washing Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7448deeb elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"7448deeb\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/plumbing-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Plumbing Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72f194e0 elementor-align-center elementor-widget-mobile__width-auto elementor-widget elementor-widget-button\" data-id=\"72f194e0\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/roofing-estimate-template\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Roofing Estimate<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c610135 e-con-full e-flex e-con e-child\" data-id=\"c610135\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c63d87 elementor-widget elementor-widget-heading\" data-id=\"5c63d87\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Professional Invoice Templates by Invoice Fly<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51231d7 elementor-widget elementor-widget-text-editor\" data-id=\"51231d7\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A great invoice doesn\u2019t just list numbers,  it reflects your brand and makes it easy for clients to pay.<\/p>\n<p>With Invoice Fly\u2019s free invoice templates, you can customize and download professional invoices in Word, Excel, PDF, Google Docs, or Google Sheets in minutes. Add your logo, edit your details, and create a polished invoice template ready to send to your clients. <\/p>\n<p>Whether you\u2019re a contractor, freelancer, consultant, agency, or growing business, Invoice Fly helps you invoice confidently across industries. \u2028\u2028And when you need more flexibility, the  Invoice Fly app lets you generate invoices on the go, track payments, save client details, and manage your invoicing workflow in one place &#8211; wherever your work takes you.<\/p>\n<p>From editable invoice templates to a full invoice generator, everything is designed to help you bill professionally and get paid faster.\u2028\u2028<\/p>\n<p>Get the Invoice Fly app for free and manage your invoicing from anywhere. \u2028\u2028<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ca4ccf8 e-flex e-con-boxed e-con e-parent\" data-id=\"ca4ccf8\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6606ab4 elementor-widget elementor-widget-html\" data-id=\"6606ab4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const filterButtons = document.querySelectorAll(\"[data-filter]\");\n  const templates = document.querySelectorAll(\".invoice-template\");\n  const searchInput = document.getElementById(\"templateSearch\");\n\n  let activeFilter = \"all\";\n  let searchValue = \"\";\n\n  function normalize(text) {\n    return text.toLowerCase();\n  }\n\n  function filterTemplates() {\n    templates.forEach(template => {\n      const category = template.dataset.category;\n      const name = normalize(template.dataset.name || \"\");\n      const tags = normalize(template.dataset.tags || \"\");\n\n      const matchesCategory =\n        activeFilter === \"all\" || category === activeFilter;\n\n      const matchesSearch =\n        !searchValue ||\n        name.includes(searchValue) ||\n        tags.includes(searchValue);\n\n      if (matchesCategory && matchesSearch) {\n        template.classList.remove(\"template-hidden\");\n      } else {\n        template.classList.add(\"template-hidden\");\n      }\n    });\n  }\n\n  \/\/ Filtro por categor\u00edas\n  filterButtons.forEach(button => {\n    button.addEventListener(\"click\", function () {\n      activeFilter = this.dataset.filter;\n\n      filterButtons.forEach(btn =>\n        btn.classList.remove(\"is-active\")\n      );\n      this.classList.add(\"is-active\");\n\n      filterTemplates();\n    });\n  });\n\n  \/\/ Buscador SPA\n  if (searchInput) {\n    searchInput.addEventListener(\"input\", function () {\n      searchValue = normalize(this.value.trim());\n      filterTemplates();\n    });\n  }\n\n  \/\/ Estado inicial\n  const defaultButton = document.querySelector('[data-filter=\"all\"]');\n  if (defaultButton) {\n    defaultButton.classList.add(\"is-active\");\n  }\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-98a73ff elementor-widget-mobile__width-inherit elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"98a73ff\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"overlay color-overlay\"><\/div>\n<div class=\"bottom-sheet\" id=\"colorsSheet\">\n  <div class=\"handle\"><\/div>\n  <header class=\"sheet-header\">\n    <p>Colors<\/p>\n    <button type=\"button\" class=\"done\">Done<\/button>\n  <\/header>\n  <div class=\"sheet-options\">\n     <label class=\"all-option\"><input type=\"checkbox\" value=\"all\"> All<\/label>\n    <label><input type=\"checkbox\" value=\"black\"> Black<\/label>\n    <label><input type=\"checkbox\" value=\"blue\"> Blue<\/label>\n    <label><input type=\"checkbox\" value=\"brown\"> Brown<\/label>\n    <label><input type=\"checkbox\" value=\"green\"> Green<\/label>\n    <label><input type=\"checkbox\" value=\"grey\"> Grey<\/label>\n    <label><input type=\"checkbox\" value=\"orange\"> Orange<\/label>\n    <label><input type=\"checkbox\" value=\"red\"> Red<\/label>\n    <label><input type=\"checkbox\" value=\"yellow\"> Yellow<\/label>\n  <\/div>\n  <footer class=\"sheet-footer\">\n    <button type=\"button\" class=\"clear\">Clear<\/button>\n    <button type=\"button\" class=\"apply\">Apply<\/button>\n  <\/footer>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-08ee3fb elementor-widget-mobile__width-inherit elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"08ee3fb\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"overlay style-overlay\"><\/div>\n\n<div class=\"bottom-sheet\" id=\"stylesSheet\">\n  <div class=\"handle\"><\/div>\n  \n  <header class=\"sheet-header\">\n    <p>Styles<\/p>\n    <button type=\"button\" class=\"done\">Done<\/button>\n  <\/header>\n\n  <div class=\"sheet-options\">\n     <label class=\"all-option\"><input type=\"checkbox\" value=\"all\"> All<\/label>\n    <label><input type=\"checkbox\" value=\"classic\"> Classic<\/label>\n    <label><input type=\"checkbox\" value=\"minimalist\"> Minimalist<\/label>\n    <label><input type=\"checkbox\" value=\"modern\"> Modern<\/label>\n    <label><input type=\"checkbox\" value=\"simple\"> Simple<\/label>\n  <\/div>\n\n  <footer class=\"sheet-footer\">\n    <button type=\"button\" class=\"clear\">Clear<\/button>\n    <button type=\"button\" class=\"apply\">Apply<\/button>\n  <\/footer>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-65d2117 elementor-widget-mobile__width-inherit elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"65d2117\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"overlay format-overlay\"><\/div>\n<div class=\"bottom-sheet\" id=\"formatsSheet\">\n  <div class=\"handle\"><\/div>\n  \n  <header class=\"sheet-header\">\n    <p>Formats<\/p>\n    <button type=\"button\" class=\"done\">Done<\/button>\n  <\/header>\n  <div class=\"sheet-options\">\n    <label class=\"all-option\"><input type=\"checkbox\" value=\"all\"> All<\/label>\n    <label><input type=\"checkbox\" value=\"excel\"> Excel<\/label>\n    <label><input type=\"checkbox\" value=\"word\"> Word<\/label>\n    <label><input type=\"checkbox\" value=\"pdf\"> PDF<\/label>\n    <label><input type=\"checkbox\" value=\"gdoc\"> Google Docs<\/label>\n    <label><input type=\"checkbox\" value=\"sheet\"> Google Sheets<\/label>\n  <\/div>\n  <footer class=\"sheet-footer\">\n    <button type=\"button\" class=\"clear\">Clear<\/button>\n    <button type=\"button\" class=\"apply\">Apply<\/button>\n  <\/footer>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9c1b128 elementor-widget-mobile__width-inherit elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"9c1b128\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"overlay industry-overlay\"><\/div>\n<div class=\"bottom-sheet\" id=\"industrySheet\">\n  <div class=\"handle\"><\/div>\n  <header class=\"sheet-header\">\n    <p>Industry<\/p>\n    <button type=\"button\" class=\"done\">Done<\/button>\n  <\/header>\n  <div class=\"sheet-options\">\n    <label class=\"all-option\"><input type=\"checkbox\" value=\"all\"> All<\/label>\n    <label><input type=\"checkbox\" value=\"autorepair\"> Auto Repair<\/label>\n    <label><input type=\"checkbox\" value=\"business\"> Business<\/label>\n    <label><input type=\"checkbox\" value=\"catering\"> Catering<\/label>\n    <label><input type=\"checkbox\" value=\"cleaning\"> Cleaning<\/label>\n    <label><input type=\"checkbox\" value=\"construction\"> Construction<\/label>\n    <label><input type=\"checkbox\" value=\"consulting\"> Consulting<\/label>\n    <label><input type=\"checkbox\" value=\"contractor\"> Contractor<\/label>\n    <label><input type=\"checkbox\" value=\"electrical\"> Electrical<\/label>\n    <label><input type=\"checkbox\" value=\"freelance\"> Freelance<\/label>\n    <label><input type=\"checkbox\" value=\"handyman\"> Handyman<\/label>\n    <label><input type=\"checkbox\" value=\"landscaping\"> Landscaping<\/label>\n    <label><input type=\"checkbox\" value=\"lawncare\"> Lawn Care<\/label>\n    <label><input type=\"checkbox\" value=\"mechanic\"> Mechanic<\/label>\n    <label><input type=\"checkbox\" value=\"painting\"> Painting<\/label>\n    <label><input type=\"checkbox\" value=\"photography\"> Photography<\/label>\n    <label><input type=\"checkbox\" value=\"plumbing\"> Plumbing<\/label>\n    <label><input type=\"checkbox\" value=\"propertymanagement\"> Property Management<\/label>\n    <label><input type=\"checkbox\" value=\"roofing\"> Roofing<\/label>\n    <label><input type=\"checkbox\" value=\"selfemployedcleaner\"> Self-Employed Cleaner<\/label>\n    <label><input type=\"checkbox\" value=\"therapy\"> Therapy<\/label>\n    <label><input type=\"checkbox\" value=\"treeremoval\"> Tree Removal<\/label>\n    <label><input type=\"checkbox\" value=\"trucking\"> Trucking<\/label>\n  <\/div>\n  <footer class=\"sheet-footer\">\n    <button type=\"button\" class=\"clear\">Clear<\/button>\n    <button type=\"button\" class=\"apply\">Apply<\/button>\n  <\/footer>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-790bfb8 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-html\" data-id=\"790bfb8\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\nwindow.activeFormats = [];\n\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const templates = document.querySelectorAll(\".invoice-template\");\n  const cookieBanner = document.getElementById(\"cmplz-manage-consent\");\n\n  let activeColors     = [];\n  let activeStyles     = [];\n  let activeIndustries = [];\n\n  const formatDataMap = {\n    excel: \"excel\",\n    word:  \"word\",\n    pdf:   \"pdf\",\n    gdoc:  \"gdoc\",\n    sheet: \"sheet\"\n  };\n\n  const formatLabels = {\n    excel: \"Excel\",\n    word:  \"Word\",\n    pdf:   \"PDF\",\n    gdoc:  \"Google Docs\",\n    sheet: \"Google Sheets\"\n  };\n\n  function normalize(text) {\n    return text ? text.toLowerCase().trim() : \"\";\n  }\n\n  function filterTemplates() {\n    templates.forEach(template => {\n      const colorAttr     = normalize(template.dataset.color || \"\");\n      const styleAttr     = normalize(template.dataset.style || \"\");\n      const industryAttrs = (template.dataset.industrie || \"\")\n                              .toLowerCase().trim().split(\/\\s+\/).filter(Boolean);\n\n      const matchesColor = activeColors.length === 0 || activeColors.includes(\"all\") || activeColors.includes(colorAttr);\n      const matchesStyle = activeStyles.length === 0 || activeStyles.includes(\"all\") || activeStyles.includes(styleAttr);\n\n      let matchesFormat = true;\n      if (activeFormats.length > 0 && !activeFormats.includes(\"all\")) {\n        matchesFormat = activeFormats.some(fmt => {\n          const attr = formatDataMap[fmt];\n          return attr && template.dataset[attr];\n        });\n      }\n\n      const matchesIndustry = activeIndustries.length === 0 || activeIndustries.includes(\"all\") ||\n        activeIndustries.some(ind => industryAttrs.includes(ind));\n\n      if (matchesColor && matchesStyle && matchesFormat && matchesIndustry) {\n        template.classList.remove(\"template-hidden\");\n      } else {\n        template.classList.add(\"template-hidden\");\n      }\n    });\n  }\n\n  \/\/ \u2500\u2500\u2500 Modal: mostrar solo los formatos activos \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n  function buildModalFormats(template) {\n    const container = document.getElementById(\"modal-formats\");\n    if (!container) return;\n    container.innerHTML = \"\";\n\n    const formatsToShow = (activeFormats.length === 0 || activeFormats.includes(\"all\"))\n      ? Object.keys(formatDataMap)\n      : activeFormats;\n\n    formatsToShow.forEach(fmt => {\n      const attr = formatDataMap[fmt];\n      const url  = template.dataset[attr];\n      if (!url) return;\n\n      const a = document.createElement(\"a\");\n      a.href      = url;\n      a.target    = \"_blank\";\n      a.className = \"download-btn\";\n      a.textContent = formatLabels[fmt];\n      container.appendChild(a);\n    });\n  }\n\n  \/\/ \u2500\u2500\u2500 Abrir modal al hacer click en una card \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n  templates.forEach(template => {\n    template.addEventListener(\"click\", function () {\n      document.getElementById(\"modal-image\").src                      = this.dataset.image       || \"\";\n      document.getElementById(\"modal-title\").textContent              = this.dataset.name        || \"\";\n      document.getElementById(\"modal-description\").textContent        = this.dataset.description || \"\";\n\n      const appLink = document.getElementById(\"modal-app\");\n      const genLink = document.getElementById(\"modal-generator\");\n      if (appLink) appLink.href = this.dataset.app       || \"#\";\n      if (genLink) genLink.href = this.dataset.generator || \"#\";\n\n      buildModalFormats(this);\n\n      const modal = document.getElementById(\"dynamic-modal\");\n      if (modal) modal.style.display = \"flex\";\n    });\n  });\n\n  \/\/ Cerrar modal\n  const modalClose    = document.querySelector(\".modal-close\");\n  const modalBackdrop = document.querySelector(\".modal-backdrop\");\n  if (modalClose)    modalClose.onclick    = () => { document.getElementById(\"dynamic-modal\").style.display = \"none\"; };\n  if (modalBackdrop) modalBackdrop.onclick = (e) => { if (e.target === modalBackdrop) document.getElementById(\"dynamic-modal\").style.display = \"none\"; };\n\n  \/\/ \u2500\u2500\u2500 Bottom Sheets gen\u00e9rico \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n  function initBottomFilter(btnClass, sheetId, overlayClass, labelDefault, type) {\n    const btn     = document.querySelector(btnClass);\n    const sheet   = document.getElementById(sheetId);\n    const overlay = document.querySelector(overlayClass);\n\n    if (!btn || !sheet || !overlay) return;\n\n    const checkboxes = sheet.querySelectorAll('input[type=\"checkbox\"]');\n\n    const closeSheet = () => {\n      sheet.classList.remove('open');\n      overlay.classList.remove('open');\n      document.documentElement.classList.remove('sheet-is-open');\n      if (cookieBanner) cookieBanner.style.setProperty('display', 'block', 'important');\n    };\n\n    const applyAction = () => {\n      const selected = Array.from(checkboxes)\n                            .filter(cb => cb.checked)\n                            .map(cb => normalize(cb.value));\n\n      if (type === 'color')    activeColors     = selected;\n      if (type === 'style')    activeStyles     = selected;\n      if (type === 'format')   { activeFormats  = selected; window.activeFormats = selected; }\n      if (type === 'industry') activeIndustries = selected;\n\n      btn.textContent = selected.length ? `${labelDefault} (${selected.length})` : labelDefault;\n      btn.classList.toggle('active', selected.length > 0);\n\n      filterTemplates();\n      closeSheet();\n    };\n\n    btn.onclick = (e) => {\n      e.preventDefault();\n      sheet.classList.add('open');\n      overlay.classList.add('open');\n      document.documentElement.classList.add('sheet-is-open');\n      if (cookieBanner) cookieBanner.style.setProperty('display', 'none', 'important');\n    };\n\n    overlay.onclick = closeSheet;\n\n    const doneBtn  = sheet.querySelector('.done');\n    const applyBtn = sheet.querySelector('.apply');\n    const clearBtn = sheet.querySelector('.clear');\n\n    if (doneBtn)  doneBtn.onclick  = applyAction;\n    if (applyBtn) applyBtn.onclick = applyAction;\n    if (clearBtn) clearBtn.onclick = () => { checkboxes.forEach(cb => cb.checked = false); applyAction(); };\n  }\n\n  \/\/ \u2500\u2500\u2500 Inicializaci\u00f3n \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n  initBottomFilter('.open-colors',   'colorsSheet',   '.color-overlay',    'Color',    'color');\n  initBottomFilter('.open-styles',   'stylesSheet',   '.style-overlay',    'Style',    'style');\n  initBottomFilter('.open-formats',  'formatsSheet',  '.format-overlay',   'Format',   'format');\n  initBottomFilter('.open-industry', 'industrySheet', '.industry-overlay', 'Industry', 'industry');\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f69905 elementor-widget elementor-widget-html\" data-id=\"3f69905\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n\n  \/\/ Seleccionamos todos los triggers de popup\n  document.querySelectorAll('a[href*=\"elementor-action\"]').forEach(function(el) {\n\n    \/\/ Eliminamos capacidad de recibir foco\n    el.setAttribute(\"tabindex\", \"-1\");\n\n    \/\/ Evitamos que el navegador intente restaurar foco\n    el.addEventListener(\"focus\", function(e) {\n      e.preventDefault();\n      this.blur();\n    });\n\n  });\n\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d024ef elementor-widget elementor-widget-html\" data-id=\"4d024ef\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"dynamic-modal\">\n  <div class=\"modal-backdrop\">\n\n    <div class=\"modal-content\">\n\n      <button class=\"modal-close\">\u00d7<\/button>\n\n      <div class=\"modal-grid\">\n\n        <!-- Imagen -->\n        <div class=\"modal-image\">\n          <img decoding=\"async\" id=\"modal-image\" src=\"\" alt=\"\">\n        <\/div>\n\n        <!-- Informaci\u00f3n -->\n        <div class=\"modal-info\">\n\n          <p id=\"modal-title\"><\/p>\n          <p id=\"modal-description\"><\/p>\n\n          <div class=\"modal-downloads\">\n            <span>Download for:<\/span>\n            <div id=\"modal-formats\" class=\"download-buttons\"><\/div>\n          <\/div>\n\n          <div class=\"modal-actions\">\n            <a id=\"modal-app\" class=\"btn primary\" href=\"#\" target=\"_blank\">Download App<\/a>\n            <a id=\"modal-generator\" class=\"btn secondary\" href=\"#\" target=\"_blank\">Invoice Generator ><\/a>\n          <\/div>\n\n        <\/div>\n\n      <\/div>\n    <\/div>\n\n  <\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3eae046 e-flex e-con-boxed e-con e-parent\" data-id=\"3eae046\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7d5ebaf elementor-widget elementor-widget-text-editor\" data-id=\"7d5ebaf\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2><span class=\"gradient-text\">Key components<\/span> of an Estimate template<\/h2>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1b8ba63 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-heading\" data-id=\"1b8ba63\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-text_center\"><h3 class=\"ekit-heading--title elementskit-section-title \">Invoice template sample<\/h3><\/div><\/div>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c69bc45 e-con-full e-flex e-con e-child\" data-id=\"c69bc45\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8a54404 e-con-full e-flex e-con e-child\" data-id=\"8a54404\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-822ef48 e-con-full e-flex e-con e-child\" data-id=\"822ef48\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14f2c1b elementor-widget elementor-widget-heading\" data-id=\"14f2c1b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">1. Estimate number, issue &amp; due date<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ba1abf elementor-widget elementor-widget-text-editor\" data-id=\"8ba1abf\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Each invoice must include a unique identification number, the date it was issued and the due date.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2703836 e-con-full e-flex e-con e-child\" data-id=\"2703836\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cd8e2da elementor-widget elementor-widget-heading\" data-id=\"cd8e2da\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">2. Client's information<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8cee414 elementor-widget elementor-widget-text-editor\" data-id=\"8cee414\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Include the name, address, and contact information of your client.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7562aca e-con-full e-flex e-con e-child\" data-id=\"7562aca\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f11393f elementor-widget elementor-widget-heading\" data-id=\"f11393f\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">3. Your business information<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2962a92 elementor-widget elementor-widget-text-editor\" data-id=\"2962a92\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Your business information, including\u00a0the name, address, contact information<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3d09abf e-con-full e-flex e-con e-child\" data-id=\"3d09abf\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4628cde elementor-widget elementor-widget-image\" data-id=\"4628cde\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"716\" height=\"894\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/07\/How-to-write-an-estimate.png\" class=\"attachment-large size-large wp-image-70574\" alt=\"How to write an estimate? - Key elements of an estimate\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/07\/How-to-write-an-estimate.png 716w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/07\/How-to-write-an-estimate-240x300.png 240w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/07\/How-to-write-an-estimate-710x887.png 710w\" sizes=\"(max-width: 716px) 100vw, 716px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-31e4b5b e-con-full e-flex e-con e-child\" data-id=\"31e4b5b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3266637 e-con-full e-flex e-con e-child\" data-id=\"3266637\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4498958 elementor-widget elementor-widget-heading\" data-id=\"4498958\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">4. Products or services delivered &amp; total price<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ff5230 elementor-widget elementor-widget-text-editor\" data-id=\"8ff5230\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">List of all products or services provided,\u00a0price per unit,\u00a0total price per item, the\u00a0total price\u00a0and any\u00a0taxes\u00a0your client needs to pay.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f78e3d6 e-con-full e-flex e-con e-child\" data-id=\"f78e3d6\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e68f2d elementor-widget elementor-widget-heading\" data-id=\"5e68f2d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">5. Comments<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-271b57e elementor-widget elementor-widget-text-editor\" data-id=\"271b57e\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Add internal comments or notes to your estimate to keep track of important details before sending it to your client.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-543d5d6 e-con-full e-flex e-con e-child\" data-id=\"543d5d6\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eadc137 elementor-widget elementor-widget-heading\" data-id=\"eadc137\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">6. Your signature<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38db8f5 elementor-widget elementor-widget-text-editor\" data-id=\"38db8f5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: left;\">Include your business signature to show your client your commitment and professionalism.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-039ff4c e-con-full e-flex e-con e-parent\" data-id=\"039ff4c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-433b504 elementor-widget elementor-widget-heading\" data-id=\"433b504\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Estimat to Use Your Estimate Template<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-957de25 elementor-widget elementor-widget-text-editor\" data-id=\"957de25\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Follow simple steps to edit, customize, and send your estimate in any format.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-06ccc64 e-flex e-con-boxed e-con e-child\" data-id=\"06ccc64\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-c0d7596 e-con-full e-flex e-con e-child\" data-id=\"c0d7596\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-42f8b91 e-con-full e-flex e-con e-child\" data-id=\"42f8b91\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3506a9a e-con-full e-flex e-con e-child\" data-id=\"3506a9a\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d322efc e-con-full e-flex e-con e-child\" data-id=\"d322efc\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-117e7b6 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"117e7b6\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\"><path d=\"M0 14C0 6.26801 6.26801 0 14 0H30C37.732 0 44 6.26801 44 14V30C44 37.732 37.732 44 30 44H14C6.26801 44 0 37.732 0 30V14Z\" fill=\"#FEF2F2\"><\/path><path d=\"M25 12H16C15.4696 12 14.9609 12.2107 14.5858 12.5858C14.2107 12.9609 14 13.4696 14 14V30C14 30.5304 14.2107 31.0391 14.5858 31.4142C14.9609 31.7893 15.4696 32 16 32H28C28.5304 32 29.0391 31.7893 29.4142 31.4142C29.7893 31.0391 30 30.5304 30 30V17L25 12Z\" stroke=\"#DC2626\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M24 12V16C24 16.5304 24.2107 17.0391 24.5858 17.4142C24.9609 17.7893 25.4696 18 26 18H30\" stroke=\"#DC2626\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-efa69ae elementor-widget elementor-widget-text-editor\" data-id=\"efa69ae\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>PDF Estimate Template<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-196c7f8 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"196c7f8\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M13.3253 7.27273V16H11.7443V8.81108H11.6932L9.65199 10.1151V8.66619L11.821 7.27273H13.3253Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Download your chosen PDF estimate template<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.77557 16V14.858L11.8054 11.8878C12.0952 11.5952 12.3366 11.3352 12.5298 11.108C12.723 10.8807 12.8679 10.6605 12.9645 10.4474C13.0611 10.2344 13.1094 10.0071 13.1094 9.76562C13.1094 9.49006 13.0469 9.25426 12.9219 9.05824C12.7969 8.85938 12.625 8.70597 12.4062 8.59801C12.1875 8.49006 11.9389 8.43608 11.6605 8.43608C11.3736 8.43608 11.1222 8.49574 10.9062 8.61506C10.6903 8.73153 10.5227 8.89773 10.4034 9.11364C10.2869 9.32955 10.2287 9.58665 10.2287 9.88494H8.72443C8.72443 9.33097 8.85085 8.84943 9.10369 8.44034C9.35653 8.03125 9.70455 7.71449 10.1477 7.49006C10.5938 7.26562 11.1051 7.15341 11.6818 7.15341C12.267 7.15341 12.7813 7.26278 13.2244 7.48153C13.6676 7.70028 14.0114 8 14.2557 8.38068C14.5028 8.76136 14.6264 9.19602 14.6264 9.68466C14.6264 10.0114 14.5639 10.3324 14.4389 10.6477C14.3139 10.9631 14.0938 11.3125 13.7784 11.696C13.4659 12.0795 13.027 12.544 12.4616 13.0895L10.9574 14.6193V14.679H14.7585V16H8.77557Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Open in Adobe Acrobat or any PDF editor<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.9077 16.1193C11.294 16.1193 10.7486 16.0142 10.2713 15.804C9.79688 15.5937 9.42188 15.3011 9.14631 14.9261C8.87074 14.5511 8.72443 14.1179 8.70739 13.6264H10.3097C10.3239 13.8622 10.402 14.0682 10.544 14.2443C10.6861 14.4176 10.875 14.5526 11.1108 14.6491C11.3466 14.7457 11.6108 14.794 11.9034 14.794C12.2159 14.794 12.4929 14.7401 12.7344 14.6321C12.9759 14.5213 13.1648 14.3679 13.3011 14.1719C13.4375 13.9759 13.5043 13.75 13.5014 13.4943C13.5043 13.2301 13.4361 12.9972 13.2969 12.7955C13.1577 12.5937 12.956 12.4361 12.6918 12.3224C12.4304 12.2088 12.1151 12.152 11.7457 12.152H10.9744V10.9332H11.7457C12.0497 10.9332 12.3153 10.8807 12.5426 10.7756C12.7727 10.6705 12.9531 10.5227 13.0838 10.3324C13.2145 10.1392 13.2784 9.91619 13.2756 9.66335C13.2784 9.41619 13.223 9.2017 13.1094 9.01989C12.9986 8.83523 12.8409 8.69176 12.6364 8.58949C12.4347 8.48722 12.1974 8.43608 11.9247 8.43608C11.6577 8.43608 11.4105 8.48437 11.1832 8.58097C10.956 8.67756 10.7727 8.81534 10.6335 8.99432C10.4943 9.17045 10.4205 9.38068 10.4119 9.625H8.89062C8.90199 9.13636 9.04261 8.70739 9.3125 8.33807C9.58523 7.96591 9.94886 7.67614 10.4034 7.46875C10.858 7.25852 11.3679 7.15341 11.9332 7.15341C12.5156 7.15341 13.0213 7.26278 13.4503 7.48153C13.8821 7.69744 14.2159 7.98864 14.4517 8.35511C14.6875 8.72159 14.8054 9.12642 14.8054 9.5696C14.8082 10.0611 14.6634 10.473 14.3707 10.8054C14.081 11.1378 13.7003 11.3551 13.2287 11.4574V11.5256C13.8423 11.6108 14.3125 11.8381 14.6392 12.2074C14.9688 12.5739 15.1321 13.0298 15.1293 13.5753C15.1293 14.0639 14.9901 14.5014 14.7116 14.8878C14.4361 15.2713 14.0554 15.5724 13.5696 15.7912C13.0866 16.0099 12.5327 16.1193 11.9077 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Fill in business details and client information<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.6179 14.3807V13.1236L12.321 7.27273H13.3693V9.0625H12.7301L10.2372 13.0128V13.081H15.4062V14.3807H8.6179ZM12.7812 16V13.9972L12.7983 13.4347V7.27273H14.2898V16H12.7812Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Add line items, prices, and calculate totals<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.8097 16.1193C11.2415 16.1193 10.733 16.0128 10.2841 15.7997C9.83523 15.5838 9.47869 15.2884 9.21449 14.9134C8.95313 14.5384 8.81392 14.1094 8.79688 13.6264H10.331C10.3594 13.9844 10.5142 14.277 10.7955 14.5043C11.0767 14.7287 11.4148 14.8409 11.8097 14.8409C12.1193 14.8409 12.3949 14.7699 12.6364 14.6278C12.8778 14.4858 13.0682 14.2884 13.2074 14.0355C13.3466 13.7827 13.4148 13.4943 13.4119 13.1705C13.4148 12.8409 13.3452 12.5483 13.2031 12.2926C13.0611 12.0369 12.8665 11.8366 12.6193 11.6918C12.3722 11.544 12.0881 11.4702 11.767 11.4702C11.5057 11.4673 11.2486 11.5156 10.9957 11.6151C10.7429 11.7145 10.5426 11.8452 10.3949 12.0071L8.96733 11.7727L9.4233 7.27273H14.4858V8.59375H10.7315L10.4801 10.9077H10.5312C10.6932 10.7173 10.9219 10.5597 11.2173 10.4347C11.5128 10.3068 11.8366 10.2429 12.1889 10.2429C12.7173 10.2429 13.1889 10.3679 13.6037 10.6179C14.0185 10.8651 14.3452 11.206 14.5838 11.6406C14.8224 12.0753 14.9418 12.5724 14.9418 13.1321C14.9418 13.7088 14.8082 14.223 14.5412 14.6747C14.277 15.1236 13.9091 15.4773 13.4375 15.7358C12.9688 15.9915 12.4261 16.1193 11.8097 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Save and send directly via email<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-116439d elementor-widget elementor-widget-text-editor\" data-id=\"116439d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/free-invoice-template-pdf\/\">Use Template -&gt;<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-110f1e4 e-con-full e-flex e-con e-child\" data-id=\"110f1e4\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7fbd10f e-con-full e-flex e-con e-child\" data-id=\"7fbd10f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dbe6132 e-con-full e-flex e-con e-child\" data-id=\"dbe6132\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c36e26d e-con-full e-flex e-con e-child\" data-id=\"c36e26d\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a541ae9 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"a541ae9\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\"><path d=\"M0 14C0 6.26801 6.26801 0 14 0H30C37.732 0 44 6.26801 44 14V30C44 37.732 37.732 44 30 44H14C6.26801 44 0 37.732 0 30V14Z\" fill=\"#EFF6FF\"><\/path><path d=\"M25 12H16C15.4696 12 14.9609 12.2107 14.5858 12.5858C14.2107 12.9609 14 13.4696 14 14V30C14 30.5304 14.2107 31.0391 14.5858 31.4142C14.9609 31.7893 15.4696 32 16 32H28C28.5304 32 29.0391 31.7893 29.4142 31.4142C29.7893 31.0391 30 30.5304 30 30V17L25 12Z\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M24 12V16C24 16.5304 24.2107 17.0391 24.5858 17.4142C24.9609 17.7893 25.4696 18 26 18H30\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M20 19H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M26 23H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M26 27H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8847342 elementor-widget elementor-widget-text-editor\" data-id=\"8847342\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Word Estimate Template<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1bcacd6 elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"1bcacd6\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M13.3253 7.27273V16H11.7443V8.81108H11.6932L9.65199 10.1151V8.66619L11.821 7.27273H13.3253Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Download the Word template (.docx)<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.77557 16V14.858L11.8054 11.8878C12.0952 11.5952 12.3366 11.3352 12.5298 11.108C12.723 10.8807 12.8679 10.6605 12.9645 10.4474C13.0611 10.2344 13.1094 10.0071 13.1094 9.76562C13.1094 9.49006 13.0469 9.25426 12.9219 9.05824C12.7969 8.85938 12.625 8.70597 12.4062 8.59801C12.1875 8.49006 11.9389 8.43608 11.6605 8.43608C11.3736 8.43608 11.1222 8.49574 10.9062 8.61506C10.6903 8.73153 10.5227 8.89773 10.4034 9.11364C10.2869 9.32955 10.2287 9.58665 10.2287 9.88494H8.72443C8.72443 9.33097 8.85085 8.84943 9.10369 8.44034C9.35653 8.03125 9.70455 7.71449 10.1477 7.49006C10.5938 7.26562 11.1051 7.15341 11.6818 7.15341C12.267 7.15341 12.7813 7.26278 13.2244 7.48153C13.6676 7.70028 14.0114 8 14.2557 8.38068C14.5028 8.76136 14.6264 9.19602 14.6264 9.68466C14.6264 10.0114 14.5639 10.3324 14.4389 10.6477C14.3139 10.9631 14.0938 11.3125 13.7784 11.696C13.4659 12.0795 13.027 12.544 12.4616 13.0895L10.9574 14.6193V14.679H14.7585V16H8.77557Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Open in Microsoft Word<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.9077 16.1193C11.294 16.1193 10.7486 16.0142 10.2713 15.804C9.79688 15.5937 9.42188 15.3011 9.14631 14.9261C8.87074 14.5511 8.72443 14.1179 8.70739 13.6264H10.3097C10.3239 13.8622 10.402 14.0682 10.544 14.2443C10.6861 14.4176 10.875 14.5526 11.1108 14.6491C11.3466 14.7457 11.6108 14.794 11.9034 14.794C12.2159 14.794 12.4929 14.7401 12.7344 14.6321C12.9759 14.5213 13.1648 14.3679 13.3011 14.1719C13.4375 13.9759 13.5043 13.75 13.5014 13.4943C13.5043 13.2301 13.4361 12.9972 13.2969 12.7955C13.1577 12.5937 12.956 12.4361 12.6918 12.3224C12.4304 12.2088 12.1151 12.152 11.7457 12.152H10.9744V10.9332H11.7457C12.0497 10.9332 12.3153 10.8807 12.5426 10.7756C12.7727 10.6705 12.9531 10.5227 13.0838 10.3324C13.2145 10.1392 13.2784 9.91619 13.2756 9.66335C13.2784 9.41619 13.223 9.2017 13.1094 9.01989C12.9986 8.83523 12.8409 8.69176 12.6364 8.58949C12.4347 8.48722 12.1974 8.43608 11.9247 8.43608C11.6577 8.43608 11.4105 8.48437 11.1832 8.58097C10.956 8.67756 10.7727 8.81534 10.6335 8.99432C10.4943 9.17045 10.4205 9.38068 10.4119 9.625H8.89062C8.90199 9.13636 9.04261 8.70739 9.3125 8.33807C9.58523 7.96591 9.94886 7.67614 10.4034 7.46875C10.858 7.25852 11.3679 7.15341 11.9332 7.15341C12.5156 7.15341 13.0213 7.26278 13.4503 7.48153C13.8821 7.69744 14.2159 7.98864 14.4517 8.35511C14.6875 8.72159 14.8054 9.12642 14.8054 9.5696C14.8082 10.0611 14.6634 10.473 14.3707 10.8054C14.081 11.1378 13.7003 11.3551 13.2287 11.4574V11.5256C13.8423 11.6108 14.3125 11.8381 14.6392 12.2074C14.9688 12.5739 15.1321 13.0298 15.1293 13.5753C15.1293 14.0639 14.9901 14.5014 14.7116 14.8878C14.4361 15.2713 14.0554 15.5724 13.5696 15.7912C13.0866 16.0099 12.5327 16.1193 11.9077 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Replace placeholder text with your business info<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.6179 14.3807V13.1236L12.321 7.27273H13.3693V9.0625H12.7301L10.2372 13.0128V13.081H15.4062V14.3807H8.6179ZM12.7812 16V13.9972L12.7983 13.4347V7.27273H14.2898V16H12.7812Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Customize colors and add your company logo<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.8097 16.1193C11.2415 16.1193 10.733 16.0128 10.2841 15.7997C9.83523 15.5838 9.47869 15.2884 9.21449 14.9134C8.95313 14.5384 8.81392 14.1094 8.79688 13.6264H10.331C10.3594 13.9844 10.5142 14.277 10.7955 14.5043C11.0767 14.7287 11.4148 14.8409 11.8097 14.8409C12.1193 14.8409 12.3949 14.7699 12.6364 14.6278C12.8778 14.4858 13.0682 14.2884 13.2074 14.0355C13.3466 13.7827 13.4148 13.4943 13.4119 13.1705C13.4148 12.8409 13.3452 12.5483 13.2031 12.2926C13.0611 12.0369 12.8665 11.8366 12.6193 11.6918C12.3722 11.544 12.0881 11.4702 11.767 11.4702C11.5057 11.4673 11.2486 11.5156 10.9957 11.6151C10.7429 11.7145 10.5426 11.8452 10.3949 12.0071L8.96733 11.7727L9.4233 7.27273H14.4858V8.59375H10.7315L10.4801 10.9077H10.5312C10.6932 10.7173 10.9219 10.5597 11.2173 10.4347C11.5128 10.3068 11.8366 10.2429 12.1889 10.2429C12.7173 10.2429 13.1889 10.3679 13.6037 10.6179C14.0185 10.8651 14.3452 11.206 14.5838 11.6406C14.8224 12.0753 14.9418 12.5724 14.9418 13.1321C14.9418 13.7088 14.8082 14.223 14.5412 14.6747C14.277 15.1236 13.9091 15.4773 13.4375 15.7358C12.9688 15.9915 12.4261 16.1193 11.8097 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Export as PDF or send the Word file directly<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e424d4 elementor-widget elementor-widget-text-editor\" data-id=\"6e424d4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/invoice-template-microsoft-word\/\">Use Template -&gt;<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5a0b19f e-con-full e-flex e-con e-child\" data-id=\"5a0b19f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7e61fb2 e-con-full e-flex e-con e-child\" data-id=\"7e61fb2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3398c01 e-con-full e-flex e-con e-child\" data-id=\"3398c01\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9ab6a0c e-con-full e-flex e-con e-child\" data-id=\"9ab6a0c\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d7f0c7a elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"d7f0c7a\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\"><path d=\"M0 14C0 6.26801 6.26801 0 14 0H30C37.732 0 44 6.26801 44 14V30C44 37.732 37.732 44 30 44H14C6.26801 44 0 37.732 0 30V14Z\" fill=\"#F0FDF4\"><\/path><path d=\"M29 13H15C13.8954 13 13 13.8954 13 15V29C13 30.1046 13.8954 31 15 31H29C30.1046 31 31 30.1046 31 29V15C31 13.8954 30.1046 13 29 13Z\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M13 19H31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M13 25H31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M19 19V31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M25 19V31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d50f9d elementor-widget elementor-widget-text-editor\" data-id=\"4d50f9d\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Excel Estimate Template<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-09b8faa elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"09b8faa\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M13.3253 7.27273V16H11.7443V8.81108H11.6932L9.65199 10.1151V8.66619L11.821 7.27273H13.3253Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Download the Excel template (.xlsx)<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.77557 16V14.858L11.8054 11.8878C12.0952 11.5952 12.3366 11.3352 12.5298 11.108C12.723 10.8807 12.8679 10.6605 12.9645 10.4474C13.0611 10.2344 13.1094 10.0071 13.1094 9.76562C13.1094 9.49006 13.0469 9.25426 12.9219 9.05824C12.7969 8.85938 12.625 8.70597 12.4062 8.59801C12.1875 8.49006 11.9389 8.43608 11.6605 8.43608C11.3736 8.43608 11.1222 8.49574 10.9062 8.61506C10.6903 8.73153 10.5227 8.89773 10.4034 9.11364C10.2869 9.32955 10.2287 9.58665 10.2287 9.88494H8.72443C8.72443 9.33097 8.85085 8.84943 9.10369 8.44034C9.35653 8.03125 9.70455 7.71449 10.1477 7.49006C10.5938 7.26562 11.1051 7.15341 11.6818 7.15341C12.267 7.15341 12.7813 7.26278 13.2244 7.48153C13.6676 7.70028 14.0114 8 14.2557 8.38068C14.5028 8.76136 14.6264 9.19602 14.6264 9.68466C14.6264 10.0114 14.5639 10.3324 14.4389 10.6477C14.3139 10.9631 14.0938 11.3125 13.7784 11.696C13.4659 12.0795 13.027 12.544 12.4616 13.0895L10.9574 14.6193V14.679H14.7585V16H8.77557Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Open in Microsoft Excel or compatible software<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.9077 16.1193C11.294 16.1193 10.7486 16.0142 10.2713 15.804C9.79688 15.5937 9.42188 15.3011 9.14631 14.9261C8.87074 14.5511 8.72443 14.1179 8.70739 13.6264H10.3097C10.3239 13.8622 10.402 14.0682 10.544 14.2443C10.6861 14.4176 10.875 14.5526 11.1108 14.6491C11.3466 14.7457 11.6108 14.794 11.9034 14.794C12.2159 14.794 12.4929 14.7401 12.7344 14.6321C12.9759 14.5213 13.1648 14.3679 13.3011 14.1719C13.4375 13.9759 13.5043 13.75 13.5014 13.4943C13.5043 13.2301 13.4361 12.9972 13.2969 12.7955C13.1577 12.5937 12.956 12.4361 12.6918 12.3224C12.4304 12.2088 12.1151 12.152 11.7457 12.152H10.9744V10.9332H11.7457C12.0497 10.9332 12.3153 10.8807 12.5426 10.7756C12.7727 10.6705 12.9531 10.5227 13.0838 10.3324C13.2145 10.1392 13.2784 9.91619 13.2756 9.66335C13.2784 9.41619 13.223 9.2017 13.1094 9.01989C12.9986 8.83523 12.8409 8.69176 12.6364 8.58949C12.4347 8.48722 12.1974 8.43608 11.9247 8.43608C11.6577 8.43608 11.4105 8.48437 11.1832 8.58097C10.956 8.67756 10.7727 8.81534 10.6335 8.99432C10.4943 9.17045 10.4205 9.38068 10.4119 9.625H8.89062C8.90199 9.13636 9.04261 8.70739 9.3125 8.33807C9.58523 7.96591 9.94886 7.67614 10.4034 7.46875C10.858 7.25852 11.3679 7.15341 11.9332 7.15341C12.5156 7.15341 13.0213 7.26278 13.4503 7.48153C13.8821 7.69744 14.2159 7.98864 14.4517 8.35511C14.6875 8.72159 14.8054 9.12642 14.8054 9.5696C14.8082 10.0611 14.6634 10.473 14.3707 10.8054C14.081 11.1378 13.7003 11.3551 13.2287 11.4574V11.5256C13.8423 11.6108 14.3125 11.8381 14.6392 12.2074C14.9688 12.5739 15.1321 13.0298 15.1293 13.5753C15.1293 14.0639 14.9901 14.5014 14.7116 14.8878C14.4361 15.2713 14.0554 15.5724 13.5696 15.7912C13.0866 16.0099 12.5327 16.1193 11.9077 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Enter business and client details<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.6179 14.3807V13.1236L12.321 7.27273H13.3693V9.0625H12.7301L10.2372 13.0128V13.081H15.4062V14.3807H8.6179ZM12.7812 16V13.9972L12.7983 13.4347V7.27273H14.2898V16H12.7812Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Add your items, prices, and update totals as needed<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.8097 16.1193C11.2415 16.1193 10.733 16.0128 10.2841 15.7997C9.83523 15.5838 9.47869 15.2884 9.21449 14.9134C8.95313 14.5384 8.81392 14.1094 8.79688 13.6264H10.331C10.3594 13.9844 10.5142 14.277 10.7955 14.5043C11.0767 14.7287 11.4148 14.8409 11.8097 14.8409C12.1193 14.8409 12.3949 14.7699 12.6364 14.6278C12.8778 14.4858 13.0682 14.2884 13.2074 14.0355C13.3466 13.7827 13.4148 13.4943 13.4119 13.1705C13.4148 12.8409 13.3452 12.5483 13.2031 12.2926C13.0611 12.0369 12.8665 11.8366 12.6193 11.6918C12.3722 11.544 12.0881 11.4702 11.767 11.4702C11.5057 11.4673 11.2486 11.5156 10.9957 11.6151C10.7429 11.7145 10.5426 11.8452 10.3949 12.0071L8.96733 11.7727L9.4233 7.27273H14.4858V8.59375H10.7315L10.4801 10.9077H10.5312C10.6932 10.7173 10.9219 10.5597 11.2173 10.4347C11.5128 10.3068 11.8366 10.2429 12.1889 10.2429C12.7173 10.2429 13.1889 10.3679 13.6037 10.6179C14.0185 10.8651 14.3452 11.206 14.5838 11.6406C14.8224 12.0753 14.9418 12.5724 14.9418 13.1321C14.9418 13.7088 14.8082 14.223 14.5412 14.6747C14.277 15.1236 13.9091 15.4773 13.4375 15.7358C12.9688 15.9915 12.4261 16.1193 11.8097 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Save as Excel or export to PDF<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba6865f elementor-widget elementor-widget-text-editor\" data-id=\"ba6865f\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/excel-invoice-template\/\">Use Template -&gt;<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0aa894a e-flex e-con-boxed e-con e-child\" data-id=\"0aa894a\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-9604b58 e-con-full e-flex e-con e-child\" data-id=\"9604b58\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-bc4da76 e-con-full e-flex e-con e-child\" data-id=\"bc4da76\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9700201 e-con-full e-flex e-con e-child\" data-id=\"9700201\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8a26340 e-con-full e-flex e-con e-child\" data-id=\"8a26340\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-56c40b3 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"56c40b3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\"><path d=\"M0 14C0 6.26801 6.26801 0 14 0H30C37.732 0 44 6.26801 44 14V30C44 37.732 37.732 44 30 44H14C6.26801 44 0 37.732 0 30V14Z\" fill=\"#EFF6FF\"><\/path><path d=\"M25 12H16C15.4696 12 14.9609 12.2107 14.5858 12.5858C14.2107 12.9609 14 13.4696 14 14V30C14 30.5304 14.2107 31.0391 14.5858 31.4142C14.9609 31.7893 15.4696 32 16 32H28C28.5304 32 29.0391 31.7893 29.4142 31.4142C29.7893 31.0391 30 30.5304 30 30V17L25 12Z\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M24 12V16C24 16.5304 24.2107 17.0391 24.5858 17.4142C24.9609 17.7893 25.4696 18 26 18H30\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M20 19H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M26 23H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M26 27H18\" stroke=\"#4F7DF3\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2af64c3 elementor-widget elementor-widget-text-editor\" data-id=\"2af64c3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Google Docs Estimate Template<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bab9f7b elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"bab9f7b\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M13.3253 7.27273V16H11.7443V8.81108H11.6932L9.65199 10.1151V8.66619L11.821 7.27273H13.3253Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Open the template link in Google Docs<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.77557 16V14.858L11.8054 11.8878C12.0952 11.5952 12.3366 11.3352 12.5298 11.108C12.723 10.8807 12.8679 10.6605 12.9645 10.4474C13.0611 10.2344 13.1094 10.0071 13.1094 9.76562C13.1094 9.49006 13.0469 9.25426 12.9219 9.05824C12.7969 8.85938 12.625 8.70597 12.4062 8.59801C12.1875 8.49006 11.9389 8.43608 11.6605 8.43608C11.3736 8.43608 11.1222 8.49574 10.9062 8.61506C10.6903 8.73153 10.5227 8.89773 10.4034 9.11364C10.2869 9.32955 10.2287 9.58665 10.2287 9.88494H8.72443C8.72443 9.33097 8.85085 8.84943 9.10369 8.44034C9.35653 8.03125 9.70455 7.71449 10.1477 7.49006C10.5938 7.26562 11.1051 7.15341 11.6818 7.15341C12.267 7.15341 12.7813 7.26278 13.2244 7.48153C13.6676 7.70028 14.0114 8 14.2557 8.38068C14.5028 8.76136 14.6264 9.19602 14.6264 9.68466C14.6264 10.0114 14.5639 10.3324 14.4389 10.6477C14.3139 10.9631 14.0938 11.3125 13.7784 11.696C13.4659 12.0795 13.027 12.544 12.4616 13.0895L10.9574 14.6193V14.679H14.7585V16H8.77557Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Make a copy to your Google Drive<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.9077 16.1193C11.294 16.1193 10.7486 16.0142 10.2713 15.804C9.79688 15.5937 9.42188 15.3011 9.14631 14.9261C8.87074 14.5511 8.72443 14.1179 8.70739 13.6264H10.3097C10.3239 13.8622 10.402 14.0682 10.544 14.2443C10.6861 14.4176 10.875 14.5526 11.1108 14.6491C11.3466 14.7457 11.6108 14.794 11.9034 14.794C12.2159 14.794 12.4929 14.7401 12.7344 14.6321C12.9759 14.5213 13.1648 14.3679 13.3011 14.1719C13.4375 13.9759 13.5043 13.75 13.5014 13.4943C13.5043 13.2301 13.4361 12.9972 13.2969 12.7955C13.1577 12.5937 12.956 12.4361 12.6918 12.3224C12.4304 12.2088 12.1151 12.152 11.7457 12.152H10.9744V10.9332H11.7457C12.0497 10.9332 12.3153 10.8807 12.5426 10.7756C12.7727 10.6705 12.9531 10.5227 13.0838 10.3324C13.2145 10.1392 13.2784 9.91619 13.2756 9.66335C13.2784 9.41619 13.223 9.2017 13.1094 9.01989C12.9986 8.83523 12.8409 8.69176 12.6364 8.58949C12.4347 8.48722 12.1974 8.43608 11.9247 8.43608C11.6577 8.43608 11.4105 8.48437 11.1832 8.58097C10.956 8.67756 10.7727 8.81534 10.6335 8.99432C10.4943 9.17045 10.4205 9.38068 10.4119 9.625H8.89062C8.90199 9.13636 9.04261 8.70739 9.3125 8.33807C9.58523 7.96591 9.94886 7.67614 10.4034 7.46875C10.858 7.25852 11.3679 7.15341 11.9332 7.15341C12.5156 7.15341 13.0213 7.26278 13.4503 7.48153C13.8821 7.69744 14.2159 7.98864 14.4517 8.35511C14.6875 8.72159 14.8054 9.12642 14.8054 9.5696C14.8082 10.0611 14.6634 10.473 14.3707 10.8054C14.081 11.1378 13.7003 11.3551 13.2287 11.4574V11.5256C13.8423 11.6108 14.3125 11.8381 14.6392 12.2074C14.9688 12.5739 15.1321 13.0298 15.1293 13.5753C15.1293 14.0639 14.9901 14.5014 14.7116 14.8878C14.4361 15.2713 14.0554 15.5724 13.5696 15.7912C13.0866 16.0099 12.5327 16.1193 11.9077 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Edit text fields with your information<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.6179 14.3807V13.1236L12.321 7.27273H13.3693V9.0625H12.7301L10.2372 13.0128V13.081H15.4062V14.3807H8.6179ZM12.7812 16V13.9972L12.7983 13.4347V7.27273H14.2898V16H12.7812Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Customize formatting and add your logo<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.8097 16.1193C11.2415 16.1193 10.733 16.0128 10.2841 15.7997C9.83523 15.5838 9.47869 15.2884 9.21449 14.9134C8.95313 14.5384 8.81392 14.1094 8.79688 13.6264H10.331C10.3594 13.9844 10.5142 14.277 10.7955 14.5043C11.0767 14.7287 11.4148 14.8409 11.8097 14.8409C12.1193 14.8409 12.3949 14.7699 12.6364 14.6278C12.8778 14.4858 13.0682 14.2884 13.2074 14.0355C13.3466 13.7827 13.4148 13.4943 13.4119 13.1705C13.4148 12.8409 13.3452 12.5483 13.2031 12.2926C13.0611 12.0369 12.8665 11.8366 12.6193 11.6918C12.3722 11.544 12.0881 11.4702 11.767 11.4702C11.5057 11.4673 11.2486 11.5156 10.9957 11.6151C10.7429 11.7145 10.5426 11.8452 10.3949 12.0071L8.96733 11.7727L9.4233 7.27273H14.4858V8.59375H10.7315L10.4801 10.9077H10.5312C10.6932 10.7173 10.9219 10.5597 11.2173 10.4347C11.5128 10.3068 11.8366 10.2429 12.1889 10.2429C12.7173 10.2429 13.1889 10.3679 13.6037 10.6179C14.0185 10.8651 14.3452 11.206 14.5838 11.6406C14.8224 12.0753 14.9418 12.5724 14.9418 13.1321C14.9418 13.7088 14.8082 14.223 14.5412 14.6747C14.277 15.1236 13.9091 15.4773 13.4375 15.7358C12.9688 15.9915 12.4261 16.1193 11.8097 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Download as PDF or share link with client<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fa5da85 elementor-widget elementor-widget-text-editor\" data-id=\"fa5da85\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/google-docs-invoice-template\/\">Use Template -&gt;<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-52f7e5a e-con-full e-flex e-con e-child\" data-id=\"52f7e5a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-aac1e4a e-con-full e-flex e-con e-child\" data-id=\"aac1e4a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ddbedb1 e-con-full e-flex e-con e-child\" data-id=\"ddbedb1\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dbd4fca e-con-full e-flex e-con e-child\" data-id=\"dbd4fca\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a76c22a elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"a76c22a\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\"><path d=\"M0 14C0 6.26801 6.26801 0 14 0H30C37.732 0 44 6.26801 44 14V30C44 37.732 37.732 44 30 44H14C6.26801 44 0 37.732 0 30V14Z\" fill=\"#F0FDF4\"><\/path><path d=\"M29 13H15C13.8954 13 13 13.8954 13 15V29C13 30.1046 13.8954 31 15 31H29C30.1046 31 31 30.1046 31 29V15C31 13.8954 30.1046 13 29 13Z\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M13 19H31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M13 25H31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M19 19V31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><path d=\"M25 19V31\" stroke=\"#059669\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c6b7ee0 elementor-widget elementor-widget-text-editor\" data-id=\"c6b7ee0\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Google Sheets Estimate Template<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e084ef elementor-align-left elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"9e084ef\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M13.3253 7.27273V16H11.7443V8.81108H11.6932L9.65199 10.1151V8.66619L11.821 7.27273H13.3253Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Open the template in Google Sheets<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.77557 16V14.858L11.8054 11.8878C12.0952 11.5952 12.3366 11.3352 12.5298 11.108C12.723 10.8807 12.8679 10.6605 12.9645 10.4474C13.0611 10.2344 13.1094 10.0071 13.1094 9.76562C13.1094 9.49006 13.0469 9.25426 12.9219 9.05824C12.7969 8.85938 12.625 8.70597 12.4062 8.59801C12.1875 8.49006 11.9389 8.43608 11.6605 8.43608C11.3736 8.43608 11.1222 8.49574 10.9062 8.61506C10.6903 8.73153 10.5227 8.89773 10.4034 9.11364C10.2869 9.32955 10.2287 9.58665 10.2287 9.88494H8.72443C8.72443 9.33097 8.85085 8.84943 9.10369 8.44034C9.35653 8.03125 9.70455 7.71449 10.1477 7.49006C10.5938 7.26562 11.1051 7.15341 11.6818 7.15341C12.267 7.15341 12.7813 7.26278 13.2244 7.48153C13.6676 7.70028 14.0114 8 14.2557 8.38068C14.5028 8.76136 14.6264 9.19602 14.6264 9.68466C14.6264 10.0114 14.5639 10.3324 14.4389 10.6477C14.3139 10.9631 14.0938 11.3125 13.7784 11.696C13.4659 12.0795 13.027 12.544 12.4616 13.0895L10.9574 14.6193V14.679H14.7585V16H8.77557Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Create a copy in your Google Drive account<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.9077 16.1193C11.294 16.1193 10.7486 16.0142 10.2713 15.804C9.79688 15.5937 9.42188 15.3011 9.14631 14.9261C8.87074 14.5511 8.72443 14.1179 8.70739 13.6264H10.3097C10.3239 13.8622 10.402 14.0682 10.544 14.2443C10.6861 14.4176 10.875 14.5526 11.1108 14.6491C11.3466 14.7457 11.6108 14.794 11.9034 14.794C12.2159 14.794 12.4929 14.7401 12.7344 14.6321C12.9759 14.5213 13.1648 14.3679 13.3011 14.1719C13.4375 13.9759 13.5043 13.75 13.5014 13.4943C13.5043 13.2301 13.4361 12.9972 13.2969 12.7955C13.1577 12.5937 12.956 12.4361 12.6918 12.3224C12.4304 12.2088 12.1151 12.152 11.7457 12.152H10.9744V10.9332H11.7457C12.0497 10.9332 12.3153 10.8807 12.5426 10.7756C12.7727 10.6705 12.9531 10.5227 13.0838 10.3324C13.2145 10.1392 13.2784 9.91619 13.2756 9.66335C13.2784 9.41619 13.223 9.2017 13.1094 9.01989C12.9986 8.83523 12.8409 8.69176 12.6364 8.58949C12.4347 8.48722 12.1974 8.43608 11.9247 8.43608C11.6577 8.43608 11.4105 8.48437 11.1832 8.58097C10.956 8.67756 10.7727 8.81534 10.6335 8.99432C10.4943 9.17045 10.4205 9.38068 10.4119 9.625H8.89062C8.90199 9.13636 9.04261 8.70739 9.3125 8.33807C9.58523 7.96591 9.94886 7.67614 10.4034 7.46875C10.858 7.25852 11.3679 7.15341 11.9332 7.15341C12.5156 7.15341 13.0213 7.26278 13.4503 7.48153C13.8821 7.69744 14.2159 7.98864 14.4517 8.35511C14.6875 8.72159 14.8054 9.12642 14.8054 9.5696C14.8082 10.0611 14.6634 10.473 14.3707 10.8054C14.081 11.1378 13.7003 11.3551 13.2287 11.4574V11.5256C13.8423 11.6108 14.3125 11.8381 14.6392 12.2074C14.9688 12.5739 15.1321 13.0298 15.1293 13.5753C15.1293 14.0639 14.9901 14.5014 14.7116 14.8878C14.4361 15.2713 14.0554 15.5724 13.5696 15.7912C13.0866 16.0099 12.5327 16.1193 11.9077 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Fill in business details and estimate items<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M8.6179 14.3807V13.1236L12.321 7.27273H13.3693V9.0625H12.7301L10.2372 13.0128V13.081H15.4062V14.3807H8.6179ZM12.7812 16V13.9972L12.7983 13.4347V7.27273H14.2898V16H12.7812Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Review totals and update calculations as needed<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#F3F4F6\"><\/path><path d=\"M11.8097 16.1193C11.2415 16.1193 10.733 16.0128 10.2841 15.7997C9.83523 15.5838 9.47869 15.2884 9.21449 14.9134C8.95313 14.5384 8.81392 14.1094 8.79688 13.6264H10.331C10.3594 13.9844 10.5142 14.277 10.7955 14.5043C11.0767 14.7287 11.4148 14.8409 11.8097 14.8409C12.1193 14.8409 12.3949 14.7699 12.6364 14.6278C12.8778 14.4858 13.0682 14.2884 13.2074 14.0355C13.3466 13.7827 13.4148 13.4943 13.4119 13.1705C13.4148 12.8409 13.3452 12.5483 13.2031 12.2926C13.0611 12.0369 12.8665 11.8366 12.6193 11.6918C12.3722 11.544 12.0881 11.4702 11.767 11.4702C11.5057 11.4673 11.2486 11.5156 10.9957 11.6151C10.7429 11.7145 10.5426 11.8452 10.3949 12.0071L8.96733 11.7727L9.4233 7.27273H14.4858V8.59375H10.7315L10.4801 10.9077H10.5312C10.6932 10.7173 10.9219 10.5597 11.2173 10.4347C11.5128 10.3068 11.8366 10.2429 12.1889 10.2429C12.7173 10.2429 13.1889 10.3679 13.6037 10.6179C14.0185 10.8651 14.3452 11.206 14.5838 11.6406C14.8224 12.0753 14.9418 12.5724 14.9418 13.1321C14.9418 13.7088 14.8082 14.223 14.5412 14.6747C14.277 15.1236 13.9091 15.4773 13.4375 15.7358C12.9688 15.9915 12.4261 16.1193 11.8097 16.1193Z\" fill=\"#6B7280\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Download as PDF or Excel, or share online<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cad9d21 elementor-widget elementor-widget-text-editor\" data-id=\"cad9d21\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/free-invoice-templates\/google-sheets-invoice-template\/\">Use Template -&gt;<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-98d4615 e-con-full e-flex e-con e-parent\" data-id=\"98d4615\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f57280e e-con-full e-flex e-con e-child\" data-id=\"f57280e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-af9fc76 elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"af9fc76\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Create, Send &amp; Get Paid - \u2028All in One Place<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f7fbfb elementor-widget__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"7f7fbfb\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Skip manual editing. Use the Invoice Fly app to create invoices, send them instantly, and track payments &#8211; all from your phone.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee321dc elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"ee321dc\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#DCFCE7\"><\/path><path d=\"M17.3346 8L10.0013 15.3333L6.66797 12\" stroke=\"#00A63E\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Create invoices in seconds<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#DCFCE7\"><\/path><path d=\"M17.3346 8L10.0013 15.3333L6.66797 12\" stroke=\"#00A63E\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Send invoices via email or shareable link<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#DCFCE7\"><\/path><path d=\"M17.3346 8L10.0013 15.3333L6.66797 12\" stroke=\"#00A63E\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Track paid and unpaid invoices in real time<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z\" fill=\"#DCFCE7\"><\/path><path d=\"M17.3346 8L10.0013 15.3333L6.66797 12\" stroke=\"#00A63E\" stroke-width=\"1.33333\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Manage clients and payment history in one place<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7dd975 elementor-widget-mobile__width-inherit elementor-widget__width-auto elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"a7dd975\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6Ijg4MzE5IiwidG9nZ2xlIjpmYWxzZX0%3D\" target=\"_blank\" class=\"ekit_creative_button ekit_slide_icon_2 button-get-started-big\" id=\"\" data-text=\"\">\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">Download Invoice Fly App <\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_after icon icon-right-arrow1\"><\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-da21321 elementor-widget-mobile__width-inherit elementor-widget__width-auto elementor-hidden-desktop elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"da21321\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/appinvoicefly\/\" target=\"_blank\" class=\"ekit_creative_button ekit_slide_icon_2 button-get-started-big\" id=\"\" data-text=\"\">\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">Download Invoice Fly App <\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_after icon icon-right-arrow1\"><\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9d1fc2b e-con-full e-flex e-con e-child\" data-id=\"9d1fc2b\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a4bbbfb elementor-widget elementor-widget-image\" data-id=\"a4bbbfb\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"504\" height=\"663\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Group-462.png\" class=\"attachment-large size-large wp-image-94285\" alt=\"\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Group-462.png 504w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Group-462-228x300.png 228w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/Group-462-9x12.png 9w\" sizes=\"(max-width: 504px) 100vw, 504px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b73ce60 e-flex e-con-boxed e-con e-parent\" data-id=\"b73ce60\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e2eac45 elementor-widget elementor-widget-text-editor\" data-id=\"e2eac45\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2><span class=\"gradient-text\">FAQs<\/span> about Estimate templates<\/h2>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-65ff246 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"65ff246\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69f3519135633\">\n\n            \n                <div class=\"elementskit-card active\">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-65ff246\">\n                        <a href=\"#collapse-8065b3c69f3519135633\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-8065b3c69f3519135633\" aria-expanded=\"true\" aria-controls=\"Collapse-8065b3c69f3519135633\">\n                            \n                            <span class=\"ekit-accordion-title\">1.  What is job estimation?<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-up-arrow\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-8065b3c69f3519135633\" class=\" show collapse\" aria-labelledby=\"primaryHeading-0-65ff246\" data-parent=\"#accordion-69f3519135633\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>A job estimation is\u00a0a <strong>file that outlines the scope and projected costs of an assignment.<\/strong><\/p><p>Its intended audience is the client who requested the service. A representative of a small business is responsible for creating the document and discussing it with the client.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                \n                <div class=\"elementskit-card active\">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-1-65ff246\">\n                        <a href=\"#collapse-f81816a69f3519135633\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-f81816a69f3519135633\" aria-expanded=\"true\" aria-controls=\"Collapse-f81816a69f3519135633\">\n                            \n                            <span class=\"ekit-accordion-title\">2. What is the purpose of estimation?<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-up-arrow\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-f81816a69f3519135633\" class=\" show collapse\" aria-labelledby=\"primaryHeading-1-65ff246\" data-parent=\"#accordion-69f3519135633\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Estimation serves as a foundational tool for businesses and contractors to communicate the expected scope, timeline, and cost of a job before any work begins. It helps set clear expectations with clients, allowing them to make informed decisions, compare service providers, and plan budgets accordingly.<\/p><p>A well-crafted estimate demonstrates professionalism and transparency \u2014 both essential for building trust and winning new work.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                \n                <div class=\"elementskit-card active\">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-2-65ff246\">\n                        <a href=\"#collapse-7276b1569f3519135633\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-7276b1569f3519135633\" aria-expanded=\"true\" aria-controls=\"Collapse-7276b1569f3519135633\">\n                            \n                            <span class=\"ekit-accordion-title\">3. What are the 4 types of estimation?<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-up-arrow\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-7276b1569f3519135633\" class=\" show collapse\" aria-labelledby=\"primaryHeading-2-65ff246\" data-parent=\"#accordion-69f3519135633\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <ol><li><strong>Preliminary Estimate:<\/strong> A rough, early-stage estimate typically created before detailed project information is available. It helps stakeholders decide whether to pursue the project further and allocate an initial budget.<\/li><li><strong>Detailed Estimate:<\/strong> A comprehensive estimate that breaks down all aspects of a job \u2014 materials, labor, time, permits, and overhead. It's used when the full scope is known and is often the version presented to clients or decision-makers.<\/li><li><strong>Quantity Estimate (Quantity Takeoff):<\/strong> Focuses on the specific quantities of materials and labor required for a job. Common in construction, it helps calculate direct costs based on itemized components.<\/li><li><strong>Analogous Estimate (Top-Down):<\/strong> Based on historical data from similar past projects. It uses expert judgment and comparative analysis rather than precise data, making it useful when speed is more important than accuracy.<\/li><\/ol>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                \n                <div class=\"elementskit-card active\">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-3-65ff246\">\n                        <a href=\"#collapse-775155f69f3519135633\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-775155f69f3519135633\" aria-expanded=\"true\" aria-controls=\"Collapse-775155f69f3519135633\">\n                            \n                            <span class=\"ekit-accordion-title\">4. What is an estimating software?<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-up-arrow\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-775155f69f3519135633\" class=\" show collapse\" aria-labelledby=\"primaryHeading-3-65ff246\" data-parent=\"#accordion-69f3519135633\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>An estimating software is an <strong>online tool<\/strong> or <strong>mobile app<\/strong> that <strong>helps businesses, contractors, and freelancers create accurate job estimates or quotes<\/strong> quickly and efficiently.<\/p><p>Instead of building an estimate manually, estimating software automates the process\u2014calculating costs, adding markups, including taxes, and organizing itemized details in a professional, printable format.<\/p><p>Some common features are:<\/p><ul><li><strong>Templates:<\/strong> for different job types (construction, repairs, cleaning).<\/li><li><strong>Item libraries:<\/strong> for labor, materials, and service costs.<\/li><li><strong>Tax and markup<\/strong> calculators.<\/li><li><strong>Customization:<\/strong> with logos, business info, and client details.<\/li><li><strong>Conversion to invoice:<\/strong> once the estimate is approved.<\/li><\/ul>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                \n                <div class=\"elementskit-card active\">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-4-65ff246\">\n                        <a href=\"#collapse-a271cb269f3519135633\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a271cb269f3519135633\" aria-expanded=\"true\" aria-controls=\"Collapse-a271cb269f3519135633\">\n                            \n                            <span class=\"ekit-accordion-title\">5. What are the three primary methods for estimating a job?<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-up-arrow\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-a271cb269f3519135633\" class=\" show collapse\" aria-labelledby=\"primaryHeading-4-65ff246\" data-parent=\"#accordion-69f3519135633\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <ol><li><strong>Unit Price Estimating:<\/strong> This method breaks down the job into individual tasks or components (units), each with a specific cost. You calculate the total by multiplying the number of units by the unit price. It's commonly used in construction, where pricing per square foot or per item (like outlets or fixtures) is standard.<\/li><li><strong>Lump Sum Estimating:<\/strong> Also known as a fixed-price estimate, this method provides a single total price for the entire job based on a detailed scope of work. It\u2019s useful when the job scope is well-defined and unlikely to change, making it ideal for smaller projects or clients who prefer knowing the full cost upfront.<\/li><li><strong>Time and Materials (T&amp;M) Estimating:<\/strong> This approach calculates the estimate based on the expected labor hours and material costs. The client is typically billed for actual time spent and materials used. It offers flexibility and is commonly used when project scopes are uncertain or may change during execution.<\/li><\/ol>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                                        <script type=\"application\/ld+json\">{\"@context\":\"https:\/\/schema.org\",\"@type\":\"FAQPage\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"1.  What is job estimation?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>A job estimation is\u00a0a <strong>file that outlines the scope and projected costs of an assignment.<\/strong><\/p><p>Its intended audience is the client who requested the service. A representative of a small business is responsible for creating the document and discussing it with the client.<\/p>\"}},{\"@type\":\"Question\",\"name\":\"2. What is the purpose of estimation?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>Estimation serves as a foundational tool for businesses and contractors to communicate the expected scope, timeline, and cost of a job before any work begins. It helps set clear expectations with clients, allowing them to make informed decisions, compare service providers, and plan budgets accordingly.<\/p><p>A well-crafted estimate demonstrates professionalism and transparency \u2014 both essential for building trust and winning new work.<\/p>\"}},{\"@type\":\"Question\",\"name\":\"3. What are the 4 types of estimation?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<ol><li><strong>Preliminary Estimate:<\/strong> A rough, early-stage estimate typically created before detailed project information is available. It helps stakeholders decide whether to pursue the project further and allocate an initial budget.<\/li><li><strong>Detailed Estimate:<\/strong> A comprehensive estimate that breaks down all aspects of a job \u2014 materials, labor, time, permits, and overhead. It's used when the full scope is known and is often the version presented to clients or decision-makers.<\/li><li><strong>Quantity Estimate (Quantity Takeoff):<\/strong> Focuses on the specific quantities of materials and labor required for a job. Common in construction, it helps calculate direct costs based on itemized components.<\/li><li><strong>Analogous Estimate (Top-Down):<\/strong> Based on historical data from similar past projects. It uses expert judgment and comparative analysis rather than precise data, making it useful when speed is more important than accuracy.<\/li><\/ol>\"}},{\"@type\":\"Question\",\"name\":\"4. What is an estimating software?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<p>An estimating software is an <strong>online tool<\/strong> or <strong>mobile app<\/strong> that <strong>helps businesses, contractors, and freelancers create accurate job estimates or quotes<\/strong> quickly and efficiently.<\/p><p>Instead of building an estimate manually, estimating software automates the process\u2014calculating costs, adding markups, including taxes, and organizing itemized details in a professional, printable format.<\/p><p>Some common features are:<\/p><ul><li><strong>Templates:<\/strong> for different job types (construction, repairs, cleaning).<\/li><li><strong>Item libraries:<\/strong> for labor, materials, and service costs.<\/li><li><strong>Tax and markup<\/strong> calculators.<\/li><li><strong>Customization:<\/strong> with logos, business info, and client details.<\/li><li><strong>Conversion to invoice:<\/strong> once the estimate is approved.<\/li><\/ul>\"}},{\"@type\":\"Question\",\"name\":\"5. What are the three primary methods for estimating a job?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"<ol><li><strong>Unit Price Estimating:<\/strong> This method breaks down the job into individual tasks or components (units), each with a specific cost. You calculate the total by multiplying the number of units by the unit price. It's commonly used in construction, where pricing per square foot or per item (like outlets or fixtures) is standard.<\/li><li><strong>Lump Sum Estimating:<\/strong> Also known as a fixed-price estimate, this method provides a single total price for the entire job based on a detailed scope of work. It\u2019s useful when the job scope is well-defined and unlikely to change, making it ideal for smaller projects or clients who prefer knowing the full cost upfront.<\/li><li><strong>Time and Materials (T&amp;M) Estimating:<\/strong> This approach calculates the estimate based on the expected labor hours and material costs. The client is typically billed for actual time spent and materials used. It offers flexibility and is commonly used when project scopes are uncertain or may change during execution.<\/li><\/ol>\"}}]}<\/script>\n                                <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-add8184 e-con-full e-flex e-con e-parent\" data-id=\"add8184\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e7aa334 e-flex e-con-boxed e-con e-child\" data-id=\"e7aa334\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-626c3a5 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-heading\" data-id=\"626c3a5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-text_center\"><h2 class=\"ekit-heading--title elementskit-section-title \">Helpful <span><span>Estimates<\/span><\/span> Resources<\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f6efa3 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"9f6efa3\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p data-pm-slice=\"1 1 []\">The InvoiceFly Academy is packed with informative and educational content designed to help you stay organized and make smarter business decisions. Explore our guides on invoicing essentials, plus deeper resources on specific topics like tax deductions for small businesses or how to invoice as a freelancer or consultant.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-801754f elementor-grid-4 elementor-posts--align-center elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-card-shadow-yes elementor-posts__hover-gradient elementor-widget elementor-widget-posts\" data-id=\"801754f\" data-element_type=\"widget\" data-settings=\"{&quot;cards_columns&quot;:&quot;4&quot;,&quot;cards_columns_tablet&quot;:&quot;2&quot;,&quot;cards_columns_mobile&quot;:&quot;1&quot;,&quot;cards_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;cards_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;cards_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"posts.cards\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid\" role=\"list\">\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95621 post type-post status-publish format-standard has-post-thumbnail hentry category-concrete category-start-your-business author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/what-is-concrete\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-300x200.webp\" class=\"attachment-medium size-medium wp-image-95622\" alt=\"what is concrete\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-300x200.webp 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-1024x682.webp 1024w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-768x512.webp 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-1536x1023.webp 1536w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-18x12.webp 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-1200x800.webp 1200w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete-710x473.webp 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/what-is-concrete.webp 1552w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/what-is-concrete\/\" >\n\t\t\t\tWhat Is Concrete? Composition, Types, and Uses\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95624 post type-post status-publish format-standard has-post-thumbnail hentry category-pest-control category-start-your-business author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/pest-control-technician\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-300x200.webp\" class=\"attachment-medium size-medium wp-image-95625\" alt=\"pest control technician\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-300x200.webp 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-1024x682.webp 1024w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-768x512.webp 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-1536x1023.webp 1536w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-18x12.webp 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-1200x800.webp 1200w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician-710x473.webp 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/pest-control-technician.webp 1552w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/pest-control-technician\/\" >\n\t\t\t\tPest Control Technician Job Description: Skills and Qualifications\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95627 post type-post status-publish format-standard has-post-thumbnail hentry category-pest-control category-start-your-business author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/how-much-does-termite-treatment-cost\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-300x200.webp\" class=\"attachment-medium size-medium wp-image-95628\" alt=\"how much does termite treatment cost\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-300x200.webp 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-1024x682.webp 1024w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-768x512.webp 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-1536x1023.webp 1536w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-18x12.webp 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-1200x800.webp 1200w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost-710x473.webp 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/how-much-does-termite-treatment-cost.webp 1552w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/how-much-does-termite-treatment-cost\/\" >\n\t\t\t\tHow Much Does Termite Treatment Cost? 2026 Pricing Guide\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95630 post type-post status-publish format-standard has-post-thumbnail hentry category-start-your-business category-tree-services-and-arborist author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/arborist-services\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-300x200.jpg\" class=\"attachment-medium size-medium wp-image-49495\" alt=\"Arborist Salary Guide 2025\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-300x200.jpg 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-1024x683.jpg 1024w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-768x512.jpg 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-1536x1024.jpg 1536w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-2048x1365.jpg 2048w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-1200x800.jpg 1200w, https:\/\/invoicefly.com\/wp-content\/uploads\/2025\/01\/two-male-service-workers-cutting-down-big-tree-branches-with-chainsaw-from-high-chair-lift-platform-710x473.jpg 710w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/arborist-services\/\" >\n\t\t\t\tArborist Services: Complete Guide for Contractors to Grow Their Business\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95632 post type-post status-publish format-standard has-post-thumbnail hentry category-industries category-salary-guides-industries author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/blue-collar-salary\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"157\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary-300x157.jpg\" class=\"attachment-medium size-medium wp-image-95674\" alt=\"blue collar salary\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary-300x157.jpg 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary-768x402.jpg 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary-18x9.jpg 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary-710x371.jpg 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/blue-collar-salary.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/blue-collar-salary\/\" >\n\t\t\t\tBlue Collar Salary: How Much Do Blue Collar Workers Make?\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95634 post type-post status-publish format-standard has-post-thumbnail hentry category-invoicing-and-billing category-receipt author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/what-is-a-receipt\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records-300x200.jpg\" class=\"attachment-medium size-medium wp-image-95504\" alt=\"Accountant sorting cash receipts for year end taxes\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records-300x200.jpg 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records-768x512.jpg 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records-18x12.jpg 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records-710x474.jpg 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/accountant-organizing-cash-receipts-for-tax-records.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/what-is-a-receipt\/\" >\n\t\t\t\tWhat Is a Receipt? Definition, Types &amp; Business Uses\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95636 post type-post status-publish format-standard has-post-thumbnail hentry category-billing category-invoicing-and-billing author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/billing-address\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"200\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address-300x200.jpg\" class=\"attachment-medium size-medium wp-image-95651\" alt=\"billing address\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address-300x200.jpg 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address-768x512.jpg 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address-18x12.jpg 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address-710x474.jpg 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/billing-address.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/billing-address\/\" >\n\t\t\t\tBilling Address: What It Is, Why It Matters &amp; How to Use It\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<article class=\"elementor-post elementor-grid-item post-95639 post type-post status-publish format-standard has-post-thumbnail hentry category-construction category-start-your-business author-ellie-mckenna\" role=\"listitem\">\n\t\t\t<div class=\"elementor-post__card\">\n\t\t\t\t<a class=\"elementor-post__thumbnail__link\" href=\"https:\/\/invoicefly.com\/es\/academy\/construction-crm-software\/\" tabindex=\"-1\" ><div class=\"elementor-post__thumbnail\"><img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"169\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software-300x169.jpg\" class=\"attachment-medium size-medium wp-image-95646\" alt=\"construction crm software\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software-300x169.jpg 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software-768x432.jpg 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software-18x10.jpg 18w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software-710x399.jpg 710w, https:\/\/invoicefly.com\/wp-content\/uploads\/2026\/04\/construction-crm-software.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/div><\/a>\n\t\t\t\t<div class=\"elementor-post__text\">\n\t\t\t\t<h4 class=\"elementor-post__title\">\n\t\t\t<a href=\"https:\/\/invoicefly.com\/es\/academy\/construction-crm-software\/\" >\n\t\t\t\tConstruction CRM Software: Best Tools for Contractors in 2026\t\t\t<\/a>\n\t\t<\/h4>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/article>\n\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-78a784c elementor-widget-mobile__width-initial elementor-widget__width-inherit elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"78a784c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/invoicefly.com\/academy\/\" target=\"_blank\" class=\"ekit_creative_button ekit_slide_icon_2 button-get-started-big\" id=\"\" data-text=\"\">\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">All Academy Articles<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_after icon icon-right-arrow1\"><\/i>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5b1f8a0 e-con-full e-flex e-con e-parent\" data-id=\"5b1f8a0\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a9d987a e-flex e-con-boxed e-con e-child\" data-id=\"a9d987a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dd63ec5 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-heading\" data-id=\"dd63ec5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-text_center\"><h2 class=\"ekit-heading--title elementskit-section-title \"><span><span>Free Resources<\/span><\/span><\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f0c46f0 elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f0c46f0\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Resources to run your business smoothly and efficiently.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c98106 elementor-widget elementor-widget-template\" data-id=\"1c98106\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"36656\" class=\"elementor elementor-36656\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2533698d e-con-full e-flex e-con e-child\" data-id=\"2533698d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-8f8c94e e-con-full e-flex e-con e-child\" data-id=\"8f8c94e\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7b80e646 elementor-widget elementor-widget-image\" data-id=\"7b80e646\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"280\" height=\"280\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-academy.png\" class=\"attachment-full size-full wp-image-30194\" alt=\"icon academy\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-academy.png 280w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-academy-150x150.png 150w\" sizes=\"(max-width: 280px) 100vw, 280px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7848d4dc elementor-widget elementor-widget-heading\" data-id=\"7848d4dc\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Academy<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d5c85d5 elementor-widget elementor-widget-text-editor\" data-id=\"5d5c85d5\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Expert how to&#8217;s &amp; step-by-step guides, and industry knowledge for contractors.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1b5eb89f elementor-align-center elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"1b5eb89f\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/academy\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Academy<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-734eee1 e-con-full e-flex e-con e-child\" data-id=\"734eee1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b7620ec elementor-widget elementor-widget-image\" data-id=\"2b7620ec\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"280\" height=\"280\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-templates.png\" class=\"attachment-full size-full wp-image-30195\" alt=\"free templates\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-templates.png 280w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-templates-150x150.png 150w\" sizes=\"(max-width: 280px) 100vw, 280px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd7bb90 elementor-widget elementor-widget-heading\" data-id=\"cd7bb90\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Free Templates<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-100a78c9 elementor-widget elementor-widget-text-editor\" data-id=\"100a78c9\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Explore free templates and create estimates, quotes, invoices, bills and receipts.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-371ecec4 elementor-align-center elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"371ecec4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-templates\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Free Templates<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-67310f74 e-con-full e-flex e-con e-child\" data-id=\"67310f74\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16b8c1b8 elementor-widget elementor-widget-image\" data-id=\"16b8c1b8\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"280\" height=\"280\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-free-generators.png\" class=\"attachment-full size-full wp-image-34172\" alt=\"Invoice Generator\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-free-generators.png 280w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-free-generators-150x150.png 150w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-free-generators-100x100.png 100w\" sizes=\"(max-width: 280px) 100vw, 280px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-71affbef elementor-widget elementor-widget-heading\" data-id=\"71affbef\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Free Generators<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c936778 elementor-widget elementor-widget-text-editor\" data-id=\"2c936778\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Generate Estimates, Quotes, Invoices, Bills, Receipts, and Proformas online.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-296d2f9c elementor-align-center elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"296d2f9c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-generators\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Free Generators<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-14f54bf8 e-con-full e-flex e-con e-child\" data-id=\"14f54bf8\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37170116 elementor-widget elementor-widget-image\" data-id=\"37170116\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"280\" height=\"280\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-calculators.png\" class=\"attachment-full size-full wp-image-30196\" alt=\"free calculators\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-calculators.png 280w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/icon-calculators-150x150.png 150w\" sizes=\"(max-width: 280px) 100vw, 280px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-137fa702 elementor-widget elementor-widget-heading\" data-id=\"137fa702\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Free Calculators<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-586856ce elementor-widget elementor-widget-text-editor\" data-id=\"586856ce\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p style=\"text-align: center;\">Use our free calculators: Service Price, Profit Margin, Net Salary, VAT, Break-Even&#8230;<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1247a6ba elementor-align-center elementor-widget__width-initial elementor-widget elementor-widget-button\" data-id=\"1247a6ba\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/free-resources\/free-calculators\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Free Calculators<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-da7a34b e-con-full e-flex e-con e-parent\" data-id=\"da7a34b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6f315c elementor-widget__width-inherit elementor-widget elementor-widget-template\" data-id=\"a6f315c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"35295\" class=\"elementor elementor-35295\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3cf6b04 e-flex e-con-boxed e-con e-parent\" data-id=\"3cf6b04\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0472fa7 elementor-widget__width-inherit elementor-absolute elementor-widget elementor-widget-image\" data-id=\"0472fa7\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-1024x512.png\" class=\"attachment-large size-large wp-image-22293\" alt=\"crm shape\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-1024x512.png 1024w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-300x150.png 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-768x384.png 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-1536x768.png 1536w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-2048x1024.png 2048w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/07\/crm-shape-2-710x355.png 710w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9fa2614 e-con-full e-flex e-con e-child\" data-id=\"9fa2614\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a449a47 elementor-widget elementor-widget-elementskit-heading\" data-id=\"a449a47\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_left   ekit_heading_tablet-   ekit_heading_mobile-text_center\"><h2 class=\"ekit-heading--title elementskit-section-title \">Try Invoice Fly Today<\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-67ca52b animated-fast elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"67ca52b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e44ce24 e-con-full e-flex e-con e-child\" data-id=\"e44ce24\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15e6d12 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"15e6d12\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Send  quotes & invoices in seconds<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Collect card & online payments<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e26fe82 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"e26fe82\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Receive instant notifications<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Win more jobs<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3a86019 e-con-full e-flex e-con e-child\" data-id=\"3a86019\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-17be85c elementor-widget__width-initial elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button\" data-id=\"17be85c\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/invoicefly.com\/appinvoicefly\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Get started now &gt;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a04a5a7 e-con-full e-flex e-con e-child\" data-id=\"a04a5a7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2dd8a65 elementor-widget__width-inherit elementor-widget elementor-widget-image\" data-id=\"2dd8a65\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"937\" height=\"595\" src=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/Banner_Badges.png\" class=\"attachment-full size-full wp-image-66367\" alt=\"Invoice Fly footer banner with Gartner Badges (GetApp, Capterra &amp; Software Advice)\" srcset=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/Banner_Badges.png 937w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/Banner_Badges-300x191.png 300w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/Banner_Badges-768x488.png 768w, https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/09\/Banner_Badges-710x451.png 710w\" sizes=\"(max-width: 937px) 100vw, 937px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Inicio Plantillas de presupuesto gratuitas Nuestras plantillas de presupuesto profesionales presentan dise\u00f1os limpios y modernos y son totalmente personalizables para reflejar su marca. Elija entre seis dise\u00f1os \u00fanicos y<\/p>","protected":false},"author":1,"featured_media":39444,"parent":28245,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_yoast_wpseo_focuskw":"Estimate Templates","_yoast_wpseo_title":"Free Estimate Templates | Docs, Sheets, Excel, PDF","_yoast_wpseo_metadesc":"Use this free estimate template to automatically create & download a custom estimate in Docs, Sheets, or PDF. Send unlimited estimates.","footnotes":""},"class_list":["post-28677","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.8 (Yoast SEO v25.8) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Free Estimate Templates | Docs, Sheets, Excel, PDF<\/title>\n<meta name=\"description\" content=\"Use this free estimate template to automatically create &amp; download a custom estimate in Docs, Sheets, or PDF. Send unlimited estimates.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/invoicefly.com\/es\/recursos-gratuitos\/plantillas-gratuitas\/plantilla-presupuesto\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Free Estimate Templates\" \/>\n<meta property=\"og:description\" content=\"Use this free estimate template to automatically create &amp; download a custom estimate in Docs, Sheets, or PDF. Send unlimited estimates.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/invoicefly.com\/es\/recursos-gratuitos\/plantillas-gratuitas\/plantilla-presupuesto\/\" \/>\n<meta property=\"og:site_name\" content=\"Invoice Fly\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/invoiceflyapp\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-24T09:44:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/\",\"url\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/\",\"name\":\"Free Estimate Templates | Docs, Sheets, Excel, PDF\",\"isPartOf\":{\"@id\":\"https:\/\/invoicefly.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg\",\"datePublished\":\"2026-04-24T09:43:55+00:00\",\"dateModified\":\"2026-04-24T09:44:03+00:00\",\"description\":\"Use this free estimate template to automatically create & download a custom estimate in Docs, Sheets, or PDF. Send unlimited estimates.\",\"breadcrumb\":{\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage\",\"url\":\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg\",\"contentUrl\":\"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg\",\"width\":1200,\"height\":675,\"caption\":\"Estimate Template | Invoice Fly\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Invoice Fly\",\"item\":\"https:\/\/invoicefly.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Free Resources for Small Businesses\",\"item\":\"https:\/\/invoicefly.com\/free-resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Free Templates\",\"item\":\"https:\/\/invoicefly.com\/free-resources\/free-templates\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Free Estimate Templates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/invoicefly.com\/#website\",\"url\":\"https:\/\/invoicefly.com\/\",\"name\":\"Invoice Fly\",\"description\":\"The Best Invoice App\",\"publisher\":{\"@id\":\"https:\/\/invoicefly.com\/#organization\"},\"alternateName\":\"Invoice Fly\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/invoicefly.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/invoicefly.com\/#organization\",\"name\":\"Invoice Fly\",\"alternateName\":\"Invoice Fly\",\"url\":\"https:\/\/invoicefly.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/invoicefly.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/invoicefly.com\/wp-content\/uploads\/2023\/09\/invoice-fly-logo.png\",\"contentUrl\":\"https:\/\/invoicefly.com\/wp-content\/uploads\/2023\/09\/invoice-fly-logo.png\",\"width\":524,\"height\":113,\"caption\":\"Invoice Fly\"},\"image\":{\"@id\":\"https:\/\/invoicefly.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/invoiceflyapp\/\",\"https:\/\/www.instagram.com\/invoiceflyapp\/\",\"https:\/\/www.tiktok.com\/@invoicefly\",\"https:\/\/www.youtube.com\/channel\/UCS20FuF4lzTotiD3cOHKYTg\"],\"description\":\"Invoice Fly helps you send estimates & invoices, collect credit card and online payments fast, build reports, track expenses, organize your clients and items and run your home service business with ease.\\u2028\",\"legalName\":\"Invoice Fly\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Plantillas gratuitas de presupuestos | Docs, Sheets, Excel, PDF","description":"Utilice esta plantilla de presupuesto gratuita para crear y descargar autom\u00e1ticamente un presupuesto personalizado en Docs, Sheets o PDF. Env\u00ede un n\u00famero ilimitado de presupuestos.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/invoicefly.com\/es\/recursos-gratuitos\/plantillas-gratuitas\/plantilla-presupuesto\/","og_locale":"es_ES","og_type":"article","og_title":"Free Estimate Templates","og_description":"Use this free estimate template to automatically create & download a custom estimate in Docs, Sheets, or PDF. Send unlimited estimates.","og_url":"https:\/\/invoicefly.com\/es\/recursos-gratuitos\/plantillas-gratuitas\/plantilla-presupuesto\/","og_site_name":"Invoice Fly","article_publisher":"https:\/\/www.facebook.com\/invoiceflyapp\/","article_modified_time":"2026-04-24T09:44:03+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/","url":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/","name":"Plantillas gratuitas de presupuestos | Docs, Sheets, Excel, PDF","isPartOf":{"@id":"https:\/\/invoicefly.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage"},"image":{"@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage"},"thumbnailUrl":"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg","datePublished":"2026-04-24T09:43:55+00:00","dateModified":"2026-04-24T09:44:03+00:00","description":"Utilice esta plantilla de presupuesto gratuita para crear y descargar autom\u00e1ticamente un presupuesto personalizado en Docs, Sheets o PDF. Env\u00ede un n\u00famero ilimitado de presupuestos.","breadcrumb":{"@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#primaryimage","url":"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg","contentUrl":"https:\/\/invoicefly.com\/wp-content\/uploads\/2024\/10\/estimate-templates-1200x675-1.jpg","width":1200,"height":675,"caption":"Estimate Template | Invoice Fly"},{"@type":"BreadcrumbList","@id":"https:\/\/invoicefly.com\/free-resources\/free-templates\/estimate-templates\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Invoice Fly","item":"https:\/\/invoicefly.com\/"},{"@type":"ListItem","position":2,"name":"Free Resources for Small Businesses","item":"https:\/\/invoicefly.com\/free-resources\/"},{"@type":"ListItem","position":3,"name":"Free Templates","item":"https:\/\/invoicefly.com\/free-resources\/free-templates\/"},{"@type":"ListItem","position":4,"name":"Free Estimate Templates"}]},{"@type":"WebSite","@id":"https:\/\/invoicefly.com\/#website","url":"https:\/\/invoicefly.com\/","name":"Invoice Fly","description":"La Mejor App de Facturaci\u00f3n","publisher":{"@id":"https:\/\/invoicefly.com\/#organization"},"alternateName":"Invoice Fly","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/invoicefly.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/invoicefly.com\/#organization","name":"Invoice Fly","alternateName":"Invoice Fly","url":"https:\/\/invoicefly.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/invoicefly.com\/#\/schema\/logo\/image\/","url":"https:\/\/invoicefly.com\/wp-content\/uploads\/2023\/09\/invoice-fly-logo.png","contentUrl":"https:\/\/invoicefly.com\/wp-content\/uploads\/2023\/09\/invoice-fly-logo.png","width":524,"height":113,"caption":"Invoice Fly"},"image":{"@id":"https:\/\/invoicefly.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/invoiceflyapp\/","https:\/\/www.instagram.com\/invoiceflyapp\/","https:\/\/www.tiktok.com\/@invoicefly","https:\/\/www.youtube.com\/channel\/UCS20FuF4lzTotiD3cOHKYTg"],"description":"Invoice Fly te ayuda a enviar presupuestos y facturas, cobrar tarjetas de cr\u00e9dito y pagos en l\u00ednea r\u00e1pidamente, generar informes, rastrear gastos, organizar tus clientes y art\u00edculos y administrar tu negocio de servicios del hogar con facilidad.","legalName":"Invoice Fly"}]}},"hero_title":"","hero_text":"","how_to_title":null,"how_to_content_1":null,"how_to_content_2":null,"how_to_content_3":null,"how_to_content_4":null,"key_section_title":null,"bill_confidently_title":null,"icon_title_1":null,"icon_text_1":null,"icon_title_2":null,"icon_text_2":null,"icon_title_3":null,"icon_text_3":null,"icon_title_4":null,"icon_text_4":null,"icon_title_5":null,"icon_text_5":null,"icon_title_6":null,"icon_text_6":null,"icon_title_7":null,"icon_text_7":null,"faq_header":null,"faq_text":null,"faq_title_1":null,"faq_content_1":"","faq_title_2":null,"faq_content_2":"","faq_title_3":null,"faq_content_3":"","faq_title_4":null,"faq_content_4":"","faq_title_5":null,"faq_content_5":"","faq_title_6":null,"faq_content_6":null,"faq_title_7":null,"faq_content_7":null,"faq_title_8":null,"faq_content_8":null,"faq_title_9":null,"faq_content_9":null,"faq_title_10":null,"faq_content_10":null,"get_paid_title":null,"get_paid_text":null,"stay_on_top_title":null,"stay_on_top_text":null,"icon_2_title_1":null,"icon_2_text_1":null,"icon_2_title_2":null,"icon_2_text_2":null,"icon_2_title_3":null,"icon_2_text_3":null,"icon_2_title_4":null,"icon_2_text_4":null,"invoicing_that_title":null,"invoicing_that_text":null,"icon_3_title_1":null,"icon_3_text_1":null,"icon_3_title_2":null,"icon_3_text_2":null,"icon_3_title_3":null,"icon_3_text_3":null,"icon_3_title_4":null,"icon_3_text_4":null,"faq_title_header":null,"faq_text_header":null,"hero_image":null,"invoice_template_title_seo":"Professional Invoice Templates by Invoice Fly","descripcion_invoice_template_seo":"<p>A great invoice doesn\u2019t just list numbers,  it reflects your brand and makes it easy for clients to pay.<\/p>\n<p>With Invoice Fly\u2019s free invoice templates, you can customize and download professional invoices in Word, Excel, PDF, Google Docs, or Google Sheets in minutes. Add your logo, edit your details, and create a polished invoice template ready to send to your clients. <\/p>\n<p>Whether you\u2019re a contractor, freelancer, consultant, agency, or growing business, Invoice Fly helps you invoice confidently across industries. \u2028\u2028And when you need more flexibility, the  Invoice Fly app lets you generate invoices on the go, track payments, save client details, and manage your invoicing workflow in one place &#8211; wherever your work takes you.<\/p>\n<p>From editable invoice templates to a full invoice generator, everything is designed to help you bill professionally and get paid faster.\u2028\u2028<\/p>\n<p>Get the Invoice Fly app for free and manage your invoicing from anywhere. \u2028\u2028<\/p>\n","whats_included_title":"","whats_included_text":"","whats_included_image":false,"faqs_title":"","faq_1":"","faq_2":"","faq_3":"","faq_4":"","faq_5":"","_links":{"self":[{"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/pages\/28677","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/comments?post=28677"}],"version-history":[{"count":7,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/pages\/28677\/revisions"}],"predecessor-version":[{"id":95190,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/pages\/28677\/revisions\/95190"}],"up":[{"embeddable":true,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/pages\/28245"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/media\/39444"}],"wp:attachment":[{"href":"https:\/\/invoicefly.com\/es\/wp-json\/wp\/v2\/media?parent=28677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}