{"id":1267,"date":"2026-06-17T11:04:26","date_gmt":"2026-06-17T09:04:26","guid":{"rendered":"https:\/\/growyu.nl\/contact\/"},"modified":"2026-06-21T21:04:15","modified_gmt":"2026-06-21T19:04:15","slug":"contact","status":"publish","type":"page","link":"https:\/\/growyu.nl\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row preset--module--divi-row--default\">\n<div class=\"et_pb_column_0 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module preset--module--divi-code--default\"><div class=\"et_pb_code_inner\"><style>\n  html,body{overflow-x:clip}\n  #meshCanvas{position:absolute;inset:0;z-index:0;display:block;pointer-events:none}\n  .gy-fx-scrim{position:absolute;inset:0;z-index:1;pointer-events:none;\n    background:\n      radial-gradient(105% 105% at 4% 48%, rgba(33,32,37,.86) 0%, rgba(33,32,37,.35) 38%, transparent 64%),\n      linear-gradient(180deg, rgba(33,32,37,.45) 0%, transparent 20%, transparent 72%, rgba(33,32,37,.70) 100%)}\n<\/style>\n<canvas id=\"meshCanvas\" aria-hidden=\"true\"><\/canvas>\n<div class=\"gy-fx-scrim\" aria-hidden=\"true\"><\/div>\n<script>\n(function () {\n  var canvas = document.getElementById('meshCanvas');\n  if (!canvas) return;\n  var ctx = canvas.getContext('2d');\n\n  \/* Zoek de hero-SECTIE als container (robuust: tag SECTION of class met 'section'),\n     verplaats canvas + scrim erin als achtergrondlaag, en zet de content erboven. *\/\n  function isSection(el){\n    return el && (el.tagName === 'SECTION' || \/et_pb_section|(^|[\\s_-])section([\\s_-]|$)\/i.test(el.className || ''));\n  }\n  var box = canvas.parentElement;\n  while (box.parentElement && box.parentElement.tagName !== 'BODY' && !isSection(box)) box = box.parentElement;\n  box.style.position = 'relative';\n  box.style.overflow = 'hidden';\n  var scrim = document.querySelector('.gy-fx-scrim');\n  box.insertBefore(canvas, box.firstChild);\n  if (scrim) box.insertBefore(scrim, canvas.nextSibling);\n  Array.prototype.forEach.call(box.children, function (c) {\n    if (c !== canvas && c !== scrim) { c.style.position = 'relative'; c.style.zIndex = '2'; }\n  });\n\n  var SPEED = 0.8, AMP = 1.0, BRI = 1.0, PARALLAX = true;\n  var DPR = Math.min(window.devicePixelRatio || 1, 1.6);\n  var BG = [33, 32, 37];\n  var GX = 30, GY = 32, TS = 0.9, VAMP = 0.30;\n  function heightField(X, Z, t) {\n    return 0.7 * Math.sin(X * 0.4 + t) + 0.6 * Math.cos(Z * 0.45 - t * 0.8) + 0.3 * Math.sin((X + Z) * 0.35 + t * 1.3);\n  }\n  var state = { mx: 0, my: 0, cmx: 0, cmy: 0, mpxT: -9999, mpyT: -9999, mpx: -9999, mpy: -9999, hover: 0, hoverT: 0 };\n\n  function sizeCanvas() {\n    var w = box.clientWidth, h = box.clientHeight;\n    if (!w || !h) return;\n    canvas.width = Math.round(w * DPR); canvas.height = Math.round(h * DPR);\n    canvas.style.width = w + 'px'; canvas.style.height = h + 'px';\n  }\n  \/\/ Robuuste sizing: ResizeObserver pakt de echte sectie-hoogte zodra die bekend is.\n  if (window.ResizeObserver) { try { new ResizeObserver(sizeCanvas).observe(box); } catch (e) {} }\n  window.addEventListener('resize', sizeCanvas);\n  window.addEventListener('load', sizeCanvas);\n  setTimeout(sizeCanvas, 200); setTimeout(sizeCanvas, 800);\n\n  if (PARALLAX) {\n    window.addEventListener('mousemove', function (e) {\n      var r = canvas.getBoundingClientRect();\n      state.mpxT = (e.clientX - r.left) * DPR; state.mpyT = (e.clientY - r.top) * DPR; state.hoverT = 1;\n      state.mx = (e.clientX \/ window.innerWidth - 0.5) * 2; state.my = (e.clientY \/ window.innerHeight - 0.5) * 2;\n    });\n    document.addEventListener('mouseleave', function () { state.hoverT = 0; });\n  }\n\n  function fogColor(near, alpha) {\n    var g = [123, 242, 66];\n    return 'rgba(' + Math.round(BG[0] + (g[0] - BG[0]) * near) + ',' + Math.round(BG[1] + (g[1] - BG[1]) * near) + ',' + Math.round(BG[2] + (g[2] - BG[2]) * near) + ',' + alpha.toFixed(3) + ')';\n  }\n\n  var startT = performance.now();\n  function frame(now) {\n    var t = (now - startT) \/ 1000, W = canvas.width, H = canvas.height;\n    if (!W || !H) { requestAnimationFrame(frame); return; }\n    state.cmx += (state.mx - state.cmx) * 0.006; state.cmy += (state.my - state.cmy) * 0.006;\n    if (state.mpx < -9000) { state.mpx = state.mpxT; state.mpy = state.mpyT; }\n    state.mpx += (state.mpxT - state.mpx) * 0.04; state.mpy += (state.mpyT - state.mpy) * 0.04;\n    state.hover += (state.hoverT - state.hover) * 0.025;\n    ctx.clearRect(0, 0, W, H);\n    var f = H * 0.95, cx = W * 0.60 + state.cmx * W * 0.0022, cy = H * 0.44 + state.cmy * H * 0.0015;\n    var ZN = 1.15, ZF = 16, XR = 9, tt = t * SPEED * TS, A = VAMP * AMP;\n    var DENT = 0, Xc = 0, Zc = 0, SIG2 = 4.5;\n    if (state.hover > 0.001 && state.mpy > cy + 6) { Zc = f \/ (state.mpy - cy); Xc = (state.mpx - cx) * Zc \/ f; DENT = 0.2 * state.hover; }\n    var glow = ctx.createRadialGradient(cx, cy, 0, cx, cy, H * 0.9);\n    glow.addColorStop(0, 'rgba(123,242,66,' + (0.16 * BRI).toFixed(3) + ')');\n    glow.addColorStop(0.4, 'rgba(123,242,66,' + (0.05 * BRI).toFixed(3) + ')');\n    glow.addColorStop(1, 'rgba(123,242,66,0)');\n    ctx.fillStyle = glow; ctx.fillRect(0, 0, W, H);\n    var pts = [];\n    for (var j = 0; j <= GY; j++) {\n      var rowArr = new Array(GX + 1), Z = ZN + (j \/ GY) * (ZF - ZN);\n      for (var i = 0; i <= GX; i++) {\n        var X = (i \/ GX - 0.5) * 2 * XR, wv = heightField(X, Z, tt), Y = -1.0 + wv * A;\n        if (DENT) { var ddx = X - Xc, ddz = Z - Zc; Y -= DENT * Math.exp(-(ddx * ddx + ddz * ddz) \/ (2 * SIG2)); }\n        rowArr[i] = [cx + (X \/ Z) * f, cy - (Y \/ Z) * f, wv];\n      }\n      pts.push(rowArr);\n    }\n    ctx.lineJoin = 'round';\n    for (var jm = 0; jm <= GY; jm++) {\n      var nm = Math.pow(1 - jm \/ GY, 0.85); ctx.beginPath();\n      for (var im = 0; im <= GX; im++) { var pm = pts[jm][im]; if (im === 0) ctx.moveTo(pm[0], pm[1]); else ctx.lineTo(pm[0], pm[1]); }\n      ctx.strokeStyle = fogColor(nm, (0.04 + nm * 0.22) * BRI); ctx.lineWidth = 0.6 * DPR; ctx.stroke();\n    }\n    for (var imc = 0; imc <= GX; imc++) {\n      ctx.beginPath();\n      for (var jmc = 0; jmc <= GY; jmc++) { var p3 = pts[jmc][imc]; if (jmc === 0) ctx.moveTo(p3[0], p3[1]); else ctx.lineTo(p3[0], p3[1]); }\n      ctx.strokeStyle = fogColor(0.5, 0.07 * BRI); ctx.lineWidth = 0.6 * DPR; ctx.stroke();\n    }\n    ctx.globalCompositeOperation = 'lighter';\n    for (var jmd = 0; jmd <= GY; jmd++) {\n      var ndd = 1 - jmd \/ GY;\n      for (var imd = 0; imd <= GX; imd++) {\n        var pdd = pts[jmd][imd], hd = (pdd[2] + 2) \/ 4, rd = (0.5 + hd * 2.4) * ndd * DPR;\n        if (rd < 0.3) continue;\n        ctx.beginPath(); ctx.arc(pdd[0], pdd[1], rd, 0, 6.2832);\n        ctx.fillStyle = 'rgba(150,255,110,' + ((0.14 + hd * 0.7) * ndd * BRI).toFixed(3) + ')'; ctx.fill();\n      }\n    }\n    ctx.globalCompositeOperation = 'source-over';\n    requestAnimationFrame(frame);\n  }\n  requestAnimationFrame(frame);\n})();\n<\/script><\/div><\/div>\n\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module preset--module--divi-text--default\"><div class=\"et_pb_text_inner\"><h1 class=\"page-hero__h1\">No sales talk. <span style=\"color: #7bf242;\">Just good advice.<\/span><\/h1>\n<\/div><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module preset--module--divi-text--w0skgr2je8\"><div class=\"et_pb_text_inner\"><p><span>The first conversation is always free. We listen to what's going on, give concrete suggestions, and only when it clicks do we talk about next steps.<\/span><\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module preset--module--divi-text--w0skgr2je8\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_1 et_pb_row et_flex_row preset--module--divi-row--default\">\n<div class=\"et_pb_column_1 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24\">\n<div class=\"et_pb_code_1 et_pb_code et_pb_module preset--module--divi-code--default\"><div class=\"et_pb_code_inner\"><style>\n.gy-formhead{margin-bottom:26px}\n.gy-formhead .eyebrow{font-family:'JetBrains Mono',monospace;font-size:13px;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:rgba(33,32,37,.6);display:inline-block;margin-bottom:14px}\n.gy-formhead h2{font-family:Montserrat,sans-serif;font-weight:700;font-size:clamp(22px,2vw,28px);letter-spacing:-.02em;color:#212025;margin:0 0 8px}\n.gy-formhead p{font-family:Inter,sans-serif;font-size:15px;line-height:1.55;color:#6e6d75;margin:0}\n\/* --- Divi contactformulier aangekleed naar het ontwerp --- *\/\n.et_pb_contact_form_container .et_pb_contact_field{padding:0 !important;background:transparent !important;border:none !important;margin-bottom:18px !important;display:flex !important;flex-direction:column !important;gap:8px !important}\n.et_pb_contact_form .et_pb_contact_field br{display:none !important}\n.et_pb_contact_form .et_pb_contact_field input,.et_pb_contact_form .et_pb_contact_field textarea,.et_pb_contact_form .et_pb_contact_field select{margin:0 !important}\n.et_pb_contact_form_container label,.et_pb_contact_form_container .et_pb_contact_form_label{font-family:'JetBrains Mono',monospace !important;font-size:11.5px !important;letter-spacing:.12em !important;text-transform:uppercase !important;color:rgba(33,32,37,.6) !important;margin:0 !important;padding:0 !important;line-height:1.2 !important;display:block !important}\n.et_pb_contact_form input.input,.et_pb_contact_form textarea,.et_pb_contact_form select,.et_pb_contact_form input:not([type=radio]):not([type=checkbox]):not([type=submit]){font-family:Inter,sans-serif !important;font-size:15px !important;color:#212025 !important;background:#ffffff !important;border:1px solid #e5e5e8 !important;border-radius:8px !important;padding:13px 15px !important;width:100% !important;box-shadow:none !important}\n.et_pb_contact_form_container .et_pb_contact_field input:focus,.et_pb_contact_form_container .et_pb_contact_field input.input:focus,.et_pb_contact_form input.input:focus,.et_pb_contact_form input[type=\"text\"]:focus,.et_pb_contact_form input[type=\"email\"]:focus,.et_pb_contact_form input[type=\"tel\"]:focus,.et_pb_contact_form input:focus,.et_pb_contact_form textarea:focus,.et_pb_contact_form select:focus{background:#fff !important;border-color:#212025 !important;box-shadow:0 0 0 3px rgba(33,32,37,.10) !important;outline:none !important}\n.et_pb_contact_form textarea{min-height:130px !important;resize:vertical !important;line-height:1.55 !important}\n\/* verberg Divi's eigen veld-pijl (zit op het hele veld incl. label -> staat daardoor bovenin) *\/\n.et_pb_contact_field[data-type=select]{background-image:none !important}\n\/* verberg Divi's pijl ongeacht of het een pseudo, achtergrond of element is *\/\n.et_pb_contact_field:has(select){background-image:none !important}\n.et_pb_contact_field:has(select)::after,.et_pb_contact_field:has(select)::before,.et_pb_contact_field[data-type=select]::after,.et_pb_contact_field[data-type=select]::before{display:none !important;content:none !important}\n\/* eigen pijl, verticaal gecentreerd op de select zelf *\/\n.et_pb_contact_form select{-webkit-appearance:none !important;-moz-appearance:none !important;appearance:none !important;cursor:pointer !important;padding-right:42px !important;background-image:url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23212025' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'\/%3E%3C\/svg%3E\") !important;background-repeat:no-repeat !important;background-position:right 16px center !important;background-size:14px 14px !important}\n.et_pb_contact_form input::placeholder,.et_pb_contact_form textarea::placeholder{color:rgba(33,32,37,.38) !important}\n.et_pb_contact_form .et_pb_contact_field_half{width:calc(50% - 9px) !important}\n.et_pb_contact_submit,.et_pb_button.et_pb_contact_submit,.et_pb_contact_form .et_pb_button{font-family:Inter,sans-serif !important;font-weight:600 !important;font-size:15px !important;background:#7bf242 !important;color:#212025 !important;border:none !important;border-radius:8px !important;padding:14px 26px !important;box-shadow:0 8px 24px rgba(123,242,66,.28) !important;transition:transform .14s cubic-bezier(.22,1,.36,1),background .22s !important}\n.et_pb_contact_submit:hover,.et_pb_contact_form .et_pb_button:hover{background:#6dd936 !important;transform:scale(1.03) !important}\n.et_pb_contact_submit:after,.et_pb_contact_form .et_pb_button:after{display:none !important;content:none !important}\n.et_pb_contact_form p{padding:0 !important}\n<\/style>\n<div class=\"gy-formhead\"><span class=\"eyebrow\">SEND A MESSAGE<\/span><h2>Tell us what you're running into.<\/h2><p>The more context you give, the better we can prepare for the conversation. We'll get back to you within one business day.<\/p><\/div>\n<script>(function(){function fix(){var sels=document.querySelectorAll('.et_pb_contact_form select');for(var i=0;i<sels.length;i++){var o=sels[i].options[0];if(o){o.value='';o.disabled=true;o.hidden=true;}}}if(document.readyState==='loading')document.addEventListener('DOMContentLoaded',fix);else fix();setTimeout(fix,600);})();<\/script><\/div><\/div>\n\n<div class=\"et_pb_contact_form_0 et_pb_contact_form_container clearfix et_pb_module et_flex_module\" data-form_unique_num=\"0\" data-form_unique_id=\"gy-contact-form-0001-4a2b-9c3d-000000000001\" id=\"et_pb_contact_form_gy-contact-form-0001-4a2b-9c3d-000000000001\"><div class=\"et-pb-contact-message\"><\/div><div class=\"et_pb_contact\"><form class=\"et_pb_contact_form et_flex_module\" method=\"post\" action=\"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/pages\/1267\">\n<div class=\"et_pb_contact_field_0 et_pb_contact_field et_pb_module et_flex_module et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_12_24_phone\" data-id=\"naam\" data-type=\"input\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_naam_0\">Naam<\/label><input type=\"text\" name=\"et_pb_contact_0_naam_0\" id=\"et_pb_contact_0_naam_0\" class=\"input\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"naam\" placeholder=\"Naam\" title=\"\" value=\"\" \/><\/div>\n\n<div class=\"et_pb_contact_field_1 et_pb_contact_field et_pb_module et_flex_module et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_12_24_phone\" data-id=\"bedrijf\" data-type=\"input\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_bedrijf_1\">Bedrijf<\/label><input type=\"text\" name=\"et_pb_contact_0_bedrijf_1\" id=\"et_pb_contact_0_bedrijf_1\" class=\"input\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"bedrijf\" placeholder=\"Bedrijf\" title=\"\" value=\"\" \/><\/div>\n\n<div class=\"et_pb_contact_field_2 et_pb_contact_field et_pb_module et_flex_module et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_12_24_phone\" data-id=\"email\" data-type=\"email\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_email_2\">E-mail<\/label><input type=\"text\" name=\"et_pb_contact_0_email_2\" id=\"et_pb_contact_0_email_2\" class=\"input\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"E-mail\" title=\"\" value=\"\" \/><\/div>\n\n<div class=\"et_pb_contact_field_3 et_pb_contact_field et_pb_module et_flex_module et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_12_24_phone\" data-id=\"phone\" data-type=\"input\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_phone_3\">Phone (optioneel)<\/label><input type=\"text\" name=\"et_pb_contact_0_phone_3\" id=\"et_pb_contact_0_phone_3\" class=\"input\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone (optioneel)\" title=\"\" value=\"\" \/><\/div>\n\n<div class=\"et_pb_contact_field_4 et_pb_contact_field et_pb_module et_flex_module et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\" data-id=\"onderwerp\" data-type=\"select\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_onderwerp_4\">Onderwerp<\/label><select name=\"et_pb_contact_0_onderwerp_4\" id=\"et_pb_contact_0_onderwerp_4\" class=\"et_pb_contact_select input\" data-required_mark=\"required\" data-field_type=\"select\" data-original_id=\"onderwerp\"><option value=\"\">Onderwerp<\/option><option value=\"Microsoft Dynamics 365 F&amp;SCM\" data-id=\"\">Microsoft Dynamics 365 F&amp;SCM<\/option><option value=\"Microsoft Dynamics 365 Business Central\" data-id=\"\">Microsoft Dynamics 365 Business Central<\/option><option value=\"Microsoft Power BI\" data-id=\"\">Microsoft Power BI<\/option><option value=\"Microsoft Power Apps &amp; Customm apps\" data-id=\"\">Microsoft Power Apps &amp; Customm apps<\/option><option value=\"Copilot &amp; AI Agents\" data-id=\"\">Copilot &amp; AI Agents<\/option><option value=\"Training &amp; Enablement\" data-id=\"\">Training &amp; Enablement<\/option><option value=\"Support &amp; Beheer\" data-id=\"\">Support &amp; Beheer<\/option><option value=\"Anders\" data-id=\"\">Anders<\/option><\/select><\/div>\n\n<div class=\"et_pb_contact_field_5 et_pb_contact_field et_pb_module et_flex_module et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\" data-id=\"toelichting\" data-type=\"text\"><label class=\"et_pb_contact_form_label\" for=\"et_pb_contact_0_toelichting_5\">Korte toelichting<\/label><textarea name=\"et_pb_contact_0_toelichting_5\" id=\"et_pb_contact_0_toelichting_5\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"toelichting\" placeholder=\"Korte toelichting\"><\/textarea><\/div>\n<input type=\"hidden\" name=\"et_pb_contactform_submit_gy-contact-form-0001-4a2b-9c3d-000000000001\" value=\"et_contact_proccess\" \/><div class=\"et_contact_bottom_container\"><div class=\"et_pb_contact_right et_pb_contact_field\"><p class=\"clearfix\"><label><span class=\"et_pb_contact_captcha_question\">12 + 10<\/span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"12\" data-second_digit=\"10\" data-required_mark=\"required\" name=\"et_pb_contact_captcha_gy-contact-form-0001-4a2b-9c3d-000000000001\" autocomplete=\"off\" \/><\/label><\/p><\/div><div class=\"et_pb_button_wrapper\"><button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_button et_pb_contact_submit\">Submit<\/button><\/div><\/div><input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-gy-contact-form-0001-4a2b-9c3d-000000000001\" name=\"_wpnonce-et-pb-contact-form-submitted-gy-contact-form-0001-4a2b-9c3d-000000000001\" value=\"eacd59d19b\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/pages\/1267\" \/><\/form><\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_2 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24\">\n<div class=\"et_pb_code_2 et_pb_code et_pb_module preset--module--divi-code--default\"><div class=\"et_pb_code_inner\"><style>\n.gy-contact-info{display:flex;flex-direction:column;gap:32px}\n.gy-contact-info .contact-card{background:#fff;border:1px solid #e5e5e8;border-radius:16px;padding:32px;box-shadow:0 1px 2px rgba(33,32,37,.06),0 1px 1px rgba(33,32,37,.04)}\n.gy-contact-info .contact-card__label{font-family:'JetBrains Mono',monospace;font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;color:rgba(33,32,37,.55);display:block;margin-bottom:22px}\n.gy-contact-info .contact-line{display:flex;gap:16px;align-items:flex-start;padding:16px 0;border-top:1px solid #e5e5e8}\n.gy-contact-info .contact-line:first-of-type{border-top:none;padding-top:0}\n.gy-contact-info .contact-line:last-of-type{padding-bottom:0}\n.gy-contact-info .contact-line__ic{width:40px;height:40px;flex:none;display:grid;place-items:center;border-radius:8px;background:#ffffff;border:1px solid #e5e5e8;color:#212025}\n.gy-contact-info .contact-line__ic svg{width:19px;height:19px}\n.gy-contact-info .contact-line__body{display:flex;flex-direction:column;gap:3px;padding-top:2px}\n.gy-contact-info .contact-line__k{font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:rgba(33,32,37,.5)}\n.gy-contact-info .contact-line__v{font-family:Inter,sans-serif;font-size:15.5px;color:#212025;line-height:1.45}\n.gy-contact-info .contact-line__v a{color:#212025;text-decoration:none;transition:color .22s}\n.gy-contact-info .contact-line__v a:hover{color:#6dd936}\n.gy-contact-info .expect-card{background:#2b2a30;border:1px solid #36353c;border-radius:16px;padding:32px}\n.gy-contact-info .expect-card__label{font-family:'JetBrains Mono',monospace;font-size:11.5px;letter-spacing:.18em;text-transform:uppercase;color:#7bf242;display:block;margin-bottom:20px}\n.gy-contact-info .expect-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px}\n.gy-contact-info .expect-list li{display:flex;gap:12px;align-items:flex-start;font-family:Inter,sans-serif;font-size:15px;line-height:1.5;color:#b8b7bd}\n.gy-contact-info .expect-list li svg{width:18px;height:18px;flex:none;color:#7bf242;margin-top:2px}\n.gy-contact-info .expect-list strong{color:#fff;font-weight:600}\n<\/style><div class=\"gy-contact-info\"><div class=\"contact-card\"><span class=\"contact-card__label\">GET IN TOUCH<\/span><div class=\"contact-line\"><span class=\"contact-line__ic\" aria-hidden=\"true\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z\"><\/path><\/svg><\/span><span class=\"contact-line__body\"><span class=\"contact-line__k\">Phone<\/span><span class=\"contact-line__v\"><a href=\"tel:+31639503932\">+31 6 39 50 39 32<\/a><\/span><\/span><\/div><div class=\"contact-line\"><span class=\"contact-line__ic\" aria-hidden=\"true\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" rx=\"2\"><\/rect><path d=\"m3 7 9 6 9-6\"><\/path><\/svg><\/span><span class=\"contact-line__body\"><span class=\"contact-line__k\">E-mail<\/span><span class=\"contact-line__v\"><a href=\"mailto:info@growyu.nl\">info@growyu.nl<\/a><\/span><\/span><\/div><div class=\"contact-line\"><span class=\"contact-line__ic\" aria-hidden=\"true\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z\"><\/path><circle cx=\"12\" cy=\"10\" r=\"3\"><\/circle><\/svg><\/span><span class=\"contact-line__body\"><span class=\"contact-line__k\">Address<\/span><span class=\"contact-line__v\">Havenstraat 74<br>1271 AG Huizen<\/span><\/span><\/div><div class=\"contact-line\"><span class=\"contact-line__ic\" aria-hidden=\"true\"><svg viewBox=\"0 0 24 24\" fill=\"currentColor\" aria-hidden=\"true\"><path d=\"M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM3 9h4v12H3zM9 9h3.8v1.64h.05c.53-.95 1.83-1.95 3.76-1.95 4.02 0 4.76 2.5 4.76 5.76V21h-4v-5.2c0-1.24-.02-2.84-1.88-2.84-1.88 0-2.17 1.36-2.17 2.76V21H9z\"><\/path><\/svg><\/span><span class=\"contact-line__body\"><span class=\"contact-line__k\">LinkedIn<\/span><span class=\"contact-line__v\"><a href=\"https:\/\/www.linkedin.com\/company\/growyu\" target=\"_blank\" rel=\"noopener\">\/company\/growyu<\/a><\/span><\/span><\/div><div class=\"contact-line\"><span class=\"contact-line__ic\" aria-hidden=\"true\"><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.8\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M3 21h18\"><\/path><path d=\"M5 21V7l8-4v18\"><\/path><path d=\"M19 21V11l-6-4\"><\/path><path d=\"M9 9v.01\"><\/path><path d=\"M9 12v.01\"><\/path><path d=\"M9 15v.01\"><\/path><path d=\"M9 18v.01\"><\/path><\/svg><\/span><span class=\"contact-line__body\"><span class=\"contact-line__k\">Chamber of Commerce<\/span><span class=\"contact-line__v\">Growyu B.V. \u00b7 90931017<\/span><\/span><\/div><\/div><div class=\"expect-card\"><span class=\"expect-card__label\">WHAT TO EXPECT<\/span><ul class=\"expect-list\"><li><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\"><path d=\"M20 6 9 17l-5-5\"><\/path><\/svg><span>Een <strong>free conversation<\/strong> of around 60 minutes, no pitch.<\/span><\/li><li><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\"><path d=\"M20 6 9 17l-5-5\"><\/path><\/svg><span>Senior consultants who <strong>both the business and the technology<\/strong> understand.<\/span><\/li><li><svg viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" aria-hidden=\"true\"><path d=\"M20 6 9 17l-5-5\"><\/path><\/svg><span>Concrete suggestions on where in your <strong>organisatie<\/strong> time can be saved.<\/span><\/li><\/ul><\/div><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1267","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/pages\/1267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/comments?post=1267"}],"version-history":[{"count":6,"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/pages\/1267\/revisions"}],"predecessor-version":[{"id":1320,"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/pages\/1267\/revisions\/1320"}],"wp:attachment":[{"href":"https:\/\/growyu.nl\/en\/wp-json\/wp\/v2\/media?parent=1267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}