	<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
	<script type="text/javascript">
	jQuery.noConflict();
   jQuery(document).ready(function() 
   {
		var date_a = document.getElementById('datea');
		var date_b = document.getElementById('dateb');
		var today = new Date();
		var tomorrow = new Date();
		tomorrow.setDate(new Date().getDate()+1);
		
		var dd = today.getDate();
		var mm = today.getMonth()+1; 
		const monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
		var yyyy = today.getFullYear();
		
		
		if(dd<10) 
		{
			dd='0'+dd;
		} 
		if(mm<10) 
		{
			mm='0'+mm;
		} 
		
		var ddb = tomorrow.getDate();
		var mmb = tomorrow.getMonth()+1; 
		var yyyyb = tomorrow.getFullYear();
		if(ddb<10) 
		{
			ddb='0'+ddb;
		} 
		if(mmb<10) 
		{
			mmb='0'+mmb;
		}
		
		date_a.value =  dd+' '+monthNames[today.getMonth()]+' '+yyyy;
		date_b.value =  ddb+' '+monthNames[tomorrow.getMonth()]+' '+yyyyb;
		document.getElementById('mflmjourA1').innerHTML  = dd;
		document.getElementById('mflmjourA2').innerHTML  = monthNames[today.getMonth()];
		document.getElementById('mflmjourB1').innerHTML  = ddb;
		document.getElementById('mflmjourB2').innerHTML  = monthNames[tomorrow.getMonth()];
   jQuery('#datea').datepicker({
   dateFormat : 'dd M yy'
   });
   
    
   jQuery('#dateb').datepicker({
   dateFormat : 'dd M yy'
   });

   });
function setDate()
	{
		var date_a = document.getElementById('datea');
		var date_b = document.getElementById('dateb');
		var newa = date_a.value;
		var resulta;
		
		var newb = date_b.value;
		var resultb;
		
		if(newa.includes("janvier"))
		{
			resulta = newa.replace("janvier", "january");
		}
		if(newa.includes("février"))
		{
			resulta = newa.replace("février", "february");
		}
		else if(newa.includes("mars"))
		{
			resulta = newa.replace("mars", "march");
		}
		else if(newa.includes("avril"))
		{
			resulta = newa.replace("avril", "april");
		}
		else if(newa.includes("mai"))
		{
			resulta = newa.replace("mai", "may");
		}
		else if(newa.includes("juin"))
		{
			resulta = newa.replace("juin", "june");
		}
		else if(newa.includes("juillet"))
		{
			resulta = newa.replace("juillet", "july");
		}
		else if(newa.includes("août"))
		{
			resulta = newa.replace("août ", "august");
		}
		else if(newa.includes("septembre"))
		{
			resulta = newa.replace("septembre", "september");
		}
		else if(newa.includes("octobre"))
		{
			resulta = newa.replace("octobre", "october");
		}
		else if(newa.includes("novembre"))
		{
			resulta = newa.replace("novembre", "november");
		}
		else if(newa.includes("décembre "))
		{
			resulta = newa.replace("décembre ", "december");
		}
		else
		{
			resulta = newa;
		}
		
		if(newb.includes("janvier"))
		{
			resultb = newb.replace("janvier", "january");
		}
		if(newb.includes("février"))
		{
			resultb = newb.replace("février", "february");
		}
		else if(newb.includes("mars"))
		{
			resultb = newb.replace("mars", "march");
		}
		else if(newb.includes("avril"))
		{
			resultb = newb.replace("avril", "april");
		}
		else if(newb.includes("mai"))
		{
			resultb = newb.replace("mai", "may");
		}
		else if(newb.includes("juin"))
		{
			resultb = newb.replace("juin", "june");
		}
		else if(newb.includes("juillet"))
		{
			resultb = newb.replace("juillet", "july");
		}
		else if(newb.includes("août"))
		{
			resultb = newb.replace("août ", "august");
		}
		else if(newb.includes("septembre"))
		{
			resultb = newb.replace("septembre", "september");
		}
		else if(newb.includes("octobre"))
		{
			resultb = newb.replace("octobre", "october");
		}
		else if(newb.includes("novembre"))
		{
			resultb = newb.replace("novembre", "november");
		}
		else if(newb.includes("décembre "))
		{
			resultb = newb.replace("décembre ", "december");
		}
		else
		{
			resultb = newb;
		}
		 
		var today = new Date(resulta);
		var tomorrow = new Date(resultb);
		console.log(today);
		console.log(tomorrow);
		if(Date.parse(today) > Date.parse(tomorrow))
		{
   //La fecha final es menor que la inicial
   
			tomorrow.setDate(today.getDate()+1);


		}
	
		else
		{
   //La fecha Final es mayor...
		}
		
	
//date_b.value = tomorrow;
 
 
	   var dd = today.getDate();
		var mm = today.getMonth()+1; 
		const monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
];
		var yyyy = today.getFullYear();
		
		
		if(dd<10) 
		{
			dd='0'+dd;
		} 
		if(mm<10) 
		{
			mm='0'+mm;
		} 
		
		var ddb = tomorrow.getDate();
		var mmb = tomorrow.getMonth()+1; 
		var yyyyb = tomorrow.getFullYear();
		if(ddb<10) 
		{
			ddb='0'+ddb;
		} 
		if(mmb<10) 
		{
			mmb='0'+mmb;
		}
		
		date_a.value =  dd+' '+monthNames[today.getMonth()]+' '+yyyy;
		date_b.value =  ddb+' '+monthNames[tomorrow.getMonth()]+' '+yyyyb;
		document.getElementById('mflmjourA1').innerHTML  = dd;
		document.getElementById('mflmjourA2').innerHTML  = monthNames[today.getMonth()];
		document.getElementById('mflmjourB1').innerHTML  = ddb;
		document.getElementById('mflmjourB2').innerHTML  = monthNames[tomorrow.getMonth()];
	};
   

   </script>
	<form class="form" name="customer_details" method="POST" action="">
		<div class="mflm-75">
		<div class="test">
			<Label class="mflmtitre">ARRIVÉE</label>
			<input id="datea" class="counterinput" type="text" value="" readonly>
			<div class="contmflm">
				<Label id="mflmjourA1" class="mflmjour"></label>
				<Label id="mflmjourA2" class="mflmmois"></label>
			</div>
		</div>
		<div class="test">
			<Label class="mflmtitre">DÉPART</label>
			<input id="dateb" class="counterinput" type="text" value="" readonly>
			<div class="contmflm">
				<Label id="mflmjourB1" class="mflmjour"></label>
				<Label id="mflmjourB2" class="mflmmois"></label>
			</div>
		</div>
		<div class="test">
		<Label class="mflmtitre">PERSONNES:</label>
 		<select id="adult" name="adult" class="counter">
   			<option value="1">1</option>
    		<option value="2">2</option>
    		<option value="3">3</option>
    		<option value="4">4</option>
  		</select>
		</div>
		</div>
		<div class="btnsend">
		<input id="url" type="hidden" value="https://wubook.net/neb/bk?"/>
		<Label onclick="test()">VÉRIFIER<br />DISPONIBILITÉS</Label>
		</div>
	</form>
	<script>
	  
	 
	jQuery('#datea').datepicker(
	{
		onSelect: function(dateText) 
		{
			console.log("Selected date: " + dateText + "; input's current value: " + this.value);
			setDate();
		}
	});
	jQuery('#dateb').datepicker(
	{
		onSelect: function(dateText) 
		{
			console.log("Selected date: " + dateText + "; input's current value: " + this.value);
			setDate();
		}
	});
