{"id":150,"date":"2016-12-14T13:10:18","date_gmt":"2016-12-14T13:10:18","guid":{"rendered":"http:\/\/recycle.orionthemes.com\/demo-1\/?page_id=150"},"modified":"2025-05-09T18:04:05","modified_gmt":"2025-05-09T18:04:05","slug":"contact","status":"publish","type":"page","link":"https:\/\/greenmar.ma\/index.php\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"<div id=\"pl-150\"  class=\"panel-layout\" ><div id=\"pg-150-0\"  class=\"panel-grid panel-has-style\" ><div class=\"siteorigin-panels-stretch tablet-default mobile-1-in-row panel-row-style panel-row-style-for-150-0\" data-stretch-type=\"full-width-stretch\" data-svg-bottom-color=\"#ffffff\" ><div id=\"pgc-150-0-0\"  class=\"panel-grid-cell\" ><div id=\"panel-150-0-0-0\" class=\"so-panel widget widget_sow-google-map panel-first-child panel-last-child\" data-index=\"0\" ><div class=\"orion default panel-widget-style panel-widget-style-for-150-0-0-0\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-sow-google-map so-widget-sow-google-map-default-6b23895f316e-150\"\n\t\t\t\n\t\t>\n<div class=\"sow-google-map-canvas\"\n\tstyle=\"\"\n\tid=\"map-canvas-487cb8e2cfa3949e162a54f995cdb9b6\"\n\tdata-options=\"{&quot;address&quot;:&quot;Boston&quot;,&quot;zoom&quot;:12,&quot;mobileZoom&quot;:12,&quot;gestureHandling&quot;:&quot;none&quot;,&quot;disableUi&quot;:true,&quot;markerIcon&quot;:false,&quot;markersDraggable&quot;:false,&quot;markerAtCenter&quot;:false,&quot;markerInfoDisplay&quot;:&quot;click&quot;,&quot;markerInfoMultiple&quot;:true,&quot;markerPositions&quot;:[{&quot;place&quot;:&quot;DAIDAAT HJER NHEL&quot;,&quot;info&quot;:&quot;\\n&lt;!DOCTYPE html&gt;\\n&lt;!--\\n @license\\n Copyright 2019 Google LLC. All Rights Reserved.\\n SPDX-License-Identifier: Apache-2.0\\n--&gt;\\n&lt;html&gt;\\n  &lt;head&gt;\\n    &lt;title&gt;Geocoding Service&lt;\\\/title&gt;\\n    &lt;script&gt;\\n      \\\/**\\n       * @license\\n       * Copyright 2019 Google LLC. All Rights Reserved.\\n       * SPDX-License-Identifier: Apache-2.0\\n       *\\\/\\n      let map;\\n      let marker;\\n      let geocoder;\\n      let responseDiv;\\n      let response;\\n\\n      function initMap() {\\n        map = new google.maps.Map(document.getElementById(\\&quot;map\\&quot;), {\\n          zoom: 8,\\n          center: { lat: -34.397, lng: 150.644 },\\n          mapTypeControl: false,\\n        });\\n        geocoder = new google.maps.Geocoder();\\n\\n        const inputText = document.createElement(\\&quot;input\\&quot;);\\n\\n        inputText.type = \\&quot;text\\&quot;;\\n        inputText.placeholder = \\&quot;Enter a location\\&quot;;\\n\\n        const submitButton = document.createElement(\\&quot;input\\&quot;);\\n\\n        submitButton.type = \\&quot;button\\&quot;;\\n        submitButton.value = \\&quot;Geocode\\&quot;;\\n        submitButton.classList.add(\\&quot;button\\&quot;, \\&quot;button-primary\\&quot;);\\n\\n        const clearButton = document.createElement(\\&quot;input\\&quot;);\\n\\n        clearButton.type = \\&quot;button\\&quot;;\\n        clearButton.value = \\&quot;Clear\\&quot;;\\n        clearButton.classList.add(\\&quot;button\\&quot;, \\&quot;button-secondary\\&quot;);\\n        response = document.createElement(\\&quot;pre\\&quot;);\\n        response.id = \\&quot;response\\&quot;;\\n        response.innerText = \\&quot;\\&quot;;\\n        responseDiv = document.createElement(\\&quot;div\\&quot;);\\n        responseDiv.id = \\&quot;response-container\\&quot;;\\n        responseDiv.appendChild(response);\\n\\n        const instructionsElement = document.createElement(\\&quot;p\\&quot;);\\n\\n        instructionsElement.id = \\&quot;instructions\\&quot;;\\n        instructionsElement.innerHTML =\\n          \\&quot;&lt;strong&gt;Instructions&lt;\\\/strong&gt;: Enter an address in the textbox to geocode or click on the map to reverse geocode.\\&quot;;\\n        map.controls[google.maps.ControlPosition.TOP_LEFT].push(inputText);\\n        map.controls[google.maps.ControlPosition.TOP_LEFT].push(submitButton);\\n        map.controls[google.maps.ControlPosition.TOP_LEFT].push(clearButton);\\n        map.controls[google.maps.ControlPosition.LEFT_TOP].push(\\n          instructionsElement\\n        );\\n        map.controls[google.maps.ControlPosition.LEFT_TOP].push(responseDiv);\\n        marker = new google.maps.Marker({\\n          map,\\n        });\\n        map.addListener(\\&quot;click\\&quot;, (e) =&gt; {\\n          geocode({ location: e.latLng });\\n        });\\n        submitButton.addEventListener(\\&quot;click\\&quot;, () =&gt;\\n          geocode({ address: inputText.value })\\n        );\\n        clearButton.addEventListener(\\&quot;click\\&quot;, () =&gt; {\\n          clear();\\n        });\\n        clear();\\n      }\\n\\n      function clear() {\\n        marker.setMap(null);\\n      }\\n\\n      function geocode(request) {\\n        clear();\\n        geocoder\\n          .geocode(request)\\n          .then((result) =&gt; {\\n            const { results } = result;\\n\\n            map.setCenter(results[0].geometry.location);\\n            marker.setPosition(results[0].geometry.location);\\n            marker.setMap(map);\\n            response.innerText = JSON.stringify(result, null, 2);\\n            return results;\\n          })\\n          .catch((e) =&gt; {\\n            alert(\\&quot;Geocode was not successful for the following reason: \\&quot; + e);\\n          });\\n      }\\n\\n      window.initMap = initMap;\\n    &lt;\\\/script&gt;\\n    &lt;style&gt;\\n      \\\/**\\n       * @license\\n       * Copyright 2019 Google LLC. All Rights Reserved.\\n       * SPDX-License-Identifier: Apache-2.0\\n       *\\\/\\n      \\\/**\\n       * Always set the map height explicitly to define the size of the div element\\n       * that contains the map. \\n       *\\\/\\n      #map {\\n        height: 100%;\\n      }\\n\\n      \\\/* Optional: Makes the sample page fill the window. *\\\/\\n      html,\\n      body {\\n        height: 100%;\\n        margin: 0;\\n        padding: 0;\\n      }\\n\\n      input[type=\\&quot;text\\&quot;] {\\n        background-color: #fff;\\n        border: 0;\\n        border-radius: 2px;\\n        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);\\n        margin: 10px;\\n        padding: 0 0.5em;\\n        font: 400 18px Roboto, Arial, sans-serif;\\n        overflow: hidden;\\n        line-height: 40px;\\n        margin-right: 0;\\n        min-width: 25%;\\n      }\\n\\n      input[type=\\&quot;button\\&quot;] {\\n        background-color: #fff;\\n        border: 0;\\n        border-radius: 2px;\\n        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);\\n        margin: 10px;\\n        padding: 0 0.5em;\\n        font: 400 18px Roboto, Arial, sans-serif;\\n        overflow: hidden;\\n        height: 40px;\\n        cursor: pointer;\\n        margin-left: 5px;\\n      }\\n      input[type=\\&quot;button\\&quot;]:hover {\\n        background: rgb(235, 235, 235);\\n      }\\n      input[type=\\&quot;button\\&quot;].button-primary {\\n        background-color: #1a73e8;\\n        color: white;\\n      }\\n      input[type=\\&quot;button\\&quot;].button-primary:hover {\\n        background-color: #1765cc;\\n      }\\n      input[type=\\&quot;button\\&quot;].button-secondary {\\n        background-color: white;\\n        color: #1a73e8;\\n      }\\n      input[type=\\&quot;button\\&quot;].button-secondary:hover {\\n        background-color: #d2e3fc;\\n      }\\n\\n      #response-container {\\n        background-color: #fff;\\n        border: 0;\\n        border-radius: 2px;\\n        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);\\n        margin: 10px;\\n        padding: 0 0.5em;\\n        font: 400 18px Roboto, Arial, sans-serif;\\n        overflow: hidden;\\n        overflow: auto;\\n        max-height: 50%;\\n        max-width: 90%;\\n        background-color: rgba(255, 255, 255, 0.95);\\n        font-size: small;\\n      }\\n\\n      #instructions {\\n        background-color: #fff;\\n        border: 0;\\n        border-radius: 2px;\\n        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);\\n        margin: 10px;\\n        padding: 0 0.5em;\\n        font: 400 18px Roboto, Arial, sans-serif;\\n        overflow: hidden;\\n        padding: 1rem;\\n        font-size: medium;\\n      }\\n    &lt;\\\/style&gt;\\n  &lt;\\\/head&gt;\\n  &lt;body&gt;\\n    &lt;div id=\\&quot;map\\&quot;&gt;&lt;\\\/div&gt;\\n    &lt;script\\n      src=\\&quot;https:\\\/\\\/maps.googleapis.com\\\/maps\\\/api\\\/js?key=INSERT_YOUR_API_KEY&amp;callback=initMap&amp;v=weekly&amp;solution_channel=GMP_CCS_geocodingservice_v2\\&quot;\\n      defer&gt;&lt;\\\/script&gt;\\n  &lt;\\\/body&gt;\\n&lt;\\\/html&gt;\\n    &quot;,&quot;infoSelectedEditor&quot;:&quot;html&quot;,&quot;infoMaxWidth&quot;:&quot;&quot;,&quot;customMarkerIcon&quot;:0,&quot;customMarkerIconSize&quot;:&quot;full&quot;}],&quot;mapName&quot;:&quot;Carte personnalis\\u00e9e&quot;,&quot;mapStyles&quot;:[{&quot;featureType&quot;:&quot;administrative.locality&quot;,&quot;elementType&quot;:&quot;all&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:7},{&quot;lightness&quot;:19},{&quot;visibility&quot;:&quot;on&quot;}]},{&quot;featureType&quot;:&quot;landscape&quot;,&quot;elementType&quot;:&quot;all&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-100},{&quot;lightness&quot;:100},{&quot;visibility&quot;:&quot;simplified&quot;}]},{&quot;featureType&quot;:&quot;poi&quot;,&quot;elementType&quot;:&quot;all&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-100},{&quot;lightness&quot;:100},{&quot;visibility&quot;:&quot;off&quot;}]},{&quot;featureType&quot;:&quot;road&quot;,&quot;elementType&quot;:&quot;geometry&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-93},{&quot;lightness&quot;:31},{&quot;visibility&quot;:&quot;simplified&quot;}]},{&quot;featureType&quot;:&quot;road&quot;,&quot;elementType&quot;:&quot;labels&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-93},{&quot;lightness&quot;:31},{&quot;visibility&quot;:&quot;on&quot;}]},{&quot;featureType&quot;:&quot;road.arterial&quot;,&quot;elementType&quot;:&quot;labels&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-93},{&quot;lightness&quot;:-2},{&quot;visibility&quot;:&quot;simplified&quot;}]},{&quot;featureType&quot;:&quot;road.local&quot;,&quot;elementType&quot;:&quot;geometry&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-90},{&quot;lightness&quot;:-8},{&quot;visibility&quot;:&quot;simplified&quot;}]},{&quot;featureType&quot;:&quot;transit&quot;,&quot;elementType&quot;:&quot;all&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:10},{&quot;lightness&quot;:69},{&quot;visibility&quot;:&quot;on&quot;}]},{&quot;featureType&quot;:&quot;water&quot;,&quot;elementType&quot;:&quot;all&quot;,&quot;stylers&quot;:[{&quot;hue&quot;:&quot;#00ffbc&quot;},{&quot;saturation&quot;:-78},{&quot;lightness&quot;:67},{&quot;visibility&quot;:&quot;simplified&quot;}]}],&quot;directions&quot;:&quot;&quot;,&quot;apiKey&quot;:&quot;AIzaSyCwrRYR_b8H9JL36gurApxnP047X003phw&quot;,&quot;breakpoint&quot;:780}\"\n\tdata-fallback-image=\"{&quot;img&quot;:&quot;&quot;}\"><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><div id=\"pg-150-1\"  class=\"panel-grid panel-has-style\" ><div class=\"siteorigin-panels-stretch tablet-1-in-row mobile-1-in-row panel-row-style panel-row-style-for-150-1\" style=\"background-position: center center; background-repeat: no-repeat; background-size:cover;\" data-stretch-type=\"full\" ><div id=\"pgc-150-1-0\"  class=\"panel-grid-cell\" ><div id=\"panel-150-1-0-0\" class=\"so-panel widget widget_sow-editor panel-first-child\" data-index=\"1\" ><div class=\"orion default panel-widget-style panel-widget-style-for-150-1-0-0\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-sow-editor so-widget-sow-editor-base\"\n\t\t\t\n\t\t>\n<div class=\"siteorigin-widget-tinymce textwidget\">\n\t<h2>Contactez-Nous!<\/h2>\n<p class=\"p1\">Pour toute demande ou information, n'h\u00e9sitez pas \u00e0 nous contacter. Nous sommes \u00e0 votre service pour toutes vos questions relatives \u00e0 la gestion des d\u00e9chets<\/p>\n<\/div>\n<\/div><\/div><\/div><div id=\"panel-150-1-0-1\" class=\"so-panel widget widget_orion_icon_text_w panel-last-child\" data-index=\"2\" ><div class=\"orion default panel-widget-style panel-widget-style-for-150-1-0-1\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-orion_icon_text_w so-widget-orion_icon_text_w-base\"\n\t\t\t\n\t\t>\n<div class=\"row icon-box-items-wrap grid short\">\n \n\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t<div class=\"icon-box-wrap clearfix col-lg-12 col-sm-12  icon-image-wrap\" style=\"margin-bottom:24px;\">\t\t\n\n\t\t\t<h5 class=\"item-title\">+212 663 45 71 07<\/h5>\t\t\t\t\t\t\t<div class=\"icon-wrap absolute  square\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"image\"><\/span>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t<span class=\"description\">Appelez-nous aujourd'hui!<\/span>\n\n\t\t<\/div>\n\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t<div class=\"icon-box-wrap clearfix col-lg-12 col-sm-12  icon-image-wrap icon-image-wrap\" style=\"margin-bottom:24px;\">\t\t\n\n\t\t\t<h5 class=\"item-title\">Horaires<\/h5>\t\t\t\t\t\t\t<div class=\"icon-wrap absolute  square\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"image\"><\/span>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t<span class=\"description\">Lundi - Vendredi: 08h00 \u00e0 16h00<\/span>\n\n\t\t<\/div>\n\t\n\t\t\n\t\t\n\t\t\t\t\n\t\t\n\t\t<div class=\"icon-box-wrap clearfix col-lg-12 col-sm-12  icon-image-wrap icon-image-wrap icon-image-wrap\" style=\"margin-bottom:24px;\">\t\t\n\n\t\t\t<h5 class=\"item-title\">GREENMAR<\/h5>\t\t\t\t\t\t\t<div class=\"icon-wrap absolute  square\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"image\"><\/span>\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t<span class=\"description\">Daidaat Hjer Nhel, Tanger 90000<\/span>\n\n\t\t<\/div>\n\t\n<\/div><\/div><\/div><\/div><\/div><div id=\"pgc-150-1-1\"  class=\"panel-grid-cell\" ><div id=\"panel-150-1-1-0\" class=\"so-panel widget widget_orion_cf7_w panel-first-child panel-last-child\" data-index=\"3\" ><div class=\"orion default panel-widget-style panel-widget-style-for-150-1-1-0\" ><div\n\t\t\t\n\t\t\tclass=\"so-widget-orion_cf7_w so-widget-orion_cf7_w-base\"\n\t\t\t\n\t\t>\n\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f6-o1\" lang=\"en-GB\" dir=\"ltr\" data-wpcf7-id=\"6\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/index.php\/wp-json\/wp\/v2\/pages\/150#wpcf7-f6-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.0.6\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_GB\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<p><label> Votre nom<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span> <\/label>\n<\/p>\n<p><label> Votre e-mail<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span> <\/label>\n<\/p>\n<p><label> Objet<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-subject\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" \/><\/span> <\/label>\n<\/p>\n<p><label> Votre message<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" name=\"your-message\"><\/textarea><\/span> <\/label>\n<\/p>\n<p><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"Envoyer\" \/>\n<\/p><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Contactez-Nous! Pour toute demande ou information, n&rsquo;h\u00e9sitez pas \u00e0 nous contacter. Nous sommes \u00e0 votre service pour toutes vos questions relatives \u00e0 la gestion des d\u00e9chets<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-150","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/pages\/150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/comments?post=150"}],"version-history":[{"count":16,"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/pages\/150\/revisions"}],"predecessor-version":[{"id":1279,"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/pages\/150\/revisions\/1279"}],"wp:attachment":[{"href":"https:\/\/greenmar.ma\/index.php\/wp-json\/wp\/v2\/media?parent=150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}