ecotour.com Ads.txt file

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ecotour - Promovacances</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Ubuntu:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
/* Base styles */
:root {
--primary-color: #e20620;
--promovacances-blue: #0064dc;
--text-color: #000;
--card-background: #ffffff;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Poppins", serif;
line-height: 1.6;
color: var(--text-color);
background: url("../assets/images/beach-background.jpg") center/cover
fixed;
min-height: 100vh;
}

/* Layout */
.page-wrapper {
height: 100vh;
display: flex;
flex-direction: column;
background-image: url(https://static.service-voyages.com/photos/vignettes/ecotour/20250110083011-ecotour-fond-image-ecotour-indispo.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

.container {
width: 100%;
max-width: 1200px;
margin: 4rem auto;
padding: 0 1rem;
display: flex;
}

/* Card styles */
.card {
background: var(--card-background);
border-radius: 30px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
max-width: 800px;
}

.card-nav {
padding: 1rem 2rem;
}

.nav-links {
display: flex;
justify-content: flex-end;
gap: 2rem;
}

.nav-links a {
color: var(--text-color);
font-weight: 600;
text-decoration: none;
font-size: 25px;
}
.nav-link {
text-decoration: none;
color: var(--text-color);
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
}

.nav-icon {
width: 16px;
height: 16px;
}

/* Content styles */
.content {
padding: 2rem;
text-align: center;
}

.logo-container {
height: 80px;
margin-bottom: 2rem;
display: flex;
align-items: center;
}

.main-logo {
height: 60px;
width: auto;
}

h2 {
font-weight: normal;
}

p {
margin-bottom: 1rem;
font-size: 18px;
}

.content p {
line-height: 28px;
text-align: left;
}

.content h2 {
margin-top: 3rem;
font-size: 18px;
text-align: left;
}
.brand {
color: var(--primary-color);
font-weight: bold;
}

.brand svg {
width: 82px;
height: auto;
margin-bottom: -13px;
}

.brand-promovacances {
color: var(--promovacances-blue);
font-weight: bold;
}

.brand-promovacances img {
width: 140px;
}

.link {
color: var(--promovacances-blue);
text-decoration: none;
}

.notice {
margin: 1.5rem 0;
font-weight: bold;
}

.cta-button {
display: inline-block;
background: var(--promovacances-blue);
color: white;
padding: 0.5rem 0.7rem;
border-radius: 25px;
text-decoration: none;
margin-top: 2rem;
font-size: 0.9rem;
transition: background-color 0.3s;
text-align: center;
}

.cta-button p {
display: inline-block;

margin-bottom: 0;
}
.cta-button span {
display: inline-block;

padding: 5px 10px;
border-radius: 100%;
background-color: white;
color: #0052a3;
}

.cta-button:hover {
background: #0052a3;
}

/* Footer styles */
.footer {
background: var(--primary-color);
color: white;
padding: 3rem 1rem 1rem;
margin-top: auto;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 4rem;
}

.footer-logo {
flex: 0 0 200px;
}

.footer-logo-img {
width: 180px;
height: auto;
}

.footer-sections {
display: flex;
gap: 6rem;
margin-left: auto;
}

.footer-section h3 {
font-size: 20px;
margin-bottom: 1rem;
font-weight: 600;
font-family: Arial, Helvetica, sans-serif;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section ul li a {
color: white;
text-decoration: none;
font-size: 0.85rem;
opacity: 0.95;
font-family: Arial, Helvetica, sans-serif;
font-weight: 400;
}

.footer-section ul li a svg {
margin-right: 8px;
}

.footer-section ul li a:hover {
opacity: 1;
text-decoration: underline;
}

.footer-legal {
max-width: 1200px;
margin: 2rem auto 0;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
font-size: 12px;
opacity: 0.8;
line-height: 1.4;
}

.footer-legal p {
margin-bottom: 0rem;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}

/* Responsive styles */
@media (max-width: 768px) {
.container {
margin: 1rem auto;
}

.card {
border-radius: 20px;
}

.content {
padding: 1rem;
text-align: center;
}

.content p {
font-size: 15px;
}

.logo-container {
width: 60%;
}

.nav-links {
gap: 1rem;
}

.nav-links a {
font-size: 18px;
}

.footer-content {
flex-direction: column;
gap: 2rem;
}

.footer-sections {
flex-direction: column;
gap: 2rem;
margin-left: 0;
}

.footer-logo {
text-align: center;
}

.footer-section {
text-align: left;
}

.footer-sections {
gap: 1rem;
}
.footer-section ul li {
margin-bottom: 0;
}
.footer-logo {
display: none;
}
}
</style>
</head>
<body>
<div class="page-wrapper">
<main class="container">
<div class="card">
<nav class="card-nav">
<div class="nav-links">
<a
href="https://www.ecotour.com/espace-client/login"
class="nav-link"
>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="41.998"
height="41.998"
viewBox="0 0 41.998 41.998"
>
<defs>
<clipPath id="clip-path">
<rect
id="Rectangle_3378"
data-name="Rectangle 3378"
width="41.998"
height="41.998"
transform="translate(-3 -4)"
stroke="#000"
stroke-width="1"
/>
</clipPath>
</defs>
<g
id="Picto_Espace_client"
data-name="Picto_Espace client"
transform="translate(3 4)"
>
<g
id="Groupe_18986"
data-name="Groupe 18986"
clip-path="url(#clip-path)"
>
<path
id="Tracé_18363"
data-name="Tracé 18363"
d="M33.623,10.69A17.553,17.553,0,1,0,35,17.5a17.44,17.44,0,0,0-1.376-6.812M23.5,31.711A15.4,15.4,0,0,1,7.537,29.274a10.1,10.1,0,0,1,19.924,0,15.337,15.337,0,0,1-3.96,2.437M13.6,17.146A5.508,5.508,0,1,1,17.5,18.759,5.471,5.471,0,0,1,13.6,17.146m18.1,6.358A15.339,15.339,0,0,1,29.2,27.548a12.193,12.193,0,0,0-7.436-8.02,7.581,7.581,0,1,0-8.526,0A12.193,12.193,0,0,0,5.8,27.548,15.421,15.421,0,1,1,31.708,11.5a15.474,15.474,0,0,1,0,12"
transform="translate(0.5 -0.503)"
stroke="#000"
stroke-width="1"
/>
</g>
</g>
</svg>
Espace client
</a>
</div>
</nav>
<div class="content">
<div class="logo-container">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Groupe 21031"
width="294.981"
height="131.342"
viewBox="0 0 294.981 131.342"
>
<defs>
<clipPath id="a">
<path
data-name="Rectangle 3876"
fill="none"
d="M0 0h294.981v131.342H0z"
/>
</clipPath>
</defs>
<g data-name="Groupe 21017" clip-path="url(#a)">
<path
data-name="Tracé 58259"
d="M55.467 100.845a35.151 35.151 0 1 1 26.707-57.976l5.774-4.955a42.711 42.711 0 1 0 .037 55.469l-5.74-4.948a35.03 35.03 0 0 1-26.779 12.41"
fill="#fc0"
/>
<path
data-name="Rectangle 3868"
fill="#fc0"
d="M.378 56.222h29.078v6.047H.378z"
/>
<path
data-name="Rectangle 3869"
fill="#fc0"
d="M0 68.695h29.078v6.047H0z"
/>
<path
data-name="Rectangle 3870"
fill="#fc0"
d="M52.681 0h5.665v18.709h-5.665z"
/>
<path
data-name="Rectangle 3871"
fill="#fc0"
d="M52.681 112.633h5.665v18.709h-5.665z"
/>
<path
data-name="Rectangle 3872"
fill="#fc0"
d="m6.488 21.003 4.005-4.009 13.23 13.217-4.005 4.01z"
/>
<path
data-name="Rectangle 3873"
fill="#fc0"
d="m86.914 101.156 4.008-4.007 13.223 13.223-4.007 4.007z"
/>
<path
data-name="Rectangle 3874"
fill="#fc0"
d="m6.866 110.34 13.23-13.218 4.005 4.009-13.23 13.217z"
/>
<path
data-name="Rectangle 3875"
fill="#fc0"
d="m86.926 30.211 13.23-13.217 4.005 4.009L90.93 34.22z"
/>
<path
data-name="Tracé 58260"
d="M56.511 84.227q-8.933 0-14.353-4.867t-5.419-13.57q0-8.638 5.247-13.537t13.723-4.9q8.663 0 13.836 4.817t5.172 13.62v1.494H44.22q.458 6.113 3.874 9.069a12.4 12.4 0 0 0 8.417 2.956 13.84 13.84 0 0 0 6.813-1.677 5.56 5.56 0 0 0 3.187-4.767h7.439a11.52 11.52 0 0 1-5.668 8.4 22.14 22.14 0 0 1-11.775 2.957m10.611-21.859a12.13 12.13 0 0 0-3.931-7.607 12.266 12.266 0 0 0-14.887-.017q-3.091 2.508-3.931 7.624Z"
fill="#e20620"
/>
<path
data-name="Tracé 58261"
d="M56.511 84.227q-8.933 0-14.353-4.867t-5.419-13.57q0-8.638 5.247-13.537t13.723-4.9q8.663 0 13.836 4.817t5.172 13.62v1.494H44.22q.458 6.113 3.874 9.069a12.4 12.4 0 0 0 8.417 2.956 13.84 13.84 0 0 0 6.813-1.677 5.56 5.56 0 0 0 3.187-4.767h7.439a11.52 11.52 0 0 1-5.668 8.4 22.14 22.14 0 0 1-11.775 2.957m10.611-21.859a12.13 12.13 0 0 0-3.931-7.607 12.266 12.266 0 0 0-14.887-.017q-3.091 2.508-3.931 7.624Z"
fill="#e20620"
/>
<path
data-name="Tracé 58262"
d="M99.931 84.227q-8.627 0-13.8-4.833t-5.171-13.6q0-8.8 5.171-13.62t13.8-4.817a19.77 19.77 0 0 1 11.088 2.924 11.62 11.62 0 0 1 5.249 8.438h-7.406a5.74 5.74 0 0 0-2.729-4.817 11.2 11.2 0 0 0-6.2-1.661 10.96 10.96 0 0 0-8.359 3.405q-3.206 3.4-3.206 10.149 0 6.71 3.206 10.115a10.96 10.96 0 0 0 8.359 3.4 11.2 11.2 0 0 0 6.2-1.661 5.71 5.71 0 0 0 2.729-4.783h7.406a11.62 11.62 0 0 1-5.249 8.438 19.77 19.77 0 0 1-11.088 2.923"
fill="#e20620"
/>
<path
data-name="Tracé 58263"
d="M99.931 84.227q-8.627 0-13.8-4.833t-5.171-13.6q0-8.8 5.171-13.62t13.8-4.817a19.77 19.77 0 0 1 11.088 2.924 11.62 11.62 0 0 1 5.249 8.438h-7.406a5.74 5.74 0 0 0-2.729-4.817 11.2 11.2 0 0 0-6.2-1.661 10.96 10.96 0 0 0-8.359 3.405q-3.206 3.4-3.206 10.149 0 6.71 3.206 10.115a10.96 10.96 0 0 0 8.359 3.4 11.2 11.2 0 0 0 6.2-1.661 5.71 5.71 0 0 0 2.729-4.783h7.406a11.62 11.62 0 0 1-5.249 8.438 19.77 19.77 0 0 1-11.088 2.923"
fill="#e20620"
/>
<path
data-name="Tracé 58264"
d="M140.519 47.353q8.664 0 13.836 4.817t5.169 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58265"
d="M140.519 47.353q8.664 0 13.836 4.817t5.169 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58266"
d="M183.296 83.463a31 31 0 0 1-5.153.4q-4.428 0-6.489-1.378a5.73 5.73 0 0 1-2.558-3.538 27.5 27.5 0 0 1-.495-5.88v-20h-5v-4.916h5v-8.77h7.176v8.77h6.565v4.916h-6.565v20.331q0 3.621 1.049 4.6a4.06 4.06 0 0 0 2.882.98 23.4 23.4 0 0 0 3.588-.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58267"
d="M183.296 83.463a31 31 0 0 1-5.153.4q-4.428 0-6.489-1.378a5.73 5.73 0 0 1-2.558-3.538 27.5 27.5 0 0 1-.495-5.88v-20h-5v-4.916h5v-8.77h7.176v8.77h6.565v4.916h-6.565v20.331q0 3.621 1.049 4.6a4.06 4.06 0 0 0 2.882.98 23.4 23.4 0 0 0 3.588-.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58268"
d="M206.075 47.353q8.664 0 13.836 4.817t5.172 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58269"
d="M258.022 78.911a16.82 16.82 0 0 1-12.1 5.315q-13.7 0-13.7-13.022V48.15h7.214v22.789q0 4.319 1.756 6.212t5.8 1.893q6.031 0 11.032-5.647V48.15h7.176v35.246h-7.176Z"
fill="#e20620"
/>
<path
data-name="Tracé 58270"
d="M294.98 53.864a18.4 18.4 0 0 0-4.39-.4q-5.5 0-9.428 5.016v24.915h-7.214V48.15h7.21v4.917q4.541-5.715 10.535-5.714a22 22 0 0 1 3.283.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58271"
d="M294.98 53.864a18.4 18.4 0 0 0-4.39-.4q-5.5 0-9.428 5.016v24.915h-7.214V48.15h7.21v4.917q4.541-5.715 10.535-5.714a22 22 0 0 1 3.283.266Z"
fill="#e20620"
/>
</g>
</svg>
</div>
<h2>Chère Cliente, Cher Client,</h2>
<p>
le site

<span class="brand">
<svg
xmlns="http://www.w3.org/2000/svg"
data-name="Groupe 21031"
width="294.981"
height="131.342"
viewBox="0 0 294.981 131.342"
>
<defs>
<clipPath id="a">
<path
data-name="Rectangle 3876"
fill="none"
d="M0 0h294.981v131.342H0z"
/>
</clipPath>
</defs>
<g data-name="Groupe 21017" clip-path="url(#a)">
<path
data-name="Tracé 58259"
d="M55.467 100.845a35.151 35.151 0 1 1 26.707-57.976l5.774-4.955a42.711 42.711 0 1 0 .037 55.469l-5.74-4.948a35.03 35.03 0 0 1-26.779 12.41"
fill="#fc0"
/>
<path
data-name="Rectangle 3868"
fill="#fc0"
d="M.378 56.222h29.078v6.047H.378z"
/>
<path
data-name="Rectangle 3869"
fill="#fc0"
d="M0 68.695h29.078v6.047H0z"
/>
<path
data-name="Rectangle 3870"
fill="#fc0"
d="M52.681 0h5.665v18.709h-5.665z"
/>
<path
data-name="Rectangle 3871"
fill="#fc0"
d="M52.681 112.633h5.665v18.709h-5.665z"
/>
<path
data-name="Rectangle 3872"
fill="#fc0"
d="m6.488 21.003 4.005-4.009 13.23 13.217-4.005 4.01z"
/>
<path
data-name="Rectangle 3873"
fill="#fc0"
d="m86.914 101.156 4.008-4.007 13.223 13.223-4.007 4.007z"
/>
<path
data-name="Rectangle 3874"
fill="#fc0"
d="m6.866 110.34 13.23-13.218 4.005 4.009-13.23 13.217z"
/>
<path
data-name="Rectangle 3875"
fill="#fc0"
d="m86.926 30.211 13.23-13.217 4.005 4.009L90.93 34.22z"
/>
<path
data-name="Tracé 58260"
d="M56.511 84.227q-8.933 0-14.353-4.867t-5.419-13.57q0-8.638 5.247-13.537t13.723-4.9q8.663 0 13.836 4.817t5.172 13.62v1.494H44.22q.458 6.113 3.874 9.069a12.4 12.4 0 0 0 8.417 2.956 13.84 13.84 0 0 0 6.813-1.677 5.56 5.56 0 0 0 3.187-4.767h7.439a11.52 11.52 0 0 1-5.668 8.4 22.14 22.14 0 0 1-11.775 2.957m10.611-21.859a12.13 12.13 0 0 0-3.931-7.607 12.266 12.266 0 0 0-14.887-.017q-3.091 2.508-3.931 7.624Z"
fill="#e20620"
/>
<path
data-name="Tracé 58261"
d="M56.511 84.227q-8.933 0-14.353-4.867t-5.419-13.57q0-8.638 5.247-13.537t13.723-4.9q8.663 0 13.836 4.817t5.172 13.62v1.494H44.22q.458 6.113 3.874 9.069a12.4 12.4 0 0 0 8.417 2.956 13.84 13.84 0 0 0 6.813-1.677 5.56 5.56 0 0 0 3.187-4.767h7.439a11.52 11.52 0 0 1-5.668 8.4 22.14 22.14 0 0 1-11.775 2.957m10.611-21.859a12.13 12.13 0 0 0-3.931-7.607 12.266 12.266 0 0 0-14.887-.017q-3.091 2.508-3.931 7.624Z"
fill="#e20620"
/>
<path
data-name="Tracé 58262"
d="M99.931 84.227q-8.627 0-13.8-4.833t-5.171-13.6q0-8.8 5.171-13.62t13.8-4.817a19.77 19.77 0 0 1 11.088 2.924 11.62 11.62 0 0 1 5.249 8.438h-7.406a5.74 5.74 0 0 0-2.729-4.817 11.2 11.2 0 0 0-6.2-1.661 10.96 10.96 0 0 0-8.359 3.405q-3.206 3.4-3.206 10.149 0 6.71 3.206 10.115a10.96 10.96 0 0 0 8.359 3.4 11.2 11.2 0 0 0 6.2-1.661 5.71 5.71 0 0 0 2.729-4.783h7.406a11.62 11.62 0 0 1-5.249 8.438 19.77 19.77 0 0 1-11.088 2.923"
fill="#e20620"
/>
<path
data-name="Tracé 58263"
d="M99.931 84.227q-8.627 0-13.8-4.833t-5.171-13.6q0-8.8 5.171-13.62t13.8-4.817a19.77 19.77 0 0 1 11.088 2.924 11.62 11.62 0 0 1 5.249 8.438h-7.406a5.74 5.74 0 0 0-2.729-4.817 11.2 11.2 0 0 0-6.2-1.661 10.96 10.96 0 0 0-8.359 3.405q-3.206 3.4-3.206 10.149 0 6.71 3.206 10.115a10.96 10.96 0 0 0 8.359 3.4 11.2 11.2 0 0 0 6.2-1.661 5.71 5.71 0 0 0 2.729-4.783h7.406a11.62 11.62 0 0 1-5.249 8.438 19.77 19.77 0 0 1-11.088 2.923"
fill="#e20620"
/>
<path
data-name="Tracé 58264"
d="M140.519 47.353q8.664 0 13.836 4.817t5.169 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58265"
d="M140.519 47.353q8.664 0 13.836 4.817t5.169 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58266"
d="M183.296 83.463a31 31 0 0 1-5.153.4q-4.428 0-6.489-1.378a5.73 5.73 0 0 1-2.558-3.538 27.5 27.5 0 0 1-.495-5.88v-20h-5v-4.916h5v-8.77h7.176v8.77h6.565v4.916h-6.565v20.331q0 3.621 1.049 4.6a4.06 4.06 0 0 0 2.882.98 23.4 23.4 0 0 0 3.588-.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58267"
d="M183.296 83.463a31 31 0 0 1-5.153.4q-4.428 0-6.489-1.378a5.73 5.73 0 0 1-2.558-3.538 27.5 27.5 0 0 1-.495-5.88v-20h-5v-4.916h5v-8.77h7.176v8.77h6.565v4.916h-6.565v20.331q0 3.621 1.049 4.6a4.06 4.06 0 0 0 2.882.98 23.4 23.4 0 0 0 3.588-.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58268"
d="M206.075 47.353q8.664 0 13.836 4.817t5.172 13.62q0 8.77-5.172 13.6t-13.836 4.833q-8.628 0-13.8-4.833t-5.172-13.6q0-8.8 5.172-13.62t13.8-4.817m0 31.957a10.96 10.96 0 0 0 8.359-3.4q3.206-3.406 3.206-10.116 0-6.744-3.206-10.148a11.96 11.96 0 0 0-16.718 0q-3.206 3.4-3.206 10.148 0 6.711 3.206 10.116a10.96 10.96 0 0 0 8.359 3.4"
fill="#e20620"
/>
<path
data-name="Tracé 58269"
d="M258.022 78.911a16.82 16.82 0 0 1-12.1 5.315q-13.7 0-13.7-13.022V48.15h7.214v22.789q0 4.319 1.756 6.212t5.8 1.893q6.031 0 11.032-5.647V48.15h7.176v35.246h-7.176Z"
fill="#e20620"
/>
<path
data-name="Tracé 58270"
d="M294.98 53.864a18.4 18.4 0 0 0-4.39-.4q-5.5 0-9.428 5.016v24.915h-7.214V48.15h7.21v4.917q4.541-5.715 10.535-5.714a22 22 0 0 1 3.283.266Z"
fill="#e20620"
/>
<path
data-name="Tracé 58271"
d="M294.98 53.864a18.4 18.4 0 0 0-4.39-.4q-5.5 0-9.428 5.016v24.915h-7.214V48.15h7.21v4.917q4.541-5.715 10.535-5.714a22 22 0 0 1 3.283.266Z"
fill="#e20620"
/>
</g>
</svg>
</span>
fait partie du groupe

<span class="brand-promovacances">
<img
src="https://static.service-voyages.com/photos/vignettes/ecotour/20250110111757-ecotour-Groupe_21042_1.png"
alt="promovacances"
/>
</span>
Nous avons décidé de mutualiser désormais nos offres de voyages au
sein d’un seul et même site Internet. <br />
<br />A compter du 1er janvier 2025, nous vous donnons donc
rendez-vous sur

<a href="https://promovacances.com" class="link"
>promovacances.com</a
>, avec des séjours proposant toujours un excellent rapport
qualité-prix.
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="44.038"
height="20"
viewBox="0 0 44.038 20"
>
<defs>
<clipPath id="clip-path">
<rect
id="Rectangle_3884"
data-name="Rectangle 3884"
width="20.475"
height="20"
fill="none"
/>
</clipPath>
</defs>
<g
id="Groupe_21049"
data-name="Groupe 21049"
transform="translate(-635.071 -617)"
>
<g
id="Groupe_21035"
data-name="Groupe 21035"
transform="translate(635.071 617)"
>
<g
id="Groupe_21034"
data-name="Groupe 21034"
clip-path="url(#clip-path)"
>
<path
id="Tracé_58290"
data-name="Tracé 58290"
d="M177.7,22.417l3.359-4.519.52-2.212,1.4-.348a8.573,8.573,0,0,1,1.36.96c.04.16,0,4.639,0,4.639l-.56,1.08,4.479.04,1.159.6s.881,1.04.721,1.04-1.04,1.4-1.04,1.4l.84,1.64-.28,1.36-.76.664.92.736v.76l-.88,1.313,1,.969-.28,1.228-1.08.449-7.718.2-3.159-1.44-.72-.437V22.457Z"
transform="translate(-169.907 -14.725)"
fill="#fc0"
fill-rule="evenodd"
/>
<path
id="Tracé_58291"
data-name="Tracé 58291"
d="M27.384,185.429a.671.671,0,0,1-.671.671H22.266a.673.673,0,0,1-.672-.671v-10.17a.673.673,0,0,1,.672-.671h4.447a.671.671,0,0,1,.671.671Z"
transform="translate(-20.73 -167.606)"
fill="#17a4a8"
fill-rule="evenodd"
/>
<path
id="Tracé_58292"
data-name="Tracé 58292"
d="M48.224,397.581a.746.746,0,1,1-.746-.746.746.746,0,0,1,.746.746"
transform="translate(-44.864 -380.965)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Tracé_58293"
data-name="Tracé 58293"
d="M2.645,16.852a.268.268,0,1,1,.268-.269h0a.268.268,0,0,1-.267.268h0m0-1.5a1.228,1.228,0,1,0,1.228,1.228,1.228,1.228,0,0,0-1.228-1.228m15.707-4.3a1.164,1.164,0,0,1,.083,2.325.48.48,0,1,0,0,.96,1.018,1.018,0,0,1,1.079,1,.993.993,0,0,1-.934,1,.48.48,0,1,0,0,.96.894.894,0,0,1,.934.872.872.872,0,0,1-.872.871H11.528a1.778,1.778,0,0,1-.657-.118L7.549,17.684V8.354c2.106-1.428,3.681-3.887,4.685-7.316.843-.219,1.16.082,1.27.187.9.858.664,3.662.181,5.586H11.705a.48.48,0,0,0,0,.96h6.647a1.162,1.162,0,1,1,0,2.325.48.48,0,0,0,0,.96ZM6,18.414a.591.591,0,0,0,.591-.591V7.653A.591.591,0,0,0,6,7.062H1.551a.593.593,0,0,0-.592.591v10.17a.593.593,0,0,0,.592.591Zm14.477-9.48a2.124,2.124,0,0,0-2.123-2.122H14.671a16.114,16.114,0,0,0,.391-2.789c.074-1.683-.228-2.858-.9-3.493A2.3,2.3,0,0,0,11.692.2a.48.48,0,0,0-.309.325,12.673,12.673,0,0,1-3.9,6.685A1.555,1.555,0,0,0,6,6.1H1.551A1.552,1.552,0,0,0,0,7.653v10.17a1.552,1.552,0,0,0,1.551,1.551H6a1.555,1.555,0,0,0,1.328-.749l3.211,1.2a2.7,2.7,0,0,0,.991.178h7.114a1.833,1.833,0,0,0,1.832-1.831,1.8,1.8,0,0,0-.636-1.38,1.986,1.986,0,0,0,.636-1.449,1.914,1.914,0,0,0-.726-1.51,2.165,2.165,0,0,0,.726-1.611,2.119,2.119,0,0,0-.779-1.642,2.119,2.119,0,0,0,.779-1.642Z"
transform="translate(0 0)"
fill-rule="evenodd"
/>
</g>
</g>
<g
id="Groupe_21036"
data-name="Groupe 21036"
transform="translate(658.635 617)"
>
<g
id="Groupe_21034-2"
data-name="Groupe 21034"
clip-path="url(#clip-path)"
>
<path
id="Tracé_58290-2"
data-name="Tracé 58290"
d="M177.7,22.417l3.359-4.519.52-2.212,1.4-.348a8.573,8.573,0,0,1,1.36.96c.04.16,0,4.639,0,4.639l-.56,1.08,4.479.04,1.159.6s.881,1.04.721,1.04-1.04,1.4-1.04,1.4l.84,1.64-.28,1.36-.76.664.92.736v.76l-.88,1.313,1,.969-.28,1.228-1.08.449-7.718.2-3.159-1.44-.72-.437V22.457Z"
transform="translate(-169.907 -14.725)"
fill="#fc0"
fill-rule="evenodd"
/>
<path
id="Tracé_58291-2"
data-name="Tracé 58291"
d="M27.384,185.429a.671.671,0,0,1-.671.671H22.266a.673.673,0,0,1-.672-.671v-10.17a.673.673,0,0,1,.672-.671h4.447a.671.671,0,0,1,.671.671Z"
transform="translate(-20.73 -167.606)"
fill="#17a4a8"
fill-rule="evenodd"
/>
<path
id="Tracé_58292-2"
data-name="Tracé 58292"
d="M48.224,397.581a.746.746,0,1,1-.746-.746.746.746,0,0,1,.746.746"
transform="translate(-44.864 -380.965)"
fill="#fff"
fill-rule="evenodd"
/>
<path
id="Tracé_58293-2"
data-name="Tracé 58293"
d="M2.645,16.852a.268.268,0,1,1,.268-.269h0a.268.268,0,0,1-.267.268h0m0-1.5a1.228,1.228,0,1,0,1.228,1.228,1.228,1.228,0,0,0-1.228-1.228m15.707-4.3a1.164,1.164,0,0,1,.083,2.325.48.48,0,1,0,0,.96,1.018,1.018,0,0,1,1.079,1,.993.993,0,0,1-.934,1,.48.48,0,1,0,0,.96.894.894,0,0,1,.934.872.872.872,0,0,1-.872.871H11.528a1.778,1.778,0,0,1-.657-.118L7.549,17.684V8.354c2.106-1.428,3.681-3.887,4.685-7.316.843-.219,1.16.082,1.27.187.9.858.664,3.662.181,5.586H11.705a.48.48,0,0,0,0,.96h6.647a1.162,1.162,0,1,1,0,2.325.48.48,0,0,0,0,.96ZM6,18.414a.591.591,0,0,0,.591-.591V7.653A.591.591,0,0,0,6,7.062H1.551a.593.593,0,0,0-.592.591v10.17a.593.593,0,0,0,.592.591Zm14.477-9.48a2.124,2.124,0,0,0-2.123-2.122H14.671a16.114,16.114,0,0,0,.391-2.789c.074-1.683-.228-2.858-.9-3.493A2.3,2.3,0,0,0,11.692.2a.48.48,0,0,0-.309.325,12.673,12.673,0,0,1-3.9,6.685A1.555,1.555,0,0,0,6,6.1H1.551A1.552,1.552,0,0,0,0,7.653v10.17a1.552,1.552,0,0,0,1.551,1.551H6a1.555,1.555,0,0,0,1.328-.749l3.211,1.2a2.7,2.7,0,0,0,.991.178h7.114a1.833,1.833,0,0,0,1.832-1.831,1.8,1.8,0,0,0-.636-1.38,1.986,1.986,0,0,0,.636-1.449,1.914,1.914,0,0,0-.726-1.51,2.165,2.165,0,0,0,.726-1.611,2.119,2.119,0,0,0-.779-1.642,2.119,2.119,0,0,0,.779-1.642Z"
transform="translate(0 0)"
fill-rule="evenodd"
/>
</g>
</g>
</g>
</svg>
</p>

<p class="notice">
Pour les clients ayant réservé un prochain séjour, la continuité
de services est bien entendu pleinement assurée : vous pouvez
accéder à votre dossier via la rubrique « Espace client » ou nous
joindre au 01 70 36 50 02.
</p>
<p>
Nous vous remercions pour votre confiance et espérons continuer à
vous accompagner dans vos projets de vacances.
</p>
<p>
Nous serons ravis de vous accompagner dans vos prochaines
escapades !
</p>
<p>Bien à vous,</p>
<p>
<strong>L'équipe Ecotour</strong>
</p>
<a href="https://promovacances.com" class="cta-button">
<p>aller sur Promovacances</p>
<span>➔</span>
</a>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-content">
<div class="footer-logo">
<svg
xmlns="http://www.w3.org/2000/svg"
id="Logo"
width="236.155"
height="104.672"
viewBox="0 0 236.155 104.672"
>
<g id="Groupe_19940" data-name="Groupe 19940">
<g id="Groupe_19199" data-name="Groupe 19199">
<path
id="Tracé_16364"
data-name="Tracé 16364"
d="M294.393,168.287a28.038,28.038,0,1,1,21.382-46.2l4.623-3.949a34.079,34.079,0,1,0,.029,44.205l-4.6-3.944a28.1,28.1,0,0,1-21.438,9.89"
transform="translate(-249.987 -87.92)"
fill="#efefef"
/>
<rect
id="Rectangle_3068"
data-name="Rectangle 3068"
width="23.28"
height="4.819"
transform="translate(0.302 44.805)"
fill="#efefef"
/>
<rect
id="Rectangle_3069"
data-name="Rectangle 3069"
width="23.28"
height="4.819"
transform="translate(0 54.745)"
fill="#efefef"
/>
<rect
id="Rectangle_3070"
data-name="Rectangle 3070"
width="4.535"
height="14.91"
transform="translate(42.176)"
fill="#efefef"
/>
<rect
id="Rectangle_3071"
data-name="Rectangle 3071"
width="4.535"
height="14.91"
transform="translate(42.176 89.762)"
fill="#efefef"
/>
<path
id="Rectangle_3072"
data-name="Rectangle 3072"
d="M0,0,4.5.029l.1,14.93L.1,14.93Z"
transform="translate(5.195 16.738) rotate(-45)"
fill="#efefef"
/>
<path
id="Rectangle_3073"
data-name="Rectangle 3073"
d="M0,0,4.5.029l.1,14.93L.1,14.93Z"
transform="translate(69.591 80.595) rotate(-45.029)"
fill="#efefef"
/>
<path
id="Rectangle_3074"
data-name="Rectangle 3074"
d="M0,0,14.93.1l.029,4.5L.029,4.5Z"
transform="translate(5.496 87.934) rotate(-44.975)"
fill="#efefef"
/>
<path
id="Rectangle_3075"
data-name="Rectangle 3075"
d="M0,0,14.93.1l.029,4.5L.029,4.5Z"
transform="translate(69.591 24.077) rotate(-44.974)"
fill="#efefef"
/>
</g>
<g
id="Groupe_19201"
data-name="Groupe 19201"
transform="translate(29.413 31.384)"
>
<g
id="Groupe_19200"
data-name="Groupe 19200"
transform="translate(0 6.355)"
>
<path
id="Tracé_16365"
data-name="Tracé 16365"
d="M326.669,187.188q-7.151,0-11.491-3.878t-4.339-10.815q0-6.887,4.2-10.788t10.986-3.905q6.936,0,11.077,3.839t4.14,10.854v1.191H316.83q.367,4.871,3.1,7.227a9.965,9.965,0,0,0,6.739,2.356,11.123,11.123,0,0,0,5.454-1.337,4.433,4.433,0,0,0,2.552-3.8h5.96a9.18,9.18,0,0,1-4.538,6.7,17.787,17.787,0,0,1-9.427,2.356m8.495-17.42a9.656,9.656,0,0,0-3.148-6.063,9.855,9.855,0,0,0-11.918-.013,9.429,9.429,0,0,0-3.147,6.075Z"
transform="translate(-310.84 -157.802)"
fill="#efefef"
/>
</g>
<path
id="Tracé_16366"
data-name="Tracé 16366"
d="M326.669,187.188q-7.151,0-11.491-3.878t-4.339-10.815q0-6.887,4.2-10.788t10.986-3.905q6.936,0,11.077,3.839t4.14,10.854v1.191H316.83q.367,4.871,3.1,7.227a9.965,9.965,0,0,0,6.739,2.356,11.123,11.123,0,0,0,5.454-1.337,4.433,4.433,0,0,0,2.552-3.8h5.96a9.18,9.18,0,0,1-4.538,6.7A17.8,17.8,0,0,1,326.669,187.188Zm8.5-17.42a9.657,9.657,0,0,0-3.148-6.063,9.855,9.855,0,0,0-11.918-.013,9.429,9.429,0,0,0-3.147,6.075Z"
transform="translate(-310.84 -151.447)"
fill="#efefef"
/>
<path
id="Tracé_16367"
data-name="Tracé 16367"
d="M419.537,187.188q-6.906,0-11.047-3.852t-4.14-10.841q0-7.016,4.14-10.854t11.047-3.839a15.884,15.884,0,0,1,8.877,2.33,9.251,9.251,0,0,1,4.2,6.724h-5.931a4.571,4.571,0,0,0-2.185-3.839,9,9,0,0,0-4.966-1.324,8.791,8.791,0,0,0-6.692,2.714q-2.564,2.714-2.564,8.088,0,5.348,2.565,8.062a8.788,8.788,0,0,0,6.692,2.714,9,9,0,0,0,4.966-1.323,4.549,4.549,0,0,0,2.185-3.813h5.929a9.253,9.253,0,0,1-4.2,6.725,15.883,15.883,0,0,1-8.877,2.33"
transform="translate(-368.948 -151.447)"
fill="#efefef"
/>
<path
id="Tracé_16368"
data-name="Tracé 16368"
d="M419.537,187.188q-6.906,0-11.047-3.852t-4.14-10.841q0-7.016,4.14-10.854t11.047-3.839a15.884,15.884,0,0,1,8.877,2.33,9.251,9.251,0,0,1,4.2,6.724h-5.931a4.571,4.571,0,0,0-2.185-3.839,9,9,0,0,0-4.966-1.324,8.791,8.791,0,0,0-6.692,2.714q-2.564,2.714-2.564,8.088,0,5.348,2.565,8.062a8.788,8.788,0,0,0,6.692,2.714,9,9,0,0,0,4.966-1.323,4.549,4.549,0,0,0,2.185-3.813h5.929a9.253,9.253,0,0,1-4.2,6.725A15.873,15.873,0,0,1,419.537,187.188Z"
transform="translate(-368.948 -151.447)"
fill="#efefef"
/>
<path
id="Tracé_16369"
data-name="Tracé 16369"
d="M505.362,157.8q6.936,0,11.077,3.839t4.141,10.854q0,6.989-4.141,10.841t-11.077,3.853q-6.907,0-11.047-3.852t-4.141-10.841q0-7.015,4.141-10.854t11.047-3.84m0,25.469a8.787,8.787,0,0,0,6.692-2.714q2.564-2.714,2.564-8.062,0-5.375-2.565-8.088a9.609,9.609,0,0,0-13.384,0q-2.564,2.714-2.564,8.088,0,5.348,2.564,8.062a8.787,8.787,0,0,0,6.692,2.714"
transform="translate(-422.279 -151.446)"
fill="#efefef"
/>
<path
id="Tracé_16370"
data-name="Tracé 16370"
d="M505.362,157.8q6.936,0,11.077,3.839t4.141,10.854q0,6.989-4.141,10.841t-11.077,3.853q-6.907,0-11.047-3.852t-4.141-10.841q0-7.015,4.141-10.854T505.362,157.8Zm0,25.469a8.787,8.787,0,0,0,6.692-2.714q2.564-2.714,2.564-8.062,0-5.375-2.565-8.088a9.609,9.609,0,0,0-13.384,0q-2.564,2.714-2.564,8.088,0,5.348,2.564,8.062A8.787,8.787,0,0,0,505.362,183.269Z"
transform="translate(-422.279 -151.446)"
fill="#efefef"
/>
<path
id="Tracé_16371"
data-name="Tracé 16371"
d="M594.868,176.071a25,25,0,0,1-4.125.318,9.577,9.577,0,0,1-5.195-1.1,4.567,4.567,0,0,1-2.048-2.82,21.793,21.793,0,0,1-.4-4.686V151.848h-4v-3.918h4V140.94h5.745v6.989H594.1v3.918h-5.256v16.2q0,2.886.84,3.667A3.258,3.258,0,0,0,592,172.5a18.827,18.827,0,0,0,2.872-.212Z"
transform="translate(-477.538 -140.94)"
fill="#efefef"
/>
<path
id="Tracé_16372"
data-name="Tracé 16372"
d="M594.868,176.071a25,25,0,0,1-4.125.318,9.577,9.577,0,0,1-5.195-1.1,4.567,4.567,0,0,1-2.048-2.82,21.793,21.793,0,0,1-.4-4.686V151.848h-4v-3.918h4V140.94h5.745v6.989H594.1v3.918h-5.256v16.2q0,2.886.84,3.667A3.258,3.258,0,0,0,592,172.5a18.827,18.827,0,0,0,2.872-.212Z"
transform="translate(-477.538 -140.94)"
fill="#efefef"
/>
<path
id="Tracé_16373"
data-name="Tracé 16373"
d="M643.987,157.8q6.936,0,11.077,3.839t4.14,10.854q0,6.989-4.14,10.841t-11.077,3.853q-6.907,0-11.047-3.852t-4.14-10.843q0-7.016,4.141-10.854T643.987,157.8Zm0,25.469a8.788,8.788,0,0,0,6.692-2.714q2.564-2.714,2.564-8.062,0-5.375-2.564-8.088a9.608,9.608,0,0,0-13.384,0q-2.565,2.714-2.565,8.088,0,5.348,2.565,8.062A8.787,8.787,0,0,0,643.987,183.269Z"
transform="translate(-508.422 -151.446)"
fill="#efefef"
/>
<path
id="Tracé_16374"
data-name="Tracé 16374"
d="M744.855,184a13.493,13.493,0,0,1-9.687,4.236q-10.97,0-10.974-10.377V159.485h5.775v18.161q0,3.443,1.406,4.951t4.645,1.509q4.831,0,8.831-4.5v-20.12H750.6v28.09h-5.745Z"
transform="translate(-567.701 -152.496)"
fill="#efefef"
/>
<path
id="Tracé_16375"
data-name="Tracé 16375"
d="M829.279,162.988a14.812,14.812,0,0,0-3.515-.318,9.354,9.354,0,0,0-7.548,4v19.855H812.44V158.434h5.776v3.918q3.638-4.554,8.434-4.553a17.691,17.691,0,0,1,2.628.212Z"
transform="translate(-622.536 -151.445)"
fill="#efefef"
/>
<path
id="Tracé_16376"
data-name="Tracé 16376"
d="M829.279,162.988a14.812,14.812,0,0,0-3.515-.318,9.354,9.354,0,0,0-7.548,4v19.855H812.44V158.434h5.776v3.918q3.638-4.554,8.434-4.553a17.691,17.691,0,0,1,2.628.212Z"
transform="translate(-622.536 -151.445)"
fill="#efefef"
/>
</g>
</g>
</svg>
</div>
<div class="footer-sections">
<div class="footer-section">
<h3>Services clients</h3>
<ul>
<li>
<a
href="https://www.ecotour.com/espace-client/login"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4.483"
height="7.685"
viewBox="0 0 4.483 7.685"
>
<path
id="picto_arrow"
data-name="picto arrow"
d="M1.178,4.284,3.846,1.642,6.514,4.284a.69.69,0,0,0,.97,0,.673.673,0,0,0,0-.96L4.327.2a.69.69,0,0,0-.97,0L.2,3.324a.673.673,0,0,0,0,.96A.7.7,0,0,0,1.178,4.284Z"
transform="translate(4.483) rotate(90)"
fill="#fff"
/></svg
>Suivi de votre commande
</a>
</li>
</ul>
</div>
<div class="footer-section">
<h3>Infos pratiques</h3>
<ul>
<li>
<a href="https://www.ecotour.com/information/#assurances">
<svg
xmlns="http://www.w3.org/2000/svg"
width="4.483"
height="7.685"
viewBox="0 0 4.483 7.685"
>
<path
id="picto_arrow"
data-name="picto arrow"
d="M1.178,4.284,3.846,1.642,6.514,4.284a.69.69,0,0,0,.97,0,.673.673,0,0,0,0-.96L4.327.2a.69.69,0,0,0-.97,0L.2,3.324a.673.673,0,0,0,0,.96A.7.7,0,0,0,1.178,4.284Z"
transform="translate(4.483) rotate(90)"
fill="#fff"
/></svg
>Assurance
</a>
</li>
<li>
<a
href="https://www.ecotour.com/information/#conditions-vente"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4.483"
height="7.685"
viewBox="0 0 4.483 7.685"
>
<path
id="picto_arrow"
data-name="picto arrow"
d="M1.178,4.284,3.846,1.642,6.514,4.284a.69.69,0,0,0,.97,0,.673.673,0,0,0,0-.96L4.327.2a.69.69,0,0,0-.97,0L.2,3.324a.673.673,0,0,0,0,.96A.7.7,0,0,0,1.178,4.284Z"
transform="translate(4.483) rotate(90)"
fill="#fff"
/></svg
>Conditions générales de vente
</a>
</li>
<li>
<a
href="https://www.ecotour.com/information/#mentions-legales"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4.483"
height="7.685"
viewBox="0 0 4.483 7.685"
>
<path
id="picto_arrow"
data-name="picto arrow"
d="M1.178,4.284,3.846,1.642,6.514,4.284a.69.69,0,0,0,.97,0,.673.673,0,0,0,0-.96L4.327.2a.69.69,0,0,0-.97,0L.2,3.324a.673.673,0,0,0,0,.96A.7.7,0,0,0,1.178,4.284Z"
transform="translate(4.483) rotate(90)"
fill="#fff"
/></svg
>Mentions légales
</a>
</li>
<li>
<a
href="https://www.ecotour.com/information/#politique-de-confidentialite"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="4.483"
height="7.685"
viewBox="0 0 4.483 7.685"
>
<path
id="picto_arrow"
data-name="picto arrow"
d="M1.178,4.284,3.846,1.642,6.514,4.284a.69.69,0,0,0,.97,0,.673.673,0,0,0,0-.96L4.327.2a.69.69,0,0,0-.97,0L.2,3.324a.673.673,0,0,0,0,.96A.7.7,0,0,0,1.178,4.284Z"
transform="translate(4.483) rotate(90)"
fill="#fff"
/></svg
>Politique de confidentialité
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-legal">
<p>
Sur Promovacances, les tarifs des voyages sont affichés TTC (tout le
prix du séjour HT compris les taxes obligatoires hors taxes de
séjour), prix "à partir de" et sous réserve de disponibilité.
</p>
<p>
Les tarifs n'incluent pas les frais de dossier et de dernière
minute, et les suppléments spécifiques susceptibles de s'appliquer à
certaines destinations.
</p>
<p>
La vente de voyages hors la marque l'ami pas cher est assurée par
"Karavel", 17 rue de l'Echiquier 75010 Paris - SAS avec capital de
145 131 987 euros - RCS Paris B-532 321 916 - IM 075110061 - RCP
Allianz IARD n° 086 823 481 - Garantie : APS - L'ami pas cher /
75010 Paris - Garant : APS - N° de licence : IM075110061 - TVA : FR
35 532 321 916 - Tel : 01 44 82 16 00 - Une agence Karavel -
www.karavel.com et PROMOVACANCES SASU AU CAPITAL DE 12 662 541 EUROS
- RCS PARIS B 503 339 749 - SIRET : 503 339 749 00297 - APE : 7912Z
- Siège social : 17 rue de l'Echiquier 75010 PARIS LA FRANCE - TVA
Intra : FR 12503339749 - Tél : 01 58 91 60 00 - Fax : 01 58 91 60 66
- Garantie : APS - N° de licence : IM075110063 - RCP : HISCOX - 19
rue Louis Legrand 75002 PARIS - Tel : 0810 50 20 10 - Fax : 0810 00
22 22 - N° Orias : 130 069 18 - Assurance RCP : HISCOX - 19 rue
Louis Le Grand 75002 PARIS - Tel : 0810 50 20 10 - Fax : 0810 00 22
22 - N° Orias : 130 069 18
</p>
<p>Conditions de confidentialité :</p>
<p>
(1) Pour plus d'information sur le contrôle des avis des membres de
TripAdvisor, cliquez ici(*) Conditions d'utilisation du bon de
réduction : Art. 1 : Le bon de réduction Partir Pas Cher est accordé
comme moyen de règlement total ou partiel d'un voyage à forfait
commercial en mode « vente » sur voyage à forfait, en entrant un
unique promotionnel comprenant le transport, les transferts et
l'hébergement, à l'exclusion des croisières, de la catégorie
spéciale, et des offres Flexbox. Art. 2 : Le bon de réduction est
valable pour toute nouvelle réservation à la newsletter Partir Pas
Cher, et sera envoyé sous 48h. Art.3 : Toute commande validée avant
application du bon de réduction ne pourra pas bénéficier de la
remise.
</p>
</div>
</footer>
</div>
</body>
</html>

Ads.Txt Alerts - A trading name of Red Volcano Limited

Waterloo Buildings, Second Floor Rear, 53 London Road, Southampton, Hampshire, United Kingdom, SO15 2AD

© Red Volcano 2020. All Rights Reserved.