function test()
{
	var url = document.getElementById('url');
	var url_base = url.value;
	var date_a = document.getElementById('datea');
	var date_in = date_a.value;
	
	
		var newa = date_a.value;
		var resulta;
		
		if(newa.includes("janvier"))
		{
			resulta = newa.replace("janvier", "january");
		}
		if(newa.includes("février"))
		{
			resulta = newa.replace("février", "february");
		}
		else if(newa.includes("mars"))
		{
			resulta = newa.replace("mars", "march");
		}
		else if(newa.includes("avril"))
		{
			resulta = newa.replace("avril", "april");
		}
		else if(newa.includes("mai"))
		{
			resulta = newa.replace("mai", "may");
		}
		else if(newa.includes("juin"))
		{
			resulta = newa.replace("juin", "june");
		}
		else if(newa.includes("juillet"))
		{
			resulta = newa.replace("juillet", "july");
		}
		else if(newa.includes("août"))
		{
			resulta = newa.replace("août ", "august");
		}
		else if(newa.includes("septembre"))
		{
			resulta = newa.replace("septembre", "september");
		}
		else if(newa.includes("octobre"))
		{
			resulta = newa.replace("octobre", "october");
		}
		else if(newa.includes("novembre"))
		{
			resulta = newa.replace("novembre", "november");
		}
		else if(newa.includes("décembre "))
		{
			resulta = newa.replace("décembre ", "december");
		}
		else
		{
			resulta = newa;
		}
		
		
	var datea = new Date(resulta);
	var dd_da = datea.getDate();
	var mm_da = datea.getMonth()+1; 
	var yyyy_da = datea.getFullYear();
	if(dd_da<10) 
		{
			dd_da='0'+dd_da;
		} 
	if(mm_da<10) 
		{
			mm_da='0'+mm_da;
		}
	var date_b = document.getElementById('dateb');
	var date_out = date_b.value;
	
	var newb = date_b.value;
		var resultb;
		
		if(newb.includes("janvier"))
		{
			resultb = newb.replace("janvier", "january");
		}
		if(newb.includes("février"))
		{
			resultb = newb.replace("février", "february");
		}
		else if(newb.includes("mars"))
		{
			resultb = newb.replace("mars", "march");
		}
		else if(newb.includes("avril"))
		{
			resultb = newb.replace("avril", "april");
		}
		else if(newb.includes("mai"))
		{
			resultb = newb.replace("mai", "may");
		}
		else if(newb.includes("juin"))
		{
			resultb = newb.replace("juin", "june");
		}
		else if(newb.includes("juillet"))
		{
			resultb = newb.replace("juillet", "july");
		}
		else if(newb.includes("août"))
		{
			resultb = newb.replace("août ", "august");
		}
		else if(newb.includes("septembre"))
		{
			resultb = newb.replace("septembre", "september");
		}
		else if(newb.includes("octobre"))
		{
			resultb = newb.replace("octobre", "october");
		}
		else if(newb.includes("novembre"))
		{
			resultb = newb.replace("novembre", "november");
		}
		else if(newb.includes("décembre "))
		{
			resultb = newb.replace("décembre ", "december");
		}
		else
		{
			resultb = newb;
		}
		
	var dateb = new Date(resultb);
	var dd_db = dateb.getDate();
	var mm_db = dateb.getMonth()+1; 
	var yyyy_db = dateb.getFullYear();
	if(dd_db<10) 
		{
			dd_db='0'+dd_db;
		} 
	if(mm_db<10) 
		{
			mm_db='0'+mm_db;
		}
	var final_da = dd_da + "/" + mm_da + "/" + yyyy_da;
	var final_db = dd_db + "/" + mm_db + "/" + yyyy_db;


	var adult = document.getElementById("adult");
	var adult_v = adult.options[adult.selectedIndex].value;
	var url = url_base+"f="+ final_da+"&h="+final_db+"&n="+adult_v+"&ep=1e2b0ef2";
	window.open(url);
	}
