    <link rel="stylesheet" media="screen" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" />

    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <script>
      'use strict';
      //$.noConflict();
      jQuery(document).ready(function ($) {
        function getField(id) {
          var el = jQuery('#' + id + '-picker');
          return el.length ? el : null;
        }

        function pickerSetup(id, date) {
          var el = getField(id);
          //console.log("sdsdsd1");
           //console.log(el);
          if (el !== null) {
            var checkin = id === 'checkin';
            el.datepicker({
              altField: el.get(0).form[id],
              altFormat: 'dd-mm-yy',
              dateFormat: 'dd-mm-yy',
              onSelect: function () {
                if (checkin && getField('checkout') !== null) {
                  var constraint = new Date(el.datepicker('getDate'));
                  constraint.setDate(constraint.getDate() + 1);
                  getField('checkout').datepicker('option', 'minDate', constraint);
                }
              },
              numberOfMonths: 2,
              mandatory: true,
              firstDay: 1,
              minDate: date,
              maxDate: '+2y',
            });
            
            el.datepicker('setDate', date);
          }
        }

        pickerSetup('checkin', '+1');
        pickerSetup('checkout', '+2');
        $('.fa.fa-calendar').on('click', function() {
    $('#checkin-picker').focus();
  })
      });
    </script>
    
    <!--
END COPY
-->
    <link rel="stylesheet" media="screen" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css" />

    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <script>
      'use strict';
      //$.noConflict();
      jQuery(document).ready(function ($) {
        function getField(id) {
          var el = jQuery('#' + id + '-picker');
          return el.length ? el : null;
        }

        function pickerSetup(id, date) {
          var el = getField(id);
          //console.log("sdsdsd1");
           //console.log(el);
          if (el !== null) {
            var checkin = id === 'checkin';
            el.datepicker({
              altField: el.get(0).form[id],
              altFormat: 'dd-mm-yy',
              dateFormat: 'dd-mm-yy',
              onSelect: function () {
                if (checkin && getField('checkout') !== null) {
                  var constraint = new Date(el.datepicker('getDate'));
                  constraint.setDate(constraint.getDate() + 1);
                  getField('checkout').datepicker('option', 'minDate', constraint);
                }
              },
              numberOfMonths: 2,
              mandatory: true,
              firstDay: 1,
              minDate: date,
              maxDate: '+2y',
            });
            
            el.datepicker('setDate', date);
          }
        }

        pickerSetup('checkin', '+1');
        pickerSetup('checkout', '+2');
        $('.fa.fa-calendar').on('click', function() {
    $('#checkin-picker').focus();
  })
      });
    </script>
    <!--
END COPY
-->
<div id='ds_search_box' >
<div id='ds_search_box1'> 
<div class="row">

<!--<form action="https://vangelishotel.reserve-online.net/" method="post" target="_blank">-->

<script src="https://momentjs.com/downloads/moment.js"></script>
<form action="https://napamermaidhotel.reserve-online.net/" method="post" target="_blank" id='pix_form' name='pix_form'>
	<input type="hidden" name="lang" value="en_GB">
<!--<div class="col-md-2">
	<label for="checkin">Check-in</label>
	<input id="checkin-picker" name="checkin" size="12" maxlength="10" placeholder="dd/mm/yyyy" value="19/04/2026" readonly>
	<i class="fa fa-calendar"></i>
</div>
<div class="col-md-2">
	<label for="nights">Staying for</label>
	<select id="nights" name="nights">
		<option value="1" selected="selected">1 night</option>
		<option value="2">2 nights</option>
		<option value="3">3 nights</option>
		<option value="4">4 nights</option>
		<option value="5">5 nights</option>
		<option value="6">6 nights</option>
		<option value="7">7 nights</option>
	</select>
</div>
-->
<div class="col-md-4">
<div class="col-md-6">
	<label for="checkin">Check-in</label>
	<input id="checkin-picker" name="checkin" size="12" maxlength="10" placeholder="dd/mm/yyyy" value="19/04/2026" readonly>
	<i class="fa fa-calendar"></i>
</div>
<div class="col-md-6">
	<label for="checkout-picker">Check-out</label>
    <input type="text" name="checkout" size="12" maxlength="10" id="checkout-picker" placeholder="dd/mm/yyyy" readonly/>
    <i class="fa fa-calendar"></i>
</div>
</div>
<div class="col-md-2">
	<label for="rooms">Rooms</label>
	<select id="rooms" name="rooms">
		<option value="1" selected="selected">1 room</option>
		<option value="2">2 rooms</option>
		<option value="3">3 rooms</option>
		<option value="4">4 rooms</option>
	</select>
