<div id='ds_search_box' style='padding-top:25px;'></div>    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  
    <link type="text/css" rel="stylesheet" href="/reserve-stay/css/ply.css"/>
    
    <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"/>
<!--<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>-->
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"
			  integrity="sha256-xNjb53/rY+WmG+4L6tTl9m6PpqknWZvRt0rO1SRnJzw="
			  crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="/reserve-stay/js/ply.min.js" type="text/javascript"></script>
<script src="/reserve-stay/js/ctws_front.js" type="text/javascript"></script>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css">
 <!-- <script src="https://code.jquery.com/jquery-1.12.4.js"></script>-->
  <!--<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>-->
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
			  integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
			  crossorigin="anonymous"></script>
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">-->
   <link type="text/css" rel="stylesheet" href="/reserve-stay/css/dsform.css"/>
   <script type="text/javascript" src="https://cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script>
   <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/daterangepicker/daterangepicker.css" />

   <style>.ctws-guest-popup .row {
    margin: 0px !important;
}</style>


<!-- new javascript-->
<script>
var $ = jQuery;
var appendDone =0; 
var todayDate = '2026-04-17';
function genratedateRangeCal(){
$.ajax({
                    url : "/reserve-stay/data_json.php?new=2",
                    type : "POST",
                    async:false,
                    //data : data,
                    dataType : 'json',
                    headers: {
                'X-Requested-With': 'XMLHttpRequest'
            },
                   success : function(result){
                   sale_room = JSON.parse(result['Salroom']);
                   lst_date = JSON.parse(result['last_date']);
                   sale_price = JSON.parse(result['SaleroomPrice']);
                   stop_room = JSON.parse(result['stoproomsal']);
                   fast_date = JSON.parse(result['fastfilldate']);
                   roomFill = JSON.parse(result['roomFill']);
                   //Proom_date = JSON.parse(result['price_date']);
                   hoffer_date = JSON.parse(result['RoomOfferDate']);
                   //console.log(result['Salroom']);
                  //alert(hoffer_date);
                  },
                  complete : function(){
                  	genrateDate();
                  	//setdateStartDate();
                  },
                 error : function () {
                        alert("error");
                   }
                });
                }
                function isInvalidDate(date, log) {
                 var flagDate ='';
					 flagDate =(stop_room.indexOf(date) != -1)?true:false;
					 console.log(this);
					 if(flagDate && stop_room.length>0){
					 	return true;
					 }else{
					 	flagDate =  (sale_room.indexOf(date) != -1)?true:false;
					 	
					 	if(!flagDate)
					 	return true;
					 }
				 //return (["1/5/2023", "2/5/2023", "3/5/2023"].indexOf(date) != -1)?true:false;
			   }
			   function setdateStartDate(){
			   		dateStr = sale_room[0].split('/');
			   		date = [dateStr[1]+"/"+dateStr[0]+"/"+dateStr[2]];
			   		moment1 =moment(new Date(todayDate));
			   		moment2 =moment(new Date(date));
			   		var flagCheck;
			   		
			   		flagCheck = moment1.isSameOrAfter(moment2);
			   		
			   		if(flagCheck){
			   			return moment1.format('DD-MM-YYYY');
			   		}else{
			   			return moment2.format('DD-MM-YYYY');
			   		}
			   		//moment1.isSameOrAfter(moment2);
			   }
			   function setdaeEndDate(){
			   		var setDate = setdateStartDate();
			   		newEndmoment1 =moment(setDate, "DD-MM-YYYY").add(6, 'days');
			   		moment1 =moment(new Date(newEndmoment1));
			   		moment2 =moment(new Date(lst_date));
			   		var flagCheck;
			   		flagCheck = moment1.isSameOrAfter(moment2);
			   		if(flagCheck)
			   		return moment(new Date(lst_date), "DD-MM-YYYY");
			   		else
			   		return moment(setDate, "DD-MM-YYYY").add(6, 'days');
			   }
                function genrateDate(){
                	$('input[name="daterange"]').daterangepicker({
                	"locale": {
        			"format": "DD/MM/YYYY"},
					 opens: 'center',
					 "showDropdowns": true,
					 minDate:setdateStartDate(),
					 maxDate:moment(new Date(lst_date)).format('DD-MM-YYYY'),
					 startDate:setdateStartDate(),
					 endDate:setdaeEndDate(),
					 autoApply:true,
					 isCustomDate: function(ele){
					 var currDate = moment(ele._d).format('D/M/YYYY');
					 var flagDate ='';
					 flagDate =(stop_room.indexOf(currDate) != -1)?true:false;
					
					 if(flagDate && stop_room.length>0){
					 	return "";
					 }else{
					 	flagDate =  (sale_room.indexOf(currDate) != -1)?true:false;
					 	
					 	if(!flagDate)
					 	return "periodNA";
					 }
					 },
					 isInvalidDate: function(ele) {
					 var currDate = moment(ele._d).format('D/M/YYYY');
					 var flagDate ='';
					 flagDate =(stop_room.indexOf(currDate) != -1)?true:false;
					 
					 if(flagDate && stop_room.length>0){
					 	return true;
					 }else{
					 	flagDate =  (sale_room.indexOf(currDate) != -1)?true:false;
					 	
					 	if(!flagDate)
					 	return true;
					 }
					 //return (["1/5/2023", "2/5/2023", "3/5/2023"].indexOf(currDate) != -1)?true:false;
					 //return (sale_room.indexOf(currDate) != -1)?false:true;
				 }
				   }, function(start, end, label) {
				   var temp = new Date(start);
				   var endDate = new Date(end);
				   var invalid = false;
				   while (temp.getTime() < endDate.getTime()) {
					 if (isInvalidDate(moment(temp).format('D/M/YYYY'), true)) {
					   invalid = true;
					 }
					 temp.setDate(temp.getDate() + 1);
				   }
	
				   if (invalid) {
					 alert('You have selected invalid date.');
					 this.setStartDate(setdateStartDate());
					 this.setEndDate(setdaeEndDate());
					 
				   }
				   $("#date1d").val(start.format('DD'));
				   $("#date1m").val(start.format('YYYYMM'));
				   $("#datef").val(start.format('DD/MM/YYYY'));
				   $("#date2d").val(end.format('DD'));
				   $("#date2m").val(end.format('YYYYMM'));
				   $("#datef1").val(end.format('DD/MM/YYYY'));
				    console.log("A new date selection was made: " + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD'));
				   });
				   $('input[name="daterange"]').on('show.daterangepicker', function(ev, picker) {
				   if(appendDone==0){
				   $('<div class="note_div"><div style="float: left; width: 100%; margin: 10px;font-size:10px"><div style="float:left;">Note:&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#27ae60;margin-top:2px;"></div><div style="float:left;">&nbsp;Available&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#ff0000;margin-top:2px;"></div><div style="float:left;">&nbsp;Not Available &nbsp;</div></div></div>').insertAfter(".drp-buttons");
					appendDone=1;
					}
				   });
				   
                }



$('#dataRangeCtws').on('show.daterangepicker', function () {
  setTimeout(() => {
    $('.daterangepicker td.off.ends').each(function () {
      $(this)
        .css({
          'visibility': 'hidden',
          'pointer-events': 'none'
        })
        .off(); // Remove any attached events
    });
  }, 10);
});
  </script>
  <style>
/* Disable interaction on "off" (trailing) dates */
/*.daterangepicker td.off {
  pointer-events: none !important;
  opacity: 0.3;
  background: none !important;
  cursor: not-allowed !important;
}*/
.daterangepicker td.off.ends {
  visibility: hidden !important;
  pointer-events: none !important;
}
.daterangepicker td.not-current-month {
  background-color: transparent !important;
}
</style>
<style>
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{border-radius: 0px !important;border:1px solid #fff !important;}
.daterangepicker .available {background: #27ae60;color: #fff;}
[class="off disabled"]  {background: #ff0000 !important;color: #fff !important;}
.daterangepicker .next.available,.daterangepicker .prev.available {background: #fff;}
</style>
<!-- End -->




    <script>
    $ = jQuery;
     jQuery(document).ready(function(){
    
        jQuery.ajax({
        url: '/reserve-stay/hotel2/ds_search_form_left_other.php',
        dataType: 'html',
        async: false,
        error: function(){
            alert("Error In Loading");
        },
        success: function(data){
            jQuery('#ds_search_box').html(data);
        },
        complete:function(){
        	genratedateRangeCal();
        }
    });
        });
    
    function frontajaxFormSubmit(paramlist_form){
    if(paramlist_form=="bookform" ){
        if($('#datef').val()=='Check In Dummy Don\'t use'){
            Ply.dialog("alert",err_checkin);
            return false;
        }
        if($('#datef1').val()=='Check Out Dummy Don\'t use'){
            Ply.dialog("alert",err_checkout);
            return false;
        }
        if($('#nights').val()==0){
            Ply.dialog("alert",err_nights);
            return false;
        }
        if($('#rooms').val()==0){
            Ply.dialog("alert",err_rooms);
            return false;
        }
        var wdate = $('#datef').val();
        var wdate1= $('#datef1').val();
        var dateFirst = wdate.split('/');
        var dateSecond = wdate1.split('/');
        var firstdate1 = dateFirst[2]+','+dateFirst[1]+','+dateFirst[0];
        var firstdate2 = dateSecond[2]+','+dateSecond[1]+','+dateSecond[0];
        var oneDay = 24*60*60*1000; // hours*minutes*seconds*milliseconds   
        var firstDate = new Date(firstdate1);
        var secondDate = new Date(firstdate2);
        var diffDays = Math.round((secondDate.getTime()-firstDate.getTime())/(oneDay));

        if ((diffDays)<=0){
            Ply.dialog("alert",err_departureOverArrival);
            return false;
        }
        for(var i=1;i<=$('#rooms').val();i++){
            //if($('#adults'+i).val()==0){
            if($('[name="room_adult['+i+']"]').val()==0){
                Ply.dialog("alert",err_adultForRoom+i+" !!!");
                return false;
            }
        }
//      $('html, body').animate({scrollTop:$('#right_column').offset()}, 'slow');
    }
    //var params = $('#'+paramlist_form).serialize();
    //$(".dropdown-toggle").removeClass("close-sh");
    //$("#search-panel").hide();
  //openPagePost(params);
  //if(paramlist_form=="bookform" || paramlist_form=="hotel_sort" || paramlist_form=="book_frm"){
    //ajaxSidebar();
  //}
  $("#"+paramlist_form).submit();
}
    </script>
  
<script>
$('.ctws-guest , .ctws-done').click(function(e){

    $('.ctws-guest-popup').toggleClass('ctws-popup-open' , function(){$(this).focus();});
    
    });

     function appendsomething(){
            var parElem = $("#ui-datepicker-div");
    //check if your div exists, append if not
    if( !parElem.find(".note_div").length ) {
        parElem.append('<div class="note_div"><div style="float: left; width: 100%; margin: 10px;font-size:10px"><div style="float:left;">Note:&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#27ae60;margin-top:6px;"></div><div style="float:left;">&nbsp;Available&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#FFC300;margin-top:6px;"></div><div style="float:left;">&nbsp;Offers&nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#ff0000;margin-top:6px;"></div><div style="float:left;">&nbsp;Not Available &nbsp;</div><div style="float:left;height:12px;width:12px;background-color:#eb008c;margin-top:6px;"></div><div style="float:left;">&nbsp;Filling Fast</div></div></div>');
    }
          
        }
  // new code end
</script>
    {"id":293,"date":"2017-10-11T06:53:41","date_gmt":"2017-10-11T06:53:41","guid":{"rendered":"https:\/\/www.wordpresstheme.net\/developer\/radiantthemewedding\/?page_id=5"},"modified":"2025-04-04T11:18:51","modified_gmt":"2025-04-04T07:48:51","slug":"home","status":"publish","type":"page","link":"https:\/\/alvahotel.com\/ru\/","title":{"rendered":"Home"},"content":{"rendered":"<p>[vc_row full_width=&#187;stretch_row_content_no_spaces&#187; css=&#187;.vc_custom_1509517411682{margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187;][vc_column css=&#187;.vc_custom_1508395818862{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1584355490979{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187;]\n\t\t\t<!-- START Slider 2 REVOLUTION SLIDER 6.1.3 --><p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t<rs-module-wrap id=\"rev_slider_4_2_wrapper\" data-source=\"gallery\" style=\"background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\">\n\t\t\t\t<rs-module id=\"rev_slider_4_2\" style=\"display:none;\" data-version=\"6.1.3\">\n\t\t\t\t\t<rs-slides>\n\t\t\t\t\t\t<rs-slide data-key=\"rs-7\" data-title=\"Slide\" data-anim=\"ei:d;eo:d;s:1000;r:0;t:fade;sl:0;\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"\/\/alvahotel.com\/wp-content\/uploads\/2025\/03\/pexels-olliecraig1-10067363-scaled.jpg\" title=\"pexels-olliecraig1-10067363\" width=\"2560\" height=\"1705\" class=\"rev-slidebg\" data-no-retina>\n<!--\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-4-slide-7-layer-1\" \n\t\t\t\t\t\t\t\tdata-type=\"text\"\n\t\t\t\t\t\t\t\tdata-color=\"#fff\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:c;y:c;\"\n\t\t\t\t\t\t\t\tdata-text=\"w:normal;s:35;l:45;ls:2;fw:300;\"\n\t\t\t\t\t\t\t\tdata-dim=\"minh:0px;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;st:w;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:5;font-family:Raleway;\"\n\t\t\t\t\t\t\t>JUST A STONE'S THROW AWAY FROM <br \/>\nTHE WORLD-FAMOUS FIG TREE BAY! \n\t\t\t\t\t\t\t<\/rs-layer><!--\n-->\t\t\t\t\t\t<\/rs-slide>\n\t\t\t\t\t<\/rs-slides>\n\t\t\t\t\t<rs-progress class=\"rs-bottom\" style=\"visibility: hidden !important;\"><\/rs-progress>\n\t\t\t\t<\/rs-module>\n\t\t\t\t<script type=\"text\/javascript\">\n\t\t\t\t\tsetREVStartSize({c: 'rev_slider_4_2',rl:[1240,1024,778,480],el:[700],gw:[1240],gh:[700],layout:'fullwidth',mh:\"0\"});\n\t\t\t\t\tvar\trevapi4,\n\t\t\t\t\t\ttpj;\n\t\t\t\t\tjQuery(function() {\n\t\t\t\t\t\ttpj = jQuery;\n\t\t\t\t\t\tif(tpj(\"#rev_slider_4_2\").revolution == undefined){\n\t\t\t\t\t\t\trevslider_showDoubleJqueryError(\"#rev_slider_4_2\");\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\trevapi4 = tpj(\"#rev_slider_4_2\").show().revolution({\n\t\t\t\t\t\t\t\tjsFileLocation:\"\/\/alvahotel.com\/wp-content\/plugins\/revslider\/public\/assets\/js\/\",\n\t\t\t\t\t\t\t\tsliderLayout:\"fullwidth\",\n\t\t\t\t\t\t\t\tvisibilityLevels:\"1240,1024,778,480\",\n\t\t\t\t\t\t\t\tgridwidth:1240,\n\t\t\t\t\t\t\t\tgridheight:700,\n\t\t\t\t\t\t\t\tminHeight:\"\",\n\t\t\t\t\t\t\t\tspinner:\"spinner0\",\n\t\t\t\t\t\t\t\teditorheight:\"700,768,960,720\",\n\t\t\t\t\t\t\t\tresponsiveLevels:\"1240,1024,778,480\",\n\t\t\t\t\t\t\t\tdisableProgressBar:\"on\",\n\t\t\t\t\t\t\t\tnavigation: {\n\t\t\t\t\t\t\t\t\tonHoverStop:false\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tfallbacks: {\n\t\t\t\t\t\t\t\t\tallowHTML5AutoPlayOnAndroid:true\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t});\n\t\t\t\t<\/script>\n\t\t\t<\/rs-module-wrap>\n\t\t\t<!-- END REVOLUTION SLIDER -->\n<\/p>\n<p>[\/vc_column_text][vc_row_inner][vc_column_inner][vc_empty_space][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row equal_height=&#187;yes&#187; css=&#187;.vc_custom_1583316952790{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 43px !important;padding-left: 0px !important;background-color: #ffffff !important;}&#187; el_class=&#187;tester&#187;][vc_column parallax=&#187;content-moving&#187; css_animation=&#187;none&#187; width=&#187;1\/2&#8243; css=&#187;.vc_custom_1586161841817{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 200px !important;padding-right: 15px !important;padding-bottom: 200px !important;padding-left: 15px !important;background-image: url(http:\/\/alvahotel.com\/wp-content\/uploads\/2020\/04\/Entrance-garden-by-night.jpg?id=7962) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#187; el_class=&#187;ctws-dt&#187;][\/vc_column][vc_column width=&#187;1\/2&#8243; css=&#187;.vc_custom_1584449789873{margin-top: 0px !important;margin-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#187; el_class=&#187;ctws-colm&#187;][vc_custom_heading text=&#187;\u0417\u041d\u0410\u041a\u041e\u041c\u0421\u0422\u0412\u041e&#187; font_container=&#187;tag:p|text_align:left|color:%23000000&#8243; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591254294743{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;p-intro&#187;][vc_custom_heading text=&#187;Napa Mermaid Hotel &amp; Suites&#187; font_container=&#187;tag:h1|font_size:32|text_align:left|color:%23000000&#8243; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591253750007{padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;intro&#187;][vc_row_inner][vc_column_inner el_class=&#187;ctws-bgs&#187; css=&#187;.vc_custom_1584443559595{background-image: url(http:\/\/alvahotel.com\/wp-content\/uploads\/2020\/03\/imgpsh_fullsize_anim.png?id=6775) !important;}&#187;][\/vc_column_inner][\/vc_row_inner][vc_column_text css_animation=&#187;none&#187; css=&#187;.vc_custom_1591253761899{margin-top: 19px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#187; el_class=&#187;para&#187;]\u041e\u0434\u0438\u043d \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u043a\u0440\u0430\u0441\u0438\u0432\u044b\u0445 \u043e\u0442\u0435\u043b\u0435\u0439 \u0432 \u0410\u0439\u044f-\u041d\u0430\u043f\u0435, \u043c\u043d\u043e\u0433\u043e\u0440\u0430\u0437\u043e\u0432\u043e \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u043d\u044b\u0439 Napa Mermaid Hotel &amp; Suites \u0432 \u0410\u0439\u044f-\u041d\u0430\u043f\u0435 \u0441 \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438 \u0438 \u043e\u0431\u044a\u0435\u043a\u0442\u0430\u043c\u0438 \u0434\u0435\u043b\u044e\u043a\u0441 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432 \u0441\u0430\u043c\u043e\u043c \u043f\u0440\u0438\u0432\u0438\u043b\u0435\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u043a\u043e\u0441\u043c\u043e\u043f\u043e\u043b\u0438\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043a\u0443\u0440\u043e\u0440\u0442\u0430 \u0410\u0439\u044f-\u041d\u0430\u043f\u0430.<\/p>\n<p>\u0415\u0433\u043e \u043f\u0440\u0435\u0432\u043e\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043e\u0442\u0434\u044b\u0445\u0430\u044e\u0449\u0438\u043c \u0431\u044b\u0442\u044c \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0438\u043d\u0443\u0442\u0430\u0445 \u043e\u0442 \u0446\u0435\u043d\u0442\u0440\u0430 \u043a\u0443\u0440\u043e\u0440\u0442\u0430 \u0438 \u0432 \u0442\u043e \u0436\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u044f\u043c\u043e \u043d\u0430\u043f\u0440\u043e\u0442\u0438\u0432 \u0431\u0435\u0437\u043c\u044f\u0442\u0435\u0436\u043d\u044b\u0445 \u043a\u0440\u0438\u0441\u0442\u0430\u043b\u044c\u043d\u043e \u0447\u0438\u0441\u0442\u044b\u0445 \u0432\u043e\u0434 \u0438 \u043f\u0435\u0441\u0447\u0430\u043d\u043e\u0433\u043e \u043f\u043b\u044f\u0436\u0430 Grecian Bay \u0438 \u0432\u0441\u0435\u0433\u043e \u0432 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u0448\u0430\u0433\u0430\u0445 \u043e\u0442 \u0446\u0435\u043d\u0442\u0440\u0430 \u0433\u043e\u0440\u043e\u0434\u0430.<\/p>\n<p>Napa Mermaid Hotel and Suites \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u0441\u0432\u0430\u0434\u0435\u0431, \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0442\u043e\u0440\u0436\u0435\u0441\u0442, \u043c\u0435\u0434\u043e\u0432\u043e\u0433\u043e \u043c\u0435\u0441\u044f\u0446\u0430 \u0438\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0438\u0434\u0435\u0430\u043b\u0435\u043d \u0434\u043b\u044f \u043e\u0442\u0434\u044b\u0445\u0430 \u0432 \u0410\u0439\u044f-\u041d\u0430\u043f\u0435. \u0418\u043c\u0435\u044f \u0431\u043b\u0438\u0437\u043a\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043a\u043e \u0432\u0441\u0435\u043c \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430\u043c, Napa Mermaid Hotel \u0438 Suites \u0438\u043c\u0435\u0435\u0442 \u0437\u0430\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u0434\u0443\u0445 \u0432\u0438\u0434 \u043d\u0430 \u0421\u0440\u0435\u0434\u0438\u0437\u0435\u043c\u043d\u043e\u0435 \u043c\u043e\u0440\u0435, \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u0443\u044f \u0440\u043e\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u043e\u0441\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u0441\u0442\u0430\u043d\u0443\u0442\u0441\u044f \u0441 \u0432\u0430\u043c\u0438 \u043d\u0430 \u0432\u0441\u044e \u0436\u0438\u0437\u043d\u044c.<\/p>\n<p>[\/vc_column_text][vc_custom_heading text=&#187;\u0411\u0420\u041e\u041d\u0418\u0420\u0423\u0419\u0422\u0415 \u041f\u0420\u042f\u041c\u042b\u0415 \u041f\u0420\u0415\u0418\u041c\u0423\u0429\u0415\u0421\u0422\u0412\u0410&#187; font_container=&#187;tag:p|text_align:left|color:%23000000&#8243; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591254239282{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 15px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;p-intro&#187;][vc_column_text]<i class=\"fas fa-coffee\"><\/i> \u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0439 \u0437\u0430\u0432\u0442\u0440\u0430\u043a<br \/>\n<i class=\"fas fa-concierge-bell\"><\/i> \u0413\u0430\u0440\u0430\u043d\u0442\u0438\u044f \u043b\u0443\u0447\u0448\u0435\u0439 \u0446\u0435\u043d\u044b<br \/>\n<i class=\"fas fa-user-tag\"><\/i> \u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0437\u0430 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row_content_no_spaces&#187; css=&#187;.vc_custom_1586332893697{background-color: #000000 !important;}&#187;][vc_column][vc_row_inner css=&#187;.vc_custom_1586158086621{margin-right: 15px !important;margin-left: 140px !important;}&#187;][vc_column_inner]<div class=\"testimonial owl-carousel element-three image-square owl-nav-style-two owl-dot-style-one \"  data-owl-nav=\"true\" data-owl-dots=\"true\" data-owl-loop=\"true\" data-owl-autoplay=\"true\" data-owl-autoplay-timeout=\"6\" data-owl-mobile-items=\"1\" data-owl-tab-items=\"1\" data-owl-desktop-items=\"1\"><div class=\"testimonial-item no-image \" ><div class=\"holder\"><div class=\"pic\"><\/div><div class=\"data\"><h5>Excellent<\/h5><blockquote><p style=\"font-family:Abril Fatface; font-weight:400; font-style:normal; \">This Hotel ticks all the right boxes , location , facilities , service , value for money . I have stayed in Ayia Napa many times over the last 30 years . This is the best Hotel I have stayed in . I have no hesitation in recommending this Hotel<\/p><\/blockquote><h9><\/h9><ul class=\"rating\"><\/ul><\/div><\/div><\/div><div class=\"testimonial-item no-image \" ><div class=\"holder\"><div class=\"pic\"><\/div><div class=\"data\"><h5>Late Summer Holiday<\/h5><blockquote><p style=\"font-family:Abril Fatface; font-weight:400; font-style:normal; \">Beautiful hotel that never fails to disappoint. Fantastic service, wonderful surroundings &amp; everything you can possibly wish for. Continue to visit Napa Mermaid and look forward to our trip early next year when no doubt, it will be just as wonderful<\/p><\/blockquote><h9><\/h9><ul class=\"rating\"><\/ul><\/div><\/div><\/div><div class=\"testimonial-item no-image \" ><div class=\"holder\"><div class=\"pic\"><\/div><div class=\"data\"><h5>Excellent Hotel &#038; Staff<\/h5><blockquote><p style=\"font-family:Abril Fatface; font-weight:400; font-style:normal; \">Napa Mermaid is certainly the best hotel I\u2019ve visited in Ayia Napa. The location is great, the appearance is very modern with a very calm atmosphere. All the staff are so friendly and helpful. Especially the bar staff Andreas, Natalie, Irene &amp; Athena. I will be coming here for many years to come.<\/p><\/blockquote><h9><\/h9><ul class=\"rating\"><\/ul><\/div><\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row&#187; equal_height=&#187;yes&#187; css=&#187;.vc_custom_1584096946382{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 12px !important;padding-bottom: 0px !important;background-color: #ffffff !important;}&#187;][vc_column css_animation=&#187;none&#187; css=&#187;.vc_custom_1514797077877{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#187;][vc_empty_space height=&#187;10px&#187;][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row&#187; el_class=&#187;ctws-maxwidth&#187;][vc_column width=&#187;2\/6&#8243;][vc_custom_heading text=&#187;\u041e\u0421\u041e\u0411\u0415\u041d\u041d\u041e\u0421\u0422\u0418 \u0412\u042b \u041b\u042e\u0411\u0418\u0422\u0415&#187; font_container=&#187;tag:p|font_size:18px|text_align:left|color:%23000000|line_height:1.7px&#187; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591253829947{margin-top: 10px !important;margin-bottom: 25px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;img-crl&#187;][vc_custom_heading text=&#187;\u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d&#187; font_container=&#187;tag:p|font_size:28px|text_align:left|color:%23000000|line_height:20px&#187; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591255516724{margin-top: 10px !important;margin-bottom: 25px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;intro&#187;][vc_btn title=&#187;\u0423\u0427\u0418\u0422\u042c \u0411\u041e\u041b\u042c\u0428\u0415&#187; style=&#187;classic&#187; shape=&#187;square&#187; color=&#187;white&#187; link=&#187;url:http%3A%2F%2Falvahotel.com%2Ffacilities%2F|||&#187;][\/vc_column][vc_column width=&#187;4\/6&#8243;][vc_column_text]<!--jssor-slider-begin 27.5.0,1,nearby-image-partial-visible-slider.slider--><script src=\"\/wp-content\/uploads\/jssor-slider\/jssor.com\/script\/jssor.slider-27.5.0.min.js\"><\/script><script>\nwp_jssor_1_slider_init = function() {\n\nvar wp_jssor_1_options = {$AutoPlay:0,$SlideDuration:300,$SlideEasing:$Jease$.$OutExpo,$PauseOnHover:3,$SlideWidth:645,$SlideSpacing:57,$ArrowNavigatorOptions:{$Class:$JssorArrowNavigator$}};\n\nvar containerElement = document.getElementById(\"wp_jssor_1\");\ncontainerElement.removeAttribute(\"id\");\nwp_jssor_1_slider = new $JssorSlider$(containerElement, wp_jssor_1_options);\n\n\/*responsive code begin*\/\nvar MAX_WIDTH = 1406;\n\nfunction ScaleSlider() {\n    var containerElement = wp_jssor_1_slider.$Elmt.parentNode;\n    var containerWidth = containerElement.clientWidth;\n\n    if (containerWidth) {\n\n        var expectedWidth = Math.min(MAX_WIDTH || containerWidth, containerWidth);\n\n        wp_jssor_1_slider.$ScaleWidth(expectedWidth);\n    }\n    else {\n        window.setTimeout(ScaleSlider, 30);\n    }\n}\n\nScaleSlider();\n\n$Jssor$.$AddEvent(window, \"load\", ScaleSlider);\n$Jssor$.$AddEvent(window, \"resize\", ScaleSlider);\n$Jssor$.$AddEvent(window, \"orientationchange\", ScaleSlider);\n\/*responsive code end*\/\n};\n<\/script><style>\r\n\/* jssor slider loading skin ball-triangle css *\/\r\n.jssorl-008-ball-triangle img {\r\n    animation-name: jssorl-008-ball-triangle;\r\n    animation-duration: 2.4s;\r\n    animation-iteration-count: infinite;\r\n    animation-timing-function: linear;\r\n}\r\n\r\n@keyframes jssorl-008-ball-triangle {\r\n    from {\r\n        transform: rotate(0deg);\r\n    }\r\n\r\n    to {\r\n        transform: rotate(360deg);\r\n    }\r\n}\r\n\r\n.jssora094 {display:block;position:absolute;cursor:pointer;}\r\n.jssora094 .c {fill:none;stroke:#000;stroke-width:400;stroke-miterlimit:10;}\r\n.jssora094 .a {fill:none;stroke:#000;stroke-width:400;stroke-miterlimit:10;}\r\n.jssora094:hover {opacity:.8;}\r\n.jssora094.jssora094dn {opacity:.6;}\r\n.jssora094.jssora094ds {opacity:.3;pointer-events:none;}<\/style><div><div id=\"wp_jssor_1\" class=\"wp_jssor_1\" style=\"position:relative;margin:0 auto;top:0px;left:0px;width:1406px;height:780px;overflow:hidden;visibility:hidden;\"><!-- Loading Screen -->\r\n<div data-u=\"loading\" class=\"jssorl-008-ball-triangle\" style=\"position:absolute;top:0px;left:0px;width:100%;height:100%;text-align:center;\">\r\n    <img decoding=\"async\" src=\"\/wp-content\/uploads\/jssor-slider\/jssor.com\/theme\/svg\/loading\/static-svg\/ball-triangle.svg\" style=\"margin-top:-25px;position:relative;top:50%;width:50px;height:50px;\">\r\n<\/div><div data-u=\"slides\" style=\"cursor:default;position:relative;top:0px;left:0px;width:1406px;height:780px;overflow:hidden;\"><div data-fillmode=\"2\"><img decoding=\"async\" data-u=\"image\" src=\"\/wp-content\/uploads\/2025\/03\/XP-3-scaled.jpg\"><\/div><div><img decoding=\"async\" data-u=\"image\" src=\"\/wp-content\/uploads\/2025\/03\/XP-10-scaled.jpg\"><\/div><div data-fillmode=\"2\"><img decoding=\"async\" data-u=\"image\" src=\"\/wp-content\/uploads\/2025\/03\/One-Bedroom-Balcony-scaled.jpg\"><\/div><\/div><!-- Arrow Navigator -->\r\n<div data-u=\"arrowleft\" class=\"jssora094\" style=\"left: 30px;top: 0px;width: 50px;height: 50px;\" data-autocenter=\"2\" data-scale=\"0.75\" data-scale-left=\"0.75\" data-scale-top=\"0.75\">\r\n    <svg viewbox=\"0 0 16000 16000\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\">\r\n       <circle class=\"c\" cx=\"8000\" cy=\"8000\" r=\"5920\"><\/circle>\r\n       <polyline class=\"a\" points=\"7777.8,6080 5857.8,8000 7777.8,9920 \"><\/polyline>\r\n       <line class=\"a\" x1=\"10142.2\" y1=\"8000\" x2=\"5857.8\" y2=\"8000\"><\/line>\r\n    <\/svg>\r\n<\/div>\r\n<div data-u=\"arrowright\" class=\"jssora094\" style=\"right: 30px;top: 0px;width: 50px;height: 50px;\" data-autocenter=\"2\" data-scale=\"0.75\" data-scale-right=\"0.75\" data-scale-top=\"0.75\">\r\n    <svg viewbox=\"0 0 16000 16000\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\">\r\n        <circle class=\"c\" cx=\"8000\" cy=\"8000\" r=\"5920\"><\/circle>\r\n        <polyline class=\"a\" points=\"8222.2,6080 10142.2,8000 8222.2,9920 \"><\/polyline>\r\n        <line class=\"a\" x1=\"5857.8\" y1=\"8000\" x2=\"10142.2\" y2=\"8000\"><\/line>\r\n    <\/svg>\r\n<\/div><\/div><\/div><script>wp_jssor_1_slider_init();<\/script><!--jssor-slider-end-->\n[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_custom_heading text=&#187;\u041f\u0420\u0415\u0414\u041b\u041e\u0416\u0415\u041d\u0418\u0415&#187; font_container=&#187;tag:p|font_size:18px|text_align:center|color:%23000000|line_height:1.7px&#187; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591253865836{margin-top: 10px !important;margin-bottom: 25px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;img-crl&#187;][vc_custom_heading text=&#187;\u0412\u042b \u041d\u0415 \u041c\u041e\u0416\u0415\u0422\u0415 \u041e\u0422\u041a\u0410\u0417\u0410\u0422\u042c\u0421\u042f&#187; font_container=&#187;tag:p|font_size:45px|text_align:center|color:%23000000|line_height:1.1px&#187; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591253883153{margin-top: 20px !important;margin-bottom: 25px !important;padding-top: 10px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;intro&#187;][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row_content_no_spaces&#187; css=&#187;.vc_custom_1586507935428{padding-top: 30px !important;padding-right: 50px !important;padding-left: 50px !important;}&#187;][vc_column width=&#187;1\/3&#8243;][vc_single_image image=&#187;8501&#8243; img_size=&#187;400X300&#8243; alignment=&#187;center&#187; css=&#187;.vc_custom_1586506931962{padding-left: 50px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1591253904455{padding-left: 50px !important;}&#187;]<\/p>\n<h3 style=\"text-align: center;\"><strong>\u041d\u0435\u043f\u0440\u0435\u0432\u0437\u043e\u0439\u0434\u0435\u043d\u043d\u044b\u0435 \u0432\u0437\u0433\u043b\u044f\u0434\u044b<\/strong><\/h3>\n<p style=\"text-align: center;\">\u041e\u0442\u0435\u043b\u044c Napa Mermaid Hotel and Suites \u0438\u0434\u0435\u0430\u043b\u044c\u043d\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d \u0440\u044f\u0434\u043e\u043c \u0441\u043e \u0432\u0441\u0435\u043c\u0438 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c\u0438 \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430\u043c\u0438. \u0418\u0437 \u043e\u0442\u0435\u043b\u044f \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u0432\u0438\u0434 \u043d\u0430 \u0421\u0440\u0435\u0434\u0438\u0437\u0435\u043c\u043d\u043e\u0435 \u043c\u043e\u0440\u0435.<\/p>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#187;1\/3&#8243;][vc_single_image image=&#187;8497&#8243; img_size=&#187;400X300&#8243; alignment=&#187;center&#187; css=&#187;.vc_custom_1586507530246{padding-left: 50px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1591253933619{padding-left: 50px !important;}&#187;]<\/p>\n<h3 style=\"text-align: center;\"><strong>\u041f\u041e\u041b\u0423\u0427\u0418\u0422\u042c \u043f\u043e\u0431\u0430\u043b\u043e\u0432\u0430\u0442\u044c<\/strong><\/h3>\n<p style=\"text-align: center;\">\u0418\u0437\u0431\u0430\u0432\u044c\u0442\u0435\u0441\u044c \u043e\u0442 \u0441\u0442\u0440\u0435\u0441\u0441\u043e\u0432 \u043f\u043e\u0432\u0441\u0435\u0434\u043d\u0435\u0432\u043d\u043e\u0439 \u0436\u0438\u0437\u043d\u0438 \u0438 \u043f\u0435\u0440\u0435\u043d\u0435\u0441\u0438\u0442\u0435\u0441\u044c \u0432 \u0431\u043e\u043b\u0435\u0435 \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e.<\/p>\n<p>[\/vc_column_text][vc_btn title=&#187;\u041f\u041e\u0421\u041c\u041e\u0422\u0420\u0415\u0422\u042c \u0421\u041f\u0415\u0426\u0418\u0410\u041b\u042c\u041d\u042b\u0415 \u041f\u0420\u0415\u0414\u041b\u041e\u0416\u0415\u041d\u0418\u042f&#187; style=&#187;classic&#187; shape=&#187;square&#187; color=&#187;white&#187; align=&#187;center&#187; link=&#187;url:https%3A%2F%2Fnapamermaidhotel.reserve-online.net%2F|||&#187;][\/vc_column][vc_column width=&#187;1\/3&#8243;][vc_single_image image=&#187;8151&#8243; img_size=&#187;400X300&#8243; alignment=&#187;center&#187; css=&#187;.vc_custom_1586507960743{padding-left: 50px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1591253957264{padding-left: 50px !important;}&#187;]<\/p>\n<h3 style=\"text-align: center;\"><strong>\u041e\u0421\u0422\u0410\u0412\u042c \u0418 \u0421\u041e\u0425\u0420\u0410\u041d\u042f\u0419 <\/strong><\/h3>\n<p style=\"text-align: center;\">\u0417\u0430\u0431\u0440\u043e\u043d\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u043e\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0432 \u043e\u0442\u0435\u043b\u0435 Napa Mermaid Hotel \u0434\u043b\u044f \u043e\u0442\u043f\u0443\u0441\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u0437\u0430\u0431\u0443\u0434\u0435\u0442\u0435. \u041f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 \u043d\u0430\u0448\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0434\u043b\u044f \u0442\u0435\u043a\u0443\u0449\u0438\u0445 \u0441\u0434\u0435\u043b\u043e\u043a.<\/p>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#187;stretch_row_content_no_spaces&#187; css=&#187;.vc_custom_1589877167076{padding-top: 50px !important;padding-right: 50px !important;padding-left: 50px !important;}&#187;][vc_column][vc_custom_heading text=&#187;\u041d\u0410\u0428\u0418 \u041d\u0410\u0413\u0420\u0410\u0414\u042b&#187; font_container=&#187;tag:p|font_size:18px|text_align:center|color:%23000000|line_height:1.7px&#187; use_theme_fonts=&#187;yes&#187; css_animation=&#187;none&#187; css=&#187;.vc_custom_1591254044946{margin-top: 10px !important;margin-bottom: 25px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187; el_class=&#187;img-crl&#187;][vc_images_carousel images=&#187;8682,8683,8688,8685,8686,8689,8684,8687,8690,8691,8692&#8243; img_size=&#187;full&#187; slides_per_view=&#187;5&#8243; autoplay=&#187;yes&#187; hide_pagination_control=&#187;yes&#187; wrap=&#187;yes&#187;][\/vc_column][\/vc_row]<\/p>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#187;stretch_row_content_no_spaces&#187; css=&#187;.vc_custom_1509517411682{margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187;][vc_column css=&#187;.vc_custom_1508395818862{margin-right: 0px !important;margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}&#187;][vc_column_text css=&#187;.vc_custom_1584355490979{margin-top: 0px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#187;] [\/vc_column_text][vc_row_inner][vc_column_inner][vc_empty_space][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row equal_height=&#187;yes&#187; css=&#187;.vc_custom_1583316952790{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 43px !important;padding-left: 0px !important;background-color: #ffffff !important;}&#187; el_class=&#187;tester&#187;][vc_column parallax=&#187;content-moving&#187; css_animation=&#187;none&#187; width=&#187;1\/2&#8243; css=&#187;.vc_custom_1586161841817{margin-top: 0px !important;margin-bottom: [&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:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/pages\/293"}],"collection":[{"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/comments?post=293"}],"version-history":[{"count":209,"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/pages\/293\/revisions"}],"predecessor-version":[{"id":9545,"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/pages\/293\/revisions\/9545"}],"wp:attachment":[{"href":"https:\/\/alvahotel.com\/ru\/wp-json\/wp\/v2\/media?parent=293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}