</script>
{"id":25464,"date":"2020-11-09T17:10:17","date_gmt":"2020-11-09T16:10:17","guid":{"rendered":"https:\/\/saintcyprienplage.com\/residence-in-saint-cyprien-porto-vecchio-with-heated-pool\/"},"modified":"2026-06-22T16:27:12","modified_gmt":"2026-06-22T14:27:12","slug":"residence-in-saint-cyprien-porto-vecchio-with-heated-pool","status":"publish","type":"page","link":"https:\/\/saintcyprienplage.com\/en\/","title":{"rendered":"Residence in Saint Cyprien Porto-Vecchio with Heated Pool"},"content":{"rendered":"<div class=\"wpb-content-wrapper\" id=\"wpb-content-root\"><p>[vc_row][vc_column width=&#8221;1\/6&#8243;][\/vc_column][vc_column width=&#8221;2\/3&#8243; el_class=&#8221;frontblock&#8221;]<div class=\"clearboth\"><\/div><style>#thegem-divider-6aaf973c10a4a {margin-top: -90px !important;}<\/style><div id=\"thegem-divider-6aaf973c10a4a\" class=\"gem-divider  custom-gap\" style=\"\" ><\/div>[vc_column_text css_animation=&#8221;slideInUp&#8221;][\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/6&#8243;][\/vc_column][\/vc_row][vc_row el_id=&#8221;residence&#8221;][vc_column width=&#8221;5\/6&#8243; el_class=&#8221;centerinner&#8221;][vc_empty_space height=&#8221;10px&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221;]<\/p>\n<h1 style=\"text-align: center;\">The Residence<\/h1>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;slideInUp&#8221;]<\/p>\n<h2 style=\"text-align: center;\">SAINT CYPRIEN PLAGE<\/h2>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;slideInUp&#8221;]<\/p>\n<h3 style=\"text-align: center;\">Located in the town of Lecci at the entrance of the seaside resort of Saint Cyprien<\/h3>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;fadeIn&#8221;]<\/p>\n<p style=\"text-align: center;\">10 MN north of Porto Vecchio, the first island seaside resort, Saint Cyprien Plage is a new luxury residence made up of 11 villas: 7 T3 villas and 4 T4 villas, a must-see resort.<\/p>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;90px&#8221;][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text css_animation=&#8221;slideInUp&#8221; el_class=&#8221;negativetitre&#8221;]<\/p>\n<h1><span style=\"color: #e0e0e0;\">St Cyprien Plage<\/span><\/h1>\n<p>[\/vc_column_text]<div id=\"fullwidth-block-6aaf973c10ecf\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-6aaf973c10ecf\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/09\/middle-saint-cyprien-plage-residence.jpg);background-repeat: no-repeat; background-size: cover;background-position: center top;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner equal_height=&#8221;yes&#8221; content_placement=&#8221;top&#8221; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1584034919967{margin-right: 60px !important;margin-left: 60px !important;}&#8221;][vc_column_inner width=&#8221;1\/2&#8243;][\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1584034807010{margin-top: 30px !important;margin-right: 30px !important;margin-bottom: 30px !important;margin-left: 30px !important;background-color: rgba(175,162,75,0.7) !important;*background-color: rgb(175,162,75) !important;}&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; css=&#8221;.vc_custom_1599412003158{margin-bottom: 0px !important;}&#8221;]<\/p>\n<h1 style=\"text-align: left;\"><span style=\"color: #ffffff;\">Your comfort<\/span><\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;6px&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; css=&#8221;.vc_custom_1584121578393{margin-bottom: 0px !important;}&#8221;]<\/p>\n<h4 style=\"text-align: right;\">OUR PRIORITY<\/h4>\n<p>[\/vc_column_text][vc_empty_space][vc_column_text css_animation=&#8221;slideInUp&#8221;]<span style=\"color: #ffffff;\">A warm and cozy cocoon &#8230;<br \/>\nWe have taken care to work with major brands and have selected noble and trendy materials from our partners to provide you with all the comfort you need during your stay with us.<br \/>\nNow it&#8217;s time to relax &#8230;<br \/>\n<\/span>[\/vc_column_text]<style type=\"text\/css\">.thegem-button-6aaf973c1104b6586 .gem-button svg {fill: #ffffff;}.thegem-button-6aaf973c1104b6586 .gem-button:hover svg {fill: #d2c56a;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-6aaf973c1104b6586 gemborder   \"  ><a class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-thin\" data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;background-color: rgba(255,255,255,0.01);color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='rgba(255,255,255,0.01)';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#ffffff';this.style.color='#d2c56a';\" href=\"https:\/\/wubook.net\/neb\/bk?f=today&#038;n=1&#038;ep=1e2b0ef2\" target=\"_blank\">R\u00c9SERVER<\/a><\/div> [\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column css=&#8221;.vc_custom_1583790408718{padding-left: 100px !important;}&#8221;][vc_empty_space height=&#8221;100px&#8221; el_class=&#8221;hmobile&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; el_class=&#8221;negativetitrebg&#8221;]<\/p>\n<h1><span style=\"color: #ffffff;\">Splendid<\/span><\/h1>\n<p>[\/vc_column_text]<div id=\"fullwidth-block-6aaf973c110c6\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-6aaf973c110c6\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1584034720160{margin-right: 30px !important;background-image: url(https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/BgSublime.jpg?id=24659) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column_inner width=&#8221;1\/2&#8243; disable_custom_paddings_tablet=&#8221;true&#8221; disable_custom_paddings_mobile=&#8221;true&#8221; css=&#8221;.vc_custom_1584034715224{margin-top: 30px !important;margin-right: 30px !important;margin-bottom: 30px !important;margin-left: 30px !important;background-color: rgba(19,131,135,0.75) !important;*background-color: rgb(19,131,135) !important;}&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; css=&#8221;.vc_custom_1584121601579{margin-bottom: 0px !important;margin-left: -4px !important;}&#8221;]<\/p>\n<h1 style=\"text-align: left;\"><span style=\"color: #ffffff;\">An ideal locality<\/span><\/h1>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;6px&#8221;][vc_empty_space][vc_column_text css_animation=&#8221;slideInUp&#8221;]<span style=\"color: #ffffff;\">Located 10 minutes walk from the beautiful bay of Saint Cyprien with its beach with turquoise and crystal clear waters, its fine sand, Saint Cyprien Plage Residence is the perfect place to spend pleasant holidays in the heart of this seaside resort with its shops, restaurants and many sporting activities\u2026 \u201cThe place to be\u201d.<\/span>[\/vc_column_text]<style type=\"text\/css\">.thegem-button-6aaf973c111a32509 .gem-button svg {fill: #ffffff;}.thegem-button-6aaf973c111a32509 .gem-button:hover svg {fill: #ffffff;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-6aaf973c111a32509 gemborder   \"  ><a title=\"R\u00e9gion de Saint-Cyprien \u2013 Porto-Vecchio\" class=\"gem-button gem-button-size-medium gem-button-style-flat gem-button-text-weight-thin\" data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 3px;background-color: rgba(255,255,255,0.01);color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='rgba(255,255,255,0.01)';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#d2c56a';this.style.color='#ffffff';\" href=\"https:\/\/saintcyprienplage.com\/region-de-saint-cyprien-porto-vecchio\/\" target=\"_self\">LIRE PLUS<\/a><\/div> [\/vc_column_inner][vc_column_inner width=&#8221;1\/2&#8243;][\/vc_column_inner][\/vc_row_inner]<\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;100px&#8221; el_class=&#8221;hmobile&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; el_class=&#8221;negativetitre&#8221;]<\/p>\n<h1 style=\"text-align: right;\"><span style=\"color: #e0e0e0;\">Our villas<\/span><\/h1>\n<p>[\/vc_column_text]<div id=\"fullwidth-block-6aaf973c111fc\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-6aaf973c111fc\")); }<\/script><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_row_inner equal_height=&#8221;yes&#8221; content_placement=&#8221;middle&#8221; gap=&#8221;5&#8243; css=&#8221;.vc_custom_1583851716476{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column_inner css=&#8221;.vc_custom_1583849145722{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}&#8221;]<style>.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-item:not(.size-item), .preloader#style-preloader-7ef4bc5 .portfolio-item { padding: calc(42px\/2) !important; }.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-item.size-item { padding: 0 calc(42px\/2) !important; }.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-row, .preloader#style-preloader-7ef4bc5 .skeleton-posts.portfolio-row { margin: calc(-42px\/2); }.portfolio.portfolio-grid#style-7ef4bc5.fullwidth-columns .portfolio-row { margin: calc(-42px\/2) 0; }.portfolio.portfolio-grid#style-7ef4bc5 .fullwidth-block:not(.no-paddings) { padding-left: 42px; padding-right: 42px; }.portfolio.portfolio-grid#style-7ef4bc5 .fullwidth-block .portfolio-row { padding-left: calc(42px\/2); padding-right: calc(42px\/2); }.portfolio.portfolio-grid#style-7ef4bc5 .fullwidth-block .portfolio-top-panel { padding-left: 42px; padding-right: 42px; }.portfolio.portfolio-grid#style-7ef4bc5.fullwidth-columns .with-filter-sidebar .filter-sidebar { padding-left: 42px; }.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-item .caption .title span { letter-spacing: px !important; }.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-item .caption .subtitle { color: #000000 !important; }<\/style><style>.portfolio.portfolio-grid#style-7ef4bc5 .portfolio-filters { text-align: center; }<\/style> <div class=\"portfolio-preloader-wrapper panel-sidebar-position-left\"> <div class=\"portfolio portfolio-grid extended-portfolio-grid no-padding portfolio-pagination-normal portfolio-style-justified background-style-white title-style-light hover-default title-on-page hover-elements-size-default version-default caption-position-page columns-2 columns-tablet-2 columns-mobile-1 disable-isotope next-page-preloading \" id=\"style-7ef4bc5\" data-style-uid=\"7ef4bc5\" data-portfolio-uid=\"grid_fde995c\" data-current-page=\"1\" data-per-page=\"8\" data-next-page=\"0\" data-pages-count=\"1\" data-hover=\"default\" data-portfolio-filter=\"[]\" data-portfolio-filter-attributes=\"null\" data-portfolio-filter-search=\"\"> <div class=\"portfolio-row-outer \"> <div class=\"portfolio-top-panel selected-only\"> <div class=\"portfolio-filter-item portfolio-selected-filters left\"> <div class=\"portfolio-selected-filter-item clear-filters\"> Clear Filters\t<\/div> <\/div> <\/div> <div class=\"row portfolio-row\"> <div class=\"portfolio-set clearfix\" data-max-row-height=\"380\"> <div class=\"portfolio-item t4 t4-en villas villas-en col-xs-12 col-sm-6 col-md-6 portfolio-item-template appearance-type-featured_image post-26370 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-default-sort=\"0\" data-sort-date=\"1604998981\"> <div class=\"wrap clearfix\"> <div class=\"image post-26370 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/T4-residence-saint-cyprien-plage-avec-piscine2.jpg 1x\" sizes=\"100vw\"> <img src=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/T4-residence-saint-cyprien-plage-avec-piscine2.jpg\" width=\"631\" height=\"631\" class=\"attachment-thegem-product-justified-square-xl\" alt=\"Villa T4- 8 persons in Saint Cyprien\" \/> <\/picture> <\/div> <div class=\"overlay \"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/saintcyprienplage.com\/en\/pf\/villa-t4-8-persons-in-saint-cyprien\/\" target=\"_self\" class=\"icon self-link \" data-elementor-open-lightbox=\"no\" aria-label=\"Villa T4- 8 persons in Saint Cyprien\"> <i class=\"default\"><\/i> <\/a> <div class=\"overlay-line\"><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"caption post-26370 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"title\"> <span class=\" \"> Villa T4- 8 persons in Saint Cyprien <\/span> <\/div> <div class=\"caption-separator\"><\/div> <div class=\"subtitle\"> <span class=\"\"><p>A pleasant living space with fully equipped kitchen and lounge area opening onto a wooden terrace; Pool access<\/p>\n<\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item t3-en villas villas-en col-xs-12 col-sm-6 col-md-6 portfolio-item-template appearance-type-featured_image post-26377 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-default-sort=\"0\" data-sort-date=\"1605003697\"> <div class=\"wrap clearfix\"> <div class=\"image post-26377 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2018\/11\/T3-residence-saint-cyprien-plage-avec-piscine2.jpg 1x\" sizes=\"100vw\"> <img src=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2018\/11\/T3-residence-saint-cyprien-plage-avec-piscine2.jpg\" width=\"631\" height=\"631\" class=\"attachment-thegem-product-justified-square-xl\" alt=\"Villa T3 6 persons in Saint Cyprien\" \/> <\/picture> <\/div> <div class=\"overlay \"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/saintcyprienplage.com\/en\/pf\/villa-t3-6-persons-in-saint-cyprien\/\" target=\"_self\" class=\"icon self-link \" data-elementor-open-lightbox=\"no\" aria-label=\"Villa T3 6 persons in Saint Cyprien\"> <i class=\"default\"><\/i> <\/a> <div class=\"overlay-line\"><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"caption post-26377 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"title\"> <span class=\" \"> Villa T3 6 persons in Saint Cyprien <\/span> <\/div> <div class=\"caption-separator\"><\/div> <div class=\"subtitle\"> <span class=\"\"><p>A pleasant living space with fully equipped kitchen and lounge area opening onto a wooden terrace; Pool access<\/p>\n<\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item t4 t4-en villas villas-en col-xs-12 col-sm-6 col-md-6 portfolio-item-template appearance-type-featured_image post-26501 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-default-sort=\"0\" data-sort-date=\"1648658508\"> <div class=\"wrap clearfix\"> <div class=\"image post-26501 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/T4-residence-saint-cyprien-plage-avec-piscine2.jpg 1x\" sizes=\"100vw\"> <img src=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/T4-residence-saint-cyprien-plage-avec-piscine2.jpg\" width=\"631\" height=\"631\" class=\"attachment-thegem-product-justified-square-xl\" alt=\"Villa T4- 8 persons with Private Pool\" \/> <\/picture> <\/div> <div class=\"overlay \"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/saintcyprienplage.com\/en\/pf\/villa-t4-8-persons-with-private-pool\/\" target=\"_self\" class=\"icon self-link \" data-elementor-open-lightbox=\"no\" aria-label=\"Villa T4- 8 persons with Private Pool\"> <i class=\"default\"><\/i> <\/a> <div class=\"overlay-line\"><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"caption post-26501 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"title\"> <span class=\" \"> Villa T4- 8 persons with Private Pool <\/span> <\/div> <div class=\"caption-separator\"><\/div> <div class=\"subtitle\"> <span class=\"\"><p>A pleasant living space with fully equipped kitchen and lounge area opening onto a wooden terrace; Pool access<\/p>\n<\/span> <\/div> <\/div> <\/div> <\/div> <div class=\"portfolio-item t4-en villas-en col-xs-12 col-sm-6 col-md-6 portfolio-item-template appearance-type-featured_image post-26594 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\" data-default-sort=\"0\" data-sort-date=\"1703242425\"> <div class=\"wrap clearfix\"> <div class=\"image post-26594 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"image-inner \"> <picture> <source srcset=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2023\/12\/location-villa-t4-piscine-privee-saint-cyprien.jpg 1x\" sizes=\"100vw\"> <img src=\"https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2023\/12\/location-villa-t4-piscine-privee-saint-cyprien.jpg\" width=\"631\" height=\"631\" class=\"attachment-thegem-product-justified-square-xl\" alt=\"Villa T4B- 6 persons\" \/> <\/picture> <\/div> <div class=\"overlay \"> <div class=\"overlay-circle\"><\/div> <div class=\"links-wrapper\"> <div class=\"links\"> <div class=\"portfolio-icons\"> <a href=\"https:\/\/saintcyprienplage.com\/en\/pf\/villa-t4b-6-persons\/\" target=\"_self\" class=\"icon self-link \" data-elementor-open-lightbox=\"no\" aria-label=\"Villa T4B- 6 persons\"> <i class=\"default\"><\/i> <\/a> <div class=\"overlay-line\"><\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div class=\"caption post-26594 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <div class=\"title\"> <span class=\" \"> Villa T4B- 6 persons <\/span> <\/div> <div class=\"caption-separator\"><\/div> <div class=\"subtitle\"> <span class=\"\"><p>A pleasant living space with fully equipped kitchen and lounge area opening onto a wooden terrace; Private Pool<\/p>\n<\/span> <\/div> <\/div> <\/div> <\/div> <\/div><!-- .portflio-set --> <div class=\"portfolio-item-size-container\"> <div class=\"portfolio-item col-xs-12 col-sm-6 col-md-6 portfolio-item-template appearance-type-featured_image post-26594 thegem_pf_item type-thegem_pf_item status-publish has-post-thumbnail\"> <\/div> <\/div> <\/div><!-- .row--> <div class=\"portfolio-navigator gem-pagination\" style=\"display:none;\"> <a href=\"#\" role=\"button\" class=\"prev\" aria-label=\"Prev\"> <i class=\"default\"><\/i> <\/a> <div class=\"pages\"><\/div> <a href=\"#\" role=\"button\" class=\"next\" aria-label=\"Next\"> <i class=\"default\"><\/i> <\/a> <\/div> <\/div><!-- .full-width --> <\/div><!-- .portfolio--> <\/div><!-- .portfolio-preloader-wrapper-->[\/vc_column_inner][\/vc_row_inner]<style type=\"text\/css\">.thegem-button-6aaf973c179da8004 .gem-button svg {fill: #ffffff;}.thegem-button-6aaf973c179da8004 .gem-button:hover svg {fill: #9d904a;}<\/style><div class=\"gem-button-container gem-button-position-center thegem-button-6aaf973c179da8004    \"  ><a title=\"Vid\u00e9o 1\" class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal\" data-ll-effect=\"drop-right-without-wrap\" style=\"border-radius: 0px;background-color: #9d904a;color: #ffffff;\" onmouseleave=\"this.style.backgroundColor='#9d904a';this.style.color='#ffffff';\" onmouseenter=\"this.style.backgroundColor='#e2e2e2';this.style.color='#9d904a';\" href=\"#popmake-25390\" target=\"_self\">See the video presentation<\/a><\/div> <\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row][vc_column el_class=&#8221;centerinner&#8221;]<div class=\"clearboth\"><\/div><style>#thegem-divider-6aaf973c17a89 {margin-bottom: 50px !important;}<\/style><div id=\"thegem-divider-6aaf973c17a89\" class=\"gem-divider  \" style=\"\" ><\/div>[vc_column_text css_animation=&#8221;slideInUp&#8221;]<\/p>\n<h6 style=\"text-align: left;\"><span style=\"color: #9d904a;\">A pleasant living space &#8230; <\/span><\/h6>\n<p>[\/vc_column_text][vc_empty_space height=&#8221;20px&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; el_class=&#8221;.custom-qf-title-width&#8221; css=&#8221;.vc_custom_1599460582833{margin-bottom: 0px !important;background-image: url(https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/09\/piscine-residence-saint-cyprien-porto-vecchio.jpg?id=25343) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_column][vc_empty_space height=&#8221;80px&#8221; el_class=&#8221;hmobile&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; css=&#8221;.vc_custom_1584121648148{margin-bottom: 0px !important;}&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #d2c56a;\">CARACTERISTICS<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text css_animation=&#8221;slideInUp&#8221; css=&#8221;.vc_custom_1584121654206{margin-left: 50px !important;}&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">of the residence<\/span><\/h1>\n<p>[\/vc_column_text]<div class=\"quickfinder quickfinder-style-iconed row inline-row quickfinder-icon-position-top quickfinder-alignment-center quickfinder-title-thin\" data-hover-icon-color=\"#a59549\" data-hover-border-color=\"#a59549\"><div id=\"post-26731\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-background-reverse icon-size-medium quickfinder-box-style-strong-outlined lazy-loading post-26731 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-elegant gem-icon-size-medium gem-icon-shape-circle \" style=\"border-color: #91842a;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #91842a;\"><span class=\"gem-icon-half-1\" style=\"color: #fff;\"><span class=\"back-angle\">&#x77;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #fff;\"><span class=\"back-angle\">&#x77;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #fff;\">Reception &#038; Services<\/div> <div class=\"quickfinder-item-text\" style=\"color: #fff;\">Daily Reception and Check-in<br \/>\n<br \/>\nHigh Season: Open 7 days a week<br \/>\nHours vary depending on the season.<br \/>\n<br \/>\nStay connected with our team from the moment you book.<br \/>\nOur reception staff will be at your service and attentive to all your requests.<br \/>\n<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div id=\"post-26730\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-background-reverse icon-size-medium quickfinder-box-style-strong-outlined lazy-loading post-26730 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-elegant gem-icon-size-medium gem-icon-shape-circle \" style=\"border-color: #91842a;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #91842a;\"><span class=\"gem-icon-half-1\" style=\"color: #fff;\"><span class=\"back-angle\">&#xe023;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #fff;\"><span class=\"back-angle\">&#xe023;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #fff;\">Open year-round<\/div> <div class=\"quickfinder-item-text\" style=\"color: #fff;\">The Saint Cyprien Plage residence welcomes you year-round, offering a wonderful opportunity to discover Corsica throughout the seasons.<br \/>\n<br \/>\nEach season offers a unique atmosphere: summer invites you to fully enjoy the beaches and water sports, while winter and the shoulder seasons reveal a more intimate side of the island, perfect for hiking, cultural exploration, and savoring local cuisine.<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <div id=\"post-26729\" data-ll-finish-delay=\"200\" class=\"quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 quickfinder-item-effect-background-reverse icon-size-medium quickfinder-box-style-strong-outlined lazy-loading post-26729 thegem_qf_item type-thegem_qf_item status-publish\" data-ll-item-delay=\"0\"> <div class=\"quickfinder-item-box\" style=\"border-color: #ffffff;\"> <div class=\"quickfinder-item-inner\"> <div class=\"quickfinder-item-image\"> <div class=\"quickfinder-item-image-content lazy-loading-item\" data-ll-item-delay=\"0\" data-ll-effect=\"clip\"> <div class=\"quickfinder-item-image-wrapper\"> <div class=\"gem-icon gem-icon-pack-elegant gem-icon-size-medium gem-icon-shape-circle \" style=\"border-color: #91842a;opacity: 1;\"><div class=\"gem-icon-inner\" style=\"background-color: #91842a;\"><span class=\"gem-icon-half-1\" style=\"color: #fff;\"><span class=\"back-angle\">&#xe01d;<\/span><\/span><span class=\"gem-icon-half-2\" style=\"color: #fff;\"><span class=\"back-angle\">&#xe01d;<\/span><\/span><\/div><\/div> <\/div> <\/div> <\/div> <div class=\"quickfinder-item-info-wrapper\"> <div class=\"quickfinder-item-info lazy-loading-item\" data-ll-item-delay=\"200\" data-ll-effect=\"fading\"> <div class=\"quickfinder-item-title\" style=\"color: #fff;\">IDEAL LOCATION<\/div> <div class=\"quickfinder-item-text\" style=\"color: #fff;\">Our residence is close to the magnificent beaches of Saint Cyprien, Pinarello, and Cala Rossa, and just a few kilometers from the must-see Palombaggia, Santa Giulia, and Rondinara.<br \/>\n<br \/>\nNearby, enjoy a wide range of activities, as well as restaurants, shops, and local producers, to discover all the richness and authenticity of the region.<br \/>\n<br \/>\n<br \/>\n<\/div> <\/div> <\/div> <\/div> <\/div> <\/div> <\/div><div class=\"clearboth\"><\/div><style>#thegem-divider-6aaf973c1d221 {margin-top: 60px !important;}<\/style><div id=\"thegem-divider-6aaf973c1d221\" class=\"gem-divider  \" style=\"\" ><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_empty_space height=&#8221;100px&#8221; el_class=&#8221;hmobile&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221; el_class=&#8221;negativetitre&#8221; css=&#8221;.vc_custom_1599752332098{padding-left: 18% !important;}&#8221;]<\/p>\n<h1><span style=\"color: #e0e0e0;\">#stcypplage<\/span><\/h1>\n<p>[\/vc_column_text]<div id=\"fullwidth-block-6aaf973c1d4f8\" class=\"fullwidth-block clearfix\"  style=\"\"><script type=\"text\/javascript\">if (typeof(gem_fix_fullwidth_position) == \"function\") { gem_fix_fullwidth_position(document.getElementById(\"fullwidth-block-6aaf973c1d4f8\")); }<\/script><div class=\"fullwidth-block-background\" style=\"background-image: url(https:\/\/saintcyprienplage.com\/wp-content\/uploads\/2020\/03\/BgRS.jpg);background-repeat: no-repeat; background-size: cover;background-position: center bottom;\"><\/div><div class=\"fullwidth-block-inner\"><div class=\"container\">[vc_column_text]\n<div id=\"sb_instagram\" role=\"region\" aria-label=\"Instagram feed\"  class=\"sbi sbi_mob_col_2 sbi_tab_col_3 sbi_col_6 sbi_width_resp\" style=\"padding-bottom: 10px;\"\t data-feedid=\"*4\"  data-res=\"auto\" data-cols=\"6\" data-colsmobile=\"2\" data-colstablet=\"3\" data-num=\"6\" data-nummobile=\"6\" data-item-padding=\"5\"\t data-shortcode-atts=\"{&quot;feed&quot;:&quot;4&quot;}\"  data-postid=\"26729\" data-locatornonce=\"aacedf4a12\" data-imageaspectratio=\"1:1\" data-sbi-flags=\"favorLocal,gdpr\">\n\t\n\t<div id=\"sbi_images\" role=\"list\"  style=\"gap: 10px;\">\n\t\t\t<\/div>\n\n\t<div id=\"sbi_load\" >\n\n\t<div class=\"sbi-screenreader\" aria-live=\"polite\" aria-atomic=\"true\" data-sbi-feed-status><\/div>\n\n\t\n\t\t\t<span class=\"sbi_follow_btn sbi_custom\" >\n\t\t\t<a target=\"_blank\"\n\t\t\t\trel=\"nofollow noopener\"  href=\"https:\/\/www.instagram.com\/residence_saint_cyprien_plage\/\" style=\"background: rgb(157,144,74);\">\n\t\t\t\t<svg class=\"svg-inline--fa fa-instagram fa-w-14\" aria-hidden=\"true\" data-fa-processed=\"\" aria-label=\"Instagram\" data-prefix=\"fab\" data-icon=\"instagram\" role=\"img\" viewBox=\"0 0 448 512\">\n                    <path fill=\"currentColor\" d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"><\/path>\n                <\/svg>\t\t\t\t<span>Suivez-nous<\/span>\n\t\t\t<\/a>\n\t\t<\/span>\n\t\n<\/div>\n\t\t<span class=\"sbi_resized_image_data\" data-feed-id=\"*4\"\n\t\t  data-resized=\"[]\">\n\t<\/span>\n\t<\/div>\n\n\t<style type=\"text\/css\">\n\t\t\t\t\t\t#sb_instagram .sbi_follow_btn a:hover,\n\t\t#sb_instagram .sbi_follow_btn a:focus {\n\t\t\toutline: none;\n\t\t\tbox-shadow: inset 0 0 10px 20px#5D5D5D;\n\t\t}\n\n\t\t\t<\/style>\n\t[\/vc_column_text][vc_empty_space height=&#8221;96px&#8221;]<\/div><\/div><\/div>[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column width=&#8221;1\/6&#8243;][\/vc_column][vc_column width=&#8221;2\/3&#8243; el_class=&#8221;frontblock&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221;][\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/6&#8243;][\/vc_column][\/vc_row][vc_row el_id=&#8221;residence&#8221;][vc_column width=&#8221;5\/6&#8243; el_class=&#8221;centerinner&#8221;][vc_empty_space height=&#8221;10px&#8221;][vc_column_text css_animation=&#8221;slideInUp&#8221;] The Residence [\/vc_column_text][vc_column_text css_animation=&#8221;slideInUp&#8221;] SAINT CYPRIEN PLAGE [\/vc_column_text][vc_column_text css_animation=&#8221;slideInUp&#8221;]&#8230;<\/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-25464","page","type-page","status-publish"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/saintcyprienplage.com\/en\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"R\u00e9sidence Saint Cyprien Plage | R\u00e9sidence \u00e0 Saint-Cyprien Porto-Vecchio avec Piscine\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Saint Cyprien Plage Residence with pool - Porto-Vecchio\" \/>\n\t\t<meta property=\"og:description\" content=\"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/saintcyprienplage.com\/en\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-11-09T16:10:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-22T14:27:12+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Saint Cyprien Plage Residence with pool - Porto-Vecchio\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#listItem\",\"name\":\"Residence in Saint Cyprien Porto-Vecchio with Heated Pool\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#listItem\",\"position\":2,\"name\":\"Residence in Saint Cyprien Porto-Vecchio with Heated Pool\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#listItem\",\"name\":\"Accueil\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#organization\",\"name\":\"R\\u00e9sidence Saint Cyprien Plage\",\"description\":\"R\\u00e9sidence \\u00e0 Saint-Cyprien Porto-Vecchio avec Piscine\",\"url\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/author\\\/admin_stc\\\/#author\",\"url\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/author\\\/admin_stc\\\/\",\"name\":\"rsk_saint\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7bc7d42f685c1250da981f18b04dc7dfc64ddfd6e6ed76143d9c5c3a27bcf6ac?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"rsk_saint\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#webpage\",\"url\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/\",\"name\":\"Saint Cyprien Plage Residence with pool - Porto-Vecchio\",\"description\":\"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/author\\\/admin_stc\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/author\\\/admin_stc\\\/#author\"},\"datePublished\":\"2020-11-09T17:10:17+01:00\",\"dateModified\":\"2026-06-22T16:27:12+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/\",\"name\":\"R\\u00e9sidence Saint Cyprien Plage\",\"description\":\"R\\u00e9sidence \\u00e0 Saint-Cyprien Porto-Vecchio avec Piscine\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/saintcyprienplage.com\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Saint Cyprien Plage Residence with pool - Porto-Vecchio","description":"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas","canonical_url":"https:\/\/saintcyprienplage.com\/en\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/saintcyprienplage.com\/en\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/saintcyprienplage.com\/en\/#listItem","position":1,"name":"Accueil","item":"https:\/\/saintcyprienplage.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/saintcyprienplage.com\/en\/#listItem","name":"Residence in Saint Cyprien Porto-Vecchio with Heated Pool"}},{"@type":"ListItem","@id":"https:\/\/saintcyprienplage.com\/en\/#listItem","position":2,"name":"Residence in Saint Cyprien Porto-Vecchio with Heated Pool","previousItem":{"@type":"ListItem","@id":"https:\/\/saintcyprienplage.com\/en\/#listItem","name":"Accueil"}}]},{"@type":"Organization","@id":"https:\/\/saintcyprienplage.com\/en\/#organization","name":"R\u00e9sidence Saint Cyprien Plage","description":"R\u00e9sidence \u00e0 Saint-Cyprien Porto-Vecchio avec Piscine","url":"https:\/\/saintcyprienplage.com\/en\/"},{"@type":"Person","@id":"https:\/\/saintcyprienplage.com\/en\/author\/admin_stc\/#author","url":"https:\/\/saintcyprienplage.com\/en\/author\/admin_stc\/","name":"rsk_saint","image":{"@type":"ImageObject","@id":"https:\/\/saintcyprienplage.com\/en\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/7bc7d42f685c1250da981f18b04dc7dfc64ddfd6e6ed76143d9c5c3a27bcf6ac?s=96&d=mm&r=g","width":96,"height":96,"caption":"rsk_saint"}},{"@type":"WebPage","@id":"https:\/\/saintcyprienplage.com\/en\/#webpage","url":"https:\/\/saintcyprienplage.com\/en\/","name":"Saint Cyprien Plage Residence with pool - Porto-Vecchio","description":"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/saintcyprienplage.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/saintcyprienplage.com\/en\/#breadcrumblist"},"author":{"@id":"https:\/\/saintcyprienplage.com\/en\/author\/admin_stc\/#author"},"creator":{"@id":"https:\/\/saintcyprienplage.com\/en\/author\/admin_stc\/#author"},"datePublished":"2020-11-09T17:10:17+01:00","dateModified":"2026-06-22T16:27:12+02:00"},{"@type":"WebSite","@id":"https:\/\/saintcyprienplage.com\/en\/#website","url":"https:\/\/saintcyprienplage.com\/en\/","name":"R\u00e9sidence Saint Cyprien Plage","description":"R\u00e9sidence \u00e0 Saint-Cyprien Porto-Vecchio avec Piscine","inLanguage":"en-US","publisher":{"@id":"https:\/\/saintcyprienplage.com\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"R\u00e9sidence Saint Cyprien Plage | R\u00e9sidence \u00e0 Saint-Cyprien Porto-Vecchio avec Piscine","og:type":"article","og:title":"Saint Cyprien Plage Residence with pool - Porto-Vecchio","og:description":"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas","og:url":"https:\/\/saintcyprienplage.com\/en\/","article:published_time":"2020-11-09T16:10:17+00:00","article:modified_time":"2026-06-22T14:27:12+00:00","twitter:card":"summary","twitter:title":"Saint Cyprien Plage Residence with pool - Porto-Vecchio","twitter:description":"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas"},"aioseo_meta_data":{"post_id":"25464","title":"Saint Cyprien Plage Residence with pool - Porto-Vecchio","description":"Saint Cyprien Plage Residence is located in Lecci at the entrance to the seaside resort of Saint Cyprien 10 MN north of Porto Vecchio T3 and T4 grand standing Villas","keywords":null,"keyphrases":{"focus":{"keyphrase":"Saint Cyprien Plage Residence","score":57,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":9,"maxScore":9,"error":0},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":4},"keyphraseInIntroduction":{"score":3,"maxScore":9,"error":1},"keyphraseInSubHeadings":{"score":3,"maxScore":9,"error":1},"keyphraseInImageAlt":{"score":3,"maxScore":9,"error":1},"keywordDensity":{"score":0,"type":"low","maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":{"id":"aioseo-web-page-63580f9e4e1d3","slug":"web-page","graphName":"WebPage","label":"Web Page","properties":{"type":"WebPage","name":"","description":""}}},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2021-06-01 12:28:31","updated":"2026-06-22 16:26:44","seo_analyzer_scan_date":null,"focus_keyword":"Saint Cyprien Plage Residence","additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/saintcyprienplage.com\/en\/\" title=\"Accueil\">Accueil<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tResidence in Saint Cyprien Porto-Vecchio with Heated Pool\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Accueil","link":"https:\/\/saintcyprienplage.com\/en\/"},{"label":"Residence in Saint Cyprien Porto-Vecchio with Heated Pool","link":"https:\/\/saintcyprienplage.com\/en\/"}],"_links":{"self":[{"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/pages\/25464","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/comments?post=25464"}],"version-history":[{"count":36,"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/pages\/25464\/revisions"}],"predecessor-version":[{"id":26732,"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/pages\/25464\/revisions\/26732"}],"wp:attachment":[{"href":"https:\/\/saintcyprienplage.com\/en\/wp-json\/wp\/v2\/media?parent=25464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}