</div>
<div class="col-md-2">
	<label for="adults">Adults</label>
	<select id="adults" name="adults">
		<option value="1">1 adult</option>
		<option value="2" selected="selected">2 adults</option>
		<option value="3">3 adults</option>
		<option value="4">4 adults</option>
	</select>
</div>
<div class="col-md-2">
	<label for="children">Children</label>
	<select id="children" name="children">
		<option value="0" selected="selected">no children</option>
		<option value="1">1 child</option>
		<option value="2">2 children</option>
		<option value="3">3 children</option>
	</select>
</div>
<div class="col-md-2">

	<!--<button type="submit" class="prime">Room Search</button>-->
	<button type='button' class="prime" name='pix_sub' id='pix_sub'>Book Now</button>
</div>
</form>
</div>
</div>
</div>
<script>
$ = jQuery;
$(document).ready(function () {
       jQuery("#pix_sub").on('click',function () {
       var date_c = jQuery("#checkin-picker").val();
       var tmp = date_c.split("-");
       var check_in = tmp[2]+'-'+tmp[1]+'-'+tmp[0];
       var objcheck_in = new Date(check_in);
       var hd1 = check_in;
      var hr =  jQuery("#rooms").val();
      var adult =  parseInt(jQuery("#adults").val());
      var child =  parseInt(jQuery("#children").val());
      var traveler = adult+child;
      var date_chk = jQuery("#checkout-picker").val();
       var tmp_chk = date_chk.split("-");
       var check_out = tmp_chk[2]+'-'+tmp_chk[1]+'-'+tmp_chk[0];
       var hd2 = check_out;
      var hc1 = 'Protaras';
      var hs1 = 'Paralimni'; 
      var params = {
hd1: hd1 , /* Check In Date. Format yyyy-mm-dd. Ex: 2015-02-14 */
hd2: hd2, /* Check Out Date. Format yyyy-mm-dd. Ex: 2015-02-14 */
hc1: hc1, /* Destination City */
hs1: "", /* Destination State or Region */
hr: hr, /* Number of Rooms */
t: traveler /* Number of Travelers */
};

/* Please do not modify the below code. */
try{params = Object.assign({}, sjrn_params, params);}catch(e){}
var cid = [];
var paramsArr = [];
var cidParams = [];
var pl = document.createElement('iframe');
var defaultParams = {"vid":"hot","et":"hpr"};
for(key in defaultParams) { params[key] = defaultParams[key]; };
for(key in cidParams) { cid.push(params[cidParams[key]]); };
params.cid = cid.join('|');
for(key in params) { paramsArr.push(key + '=' + encodeURIComponent(params[key])) };
pl.type = 'text/html';
pl.setAttribute('style','height:0; width: 0; display:none;');
pl.async = true;
//pl.src = 'https://static.sojern.com/cip/w/s?id=350231&f_v=v6_js&p_v=1&' + paramsArr.join('&');
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(pl);
 jQuery('#pix_form').submit(); 
          
      });
     
});
</script>
<style>
#ds_search_box{
padding:0px !important;
}
#ds_search_box {
width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  background: rgba(255,255,255,0.5) !important;
  margin-bottom: 35px !important;
}
#ds_search_box1 {
  max-width:920px;
  margin: 0 auto;
  padding:15px;
 
}
#ds_search_box1 input {
  background: #fff;
    background-color: rgb(255, 255, 255);
  display: table;
  width: 100%;
  position: relative;
}
#ds_search_box1 input, #ds_search_box select {
  height: 35px;
  border-radius: 2px;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: 0 none;
  background-color: #fff !important;
}
#ds_search_box1 input {
  background: #fff;
    background-color: rgb(255, 255, 255);
  display: table;
  width: 100%;
  position: relative;
}
#ds_search_box1 input, #ds_search_box1 select {
  height: 35px;
  border-radius: 2px;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: 0 none;
  background-color: #fff !important;
}
#ds_search_box1 label {
  color: #fff;
}	
#ds_search_box1 .prime{background-color:rgb(161, 112, 118) !important;
margin-top: 25px !important;
color:#fff;
padding: 5px 10px !important;
border: 1px solid rgb(161, 112, 118);}
.ui-datepicker .ui-datepicker-current-day a {
  color: #000;
}
.ui-datepicker .ui-datepicker-calendar td{padding:0px;}
#ds_search_box1 .fa-calendar {
  background: #e5e5e5 none repeat scroll 0 0;
  color: #777;
  cursor: pointer;
  padding: 10px 12px;
  position: absolute;
  right: 10px;
  top: 26px;
  font-family: FontAwesome !important;
}
</style>{"id":8356,"date":"2020-04-07T12:38:11","date_gmt":"2020-04-07T12:38:11","guid":{"rendered":"http:\/\/napamermaidhotel.com\/?page_id=8356"},"modified":"2025-07-31T16:37:01","modified_gmt":"2025-07-31T13:07:01","slug":"corporate-social-responsibility","status":"publish","type":"page","link":"https:\/\/napamermaidhotel.com\/ru\/corporate-social-responsibility\/","title":{"rendered":"Corporate Social Responsibility"},"content":{"rendered":"<p class=\"qtranxs-available-languages-message qtranxs-available-languages-message-ru\">\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u044d\u0442\u043e\u0442 \u0442\u0435\u0445\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0442\u043e\u043b\u044c\u043a\u043e \u0432 &ldquo;<a href=\"https:\/\/napamermaidhotel.com\/en\/wp-json\/wp\/v2\/pages\/8356\" class=\"qtranxs-available-language-link qtranxs-available-language-link-en\" title=\"English\">\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439<\/a>&rdquo;. For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language.<\/p><p>[vc_row full_width=&#187;stretch_row_content_no_spaces&#187;][vc_column][vc_single_image image=&#187;8602&#8243;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#187;1\/2&#8243;][vc_column_text][vc_row][vc_column][vc_column_text]<\/p>\n<h3 style=\"text-align: center;\"><strong>Corporate Social Responsibility<\/strong><\/h3>\n<p style=\"text-align: center;\">Napa Mermaid Hotel &amp; Suites is taking responsibility for its impact on the environment and the local community by improving its performance towards a sustainable future. The hotel\u2019s corporate culture is both, customer-and-people-oriented. Therefore, we engage in activities that demonstr ate our Corporate Social Responsibility on various levels. By operating our hotel responsibly, implementing legislation and respecting our stakeholders, we create strong ties with the local society and build a respectful reputation.<\/p>\n<p>Our most recent achievement is the Travelife Gold Award (a sustainability system focusing on recycling, energy conservation, staff equality and legal compliance).<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-8366 aligncenter\" src=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2023\/06\/awards-mermaid.png\" alt=\"\" width=\"363\" height=\"86\" \/>[\/vc_column_text][\/vc_column][vc_column width=&#187;1\/2&#8243; css=&#187;.vc_custom_1586261962448{padding-top: 20px !important;}&#187;][vc_images_carousel images=&#187;8363,9441,9442,9443&#8243; img_size=&#187;full&#187;][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row_content&#187; css=&#187;.vc_custom_1586165739469{background-color: #f4f4f4 !important;}&#187;][vc_column width=&#187;1\/2&#8243; css=&#187;.vc_custom_1586253300807{padding-left: 120px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1753967218071{padding-left: 30px !important;}&#187;]<\/p>\n<h3 style=\"text-align: left;\"><strong>Environment<\/strong><\/h3>\n<p><a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/07\/Environmental-Sustainability-Report-2023-2024-1.pdf\" target=\"_blank\" rel=\"noopener\">Environmental &amp; Sustainability Report 2023-24<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/06\/Business-Environmental-Analysis-2024.pptx\" target=\"_blank\" rel=\"noopener\">Business Environmental Analysis 2024.pptx<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2025\/06\/Business-Environmental-Analysis-2023.pptx\" target=\"_blank\" rel=\"noopener\">Business Environmental Analysis 2023.pptx<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2023\/07\/Napa-Mermaid-Sustainability-Report-2021-2022-07.2023.pdf\">Sustainability Report 2021-2022<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/08\/Environmental-Sustainability-Report-2019-2020.ppt\">Environmental &amp; Sustainability Report 2019-2020<\/a><br \/>\n<a href=\"http:\/\/napamermaidhotel.com\/wp-content\/uploads\/2020\/04\/napa-mermaid-report-2017-2018.pdf\">Environmental &amp; Sustainability Report 2018<\/a><br \/>\n<a href=\"http:\/\/napamermaidhotel.com\/wp-content\/uploads\/2020\/04\/napa-mermaid-sustainability-report-2015-2016.pdf\">Environmental &amp; Sustainability Report 2015 &#8212; 2016<\/a><br \/>\n<a href=\"http:\/\/napamermaidhotel.com\/wp-content\/uploads\/2020\/04\/Environmental_Sustainability_Report-1.pptx\">Environmental &amp; Sustainability Report 2014 &#8212; 2015<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/The-fauna-of-Cyprus.pdf\">The Fauna of Cyprus<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/Reducing-and-Managing-Food-Waste.pdf\">Reducing and Managing Food Waste<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/protection-of-the-cultural-and-natural-heritage-poster.pdf\">Protection of the cultural and natural heritage<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/Lets-Recycle-together.pdf\">Let&#8217;s Recycle together<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/guests-actions.pdf\">Guests actions<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/Environmental-Guide.pdf\">Environmental Guide<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/\u039f\u03b4\u03b7\u03b3\u03cc\u03c2-\u03b3\u03b9\u03b1-\u03bc\u03b5\u03af\u03c9\u03c3\u03b7-\u03c4\u03c9\u03bd-\u03c0\u03bb\u03b1\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd.pdf\">\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c0\u03bb\u03b1\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd<\/a><br \/>\n<a href=\"https:\/\/napamermaidhotel.com\/wp-content\/uploads\/2021\/07\/\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2-\u03b3\u03b9\u03b1-\u0392\u03b9\u03bf\u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03cc\u03c4\u03b7\u03c4\u03b1.pdf\">\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u0392\u03b9\u03bf\u03c0\u03bf\u03b9\u03ba\u03b9\u03bb\u03cc\u03c4\u03b7\u03c4\u03b1\u00a0<\/a><\/p>\n<p>Napa Mermaid Hotel &amp; Suites is committed to a long-term sustainable approach. Whilst striving to enhance the quality of our guests\u2019 stay, we endeavour to improve the hotel\u2019s impact on the environment and local community. This is achievable by implementing environmental practices on all levels of the hotel\u2019s operation.<\/p>\n<p>Moreover, our hotel organizes events such as beach cleaning and tree planting on an annual basis with the help of our personnel and guests, but also participates in various joint events like the <strong>Let\u2018s do it Cyprus<\/strong> cleaning campaign, <strong>Zero Waste<\/strong> beach campaign,<strong> Beyond Plastic Med Initiative.<\/strong><\/p>\n<p>In May 2017, Napa Mermaid Hotel &amp; Senator Hotel Apts joined forces and organized the cleaning of the <strong>Ayia Napa International Sculpture Park.<\/strong><\/p>\n<p>On 5 June 2019 (International Environment Day), we organized an educational visit to <strong>Cape Greco Environmental Information and Education Centre<\/strong> for our guests. During the visit, they had the opportunity to learn about the heritage of the marine life and environment of our area and view the exhibitions and aquariums.[\/vc_column_text][\/vc_column][vc_column width=&#187;1\/2&#8243;][vc_images_carousel images=&#187;8391,8868,8873,9302,9301,9305,9307,9308&#8243; img_size=&#187;full&#187;][vc_column_text]<iframe loading=\"lazy\" title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/AuaeKy4Fu8U\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#187;1\/2&#8243; css=&#187;.vc_custom_1586253490102{padding-left: 40px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1686903973020{padding-left: 20px !important;}&#187;]<\/p>\n<h3><strong>Charity Work\u00a0<\/strong><\/h3>\n<p>The management and personnel regularly engage in charity bazaars for local institutions, blood donations and fund-raising activities. Some of the major fundraising campaigns organized were to support: the Pancyprian event of Hope for Children &#8212; Stand by Greece, which aimed to reconstruct public childcare facilities and schools destroyed by the deadly forest fires in Rafina\/Greece in July 2018; the Cyprus Association of Cancer Patients and Friends (PASYKAF); children with cancer; people with leukemia.<\/p>\n<p>The hotel also makes in kind donations (food, furniture, linen, laundry services) to local charity foundations, churches, army forces and families in need. Furthermore, it hosts educational visits from local schools and institutions.<\/p>\n<p>In addition, it collaborates and purchases products and services from local suppliers.[\/vc_column_text][\/vc_column][vc_column width=&#187;1\/2&#8243;][vc_images_carousel images=&#187;8378,8875,8874,8872,8871,8870,9310,9311,9313,9318,9319,9320&#8243; img_size=&#187;full&#187;][\/vc_column][\/vc_row]<\/p>","protected":false},"excerpt":{"rendered":"<p>\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u044d\u0442\u043e\u0442 \u0442\u0435\u0445\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0442\u043e\u043b\u044c\u043a\u043e \u0432 &ldquo;\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0439 \u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439&rdquo;. For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language.[vc_row full_width=&#187;stretch_row_content_no_spaces&#187;][vc_column][vc_single_image image=&#187;8602&#8243;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#187;1\/2&#8243;][vc_column_text][vc_row][vc_column][vc_column_text] Corporate Social Responsibility Napa Mermaid Hotel &amp; Suites is taking responsibility for its impact on the environment and the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/pages\/8356"}],"collection":[{"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/comments?post=8356"}],"version-history":[{"count":55,"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/pages\/8356\/revisions"}],"predecessor-version":[{"id":9453,"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/pages\/8356\/revisions\/9453"}],"wp:attachment":[{"href":"https:\/\/napamermaidhotel.com\/ru\/wp-json\/wp\/v2\/media?parent=8356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}