Франшиза MWR Life 2026 — для любителей путешествий и мероприятий | procreator.top
:root {
--primary: #0d3b66;
--accent: #5e81ac;
--text: #2d3748;
--text-light: #718096;
--bg: #ffffff;
--bg-card: #ffffff;
--font-family: 'Inter', sans-serif;
--font-family-heading: 'Playfair Display', serif;
--touch-target-size: 44px;
--border-radius: 12px;
--border-thin: 1px solid rgba(13, 59, 102, 0.12);
--spacing-xs: clamp(8px, 1.5vw, 10px);
--spacing-s: clamp(12px, 2vw, 16px);
--spacing-m: clamp(18px, 2.8vw, 22px);
--spacing-l: clamp(24px, 3.6vw, 30px);
--spacing-xl: clamp(32px, 4.4vw, 40px);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font-family);
line-height: 1.6;
color: var(--text);
background: var(--bg);
min-height: 100vh;
display: flex;
flex-direction: column;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
.container {
max-width: clamp(360px, 94vw, 1360px);
margin: 0 auto;
padding: var(--spacing-xs);
}
.button,
.header-btn,
.phone-link,
.ppm-esim-link {
display: inline-flex;
align-items: center;
justify-content: center;
padding: clamp(10px, 1.8vw, 12px) clamp(18px, 3vw, 22px);
background: transparent;
color: var(--primary);
text-decoration: none;
border-radius: var(--border-radius);
font-size: clamp(0.9rem, 2vw, 1.05rem);
font-weight: 600;
transition: all 0.2s ease;
min-height: 44px;
min-width: clamp(120px, 26vw, 140px);
border: 1px solid var(--primary);
font-family: var(--font-family);
}
.button:hover,
.header-btn:hover,
.phone-link:hover,
.ppm-esim-link:hover {
background: rgba(13, 59, 102, 0.04);
transform: translateY(-1px);
}
.button:focus,
.header-btn:focus,
.phone-link:focus,
.ppm-esim-link:focus {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.section {
background: var(--bg-card);
padding: var(--spacing-m);
margin-bottom: var(--spacing-l);
border-radius: var(--border-radius);
opacity: 0;
animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
border: var(--border-thin);
}
h1, h2, h3 {
color: var(--primary);
font-weight: 700;
margin-bottom: var(--spacing-s);
line-height: 1.35;
text-align: center;
font-family: var(--font-family-heading);
}
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3.4vw, 1.8rem); }
p, ul li, ol li {
font-size: clamp(0.9rem, 2vw, 1.05rem);
color: var(--text-light);
margin-bottom: 0;
line-height: 1.5;
font-weight: 400;
font-family: var(--font-family);
}
ul, ol {
padding-left: clamp(20px, 3.5vw, 24px);
margin: var(--spacing-s) 0;
}
.small-text {
font-size: clamp(0.85rem, 1.8vw, 0.95rem);
color: var(--text-light);
text-align: center;
padding: var(--spacing-xs);
border-radius: var(--border-radius);
}
.ambassador-grid,
.fam-trips-grid {
display: grid;
gap: var(--spacing-l);
align-items: start;
}
@media (max-width: 1023px) {
.ambassador-grid,
.fam-trips-grid {
grid-template-columns: 1fr;
}
}
@media (min-width: 1024px) {
.ambassador-grid,
.fam-trips-grid {
grid-template-columns: 1fr 360px;
}
}
.ambassador-actions .button,
.fam-trips-actions .button {
width: 100%;
justify-content: center;
margin: 8px 0;
}
@media (min-width: 1024px) {
.ambassador-actions .button,
.fam-trips-actions .button {
width: auto;
min-width: 240px;
}
}
.presentation-section details,
.travel-advantage-section details,
.ambassador-section details,
.fam-trips-section details {
margin-bottom: var(--spacing-s);
}
.presentation-section summary,
.travel-advantage-section summary,
.ambassador-section summary,
.fam-trips-section summary {
font-size: clamp(0.92rem, 2vw, 1rem);
font-weight: 600;
color: var(--primary);
padding: var(--spacing-s);
background: transparent;
border: 1px solid var(--primary);
border-radius: 10px;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
justify-content: center;
transition: background 0.2s ease;
font-family: var(--font-family);
}
.presentation-section details[open] summary,
.travel-advantage-section details[open] summary,
.ambassador-section details[open] summary,
.fam-trips-section details[open] summary {
background: rgba(94, 129, 172, 0.08);
}
.chevron {
margin-left: auto;
transition: transform 0.2s ease;
}
.presentation-section details[open] .chevron,
.travel-advantage-section details[open] .chevron,
.ambassador-section details[open] .chevron,
.fam-trips-section details[open] .chevron {
transform: rotate(180deg);
}
.presentation-section details div,
.travel-advantage-section details div,
.ambassador-section details div,
.fam-trips-section details div {
max-height: 0;
opacity: 0;
overflow: hidden;
padding: 0 var(--spacing-s);
background: var(--bg-card);
border-radius: 8px;
transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
border: var(--border-thin);
}
.presentation-section details[open] div,
.travel-advantage-section details[open] div,
.ambassador-section details[open] div,
.fam-trips-section details[open] div {
max-height: 800px;
opacity: 1;
padding: var(--spacing-s);
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
header {
background: var(--bg);
z-index: 100;
}
@media (min-width: 769px) {
.header {
padding: clamp(8px, 1.2vw, 12px) 0;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: clamp(12px, 2vw, 16px);
}
.header__logo span {
font-size: clamp(1.1rem, 2vw, 1.3rem);
font-weight: 700;
color: var(--primary);
}
.header__nav {
display: flex;
align-items: center;
gap: clamp(10px, 1.6vw, 14px);
margin: 0;
}
.header-link,
.phone-link {
font-size: clamp(0.85rem, 1.6vw, 0.95rem);
padding: 6px 10px;
min-height: 36px;
}
.language-switcher {
padding: 6px 10px;
min-height: 36px;
font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}
.language-switcher select {
font-size: inherit;
padding-right: 18px;
}
.header-btn {
padding: 8px 16px;
min-height: 38px;
font-size: clamp(0.88rem, 1.7vw, 1rem);
min-width: auto;
}
}
.hero {
position: relative;
min-height: 70vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0;
margin: 0;
}
.video-hero {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.hero-bg-fallback {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: center / cover no-repeat url("https://procreator.top/wp-content/uploads/2025/10/pexels-rdne-8760675-convert.io_.webp");
z-index: -1;
}
.hero-content {
position: relative;
z-index: 1;
padding: 0 var(--spacing-l);
max-width: 90%;
width: 100%;
}
.hero h1,
.hero p {
background: rgba(255, 255, 255, 0.9);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
mix-blend-mode: normal;
}
.hero h1 {
font-size: clamp(2.2rem, 6vw, 3.2rem);
font-weight: 900;
line-height: 1.2;
margin-bottom: var(--spacing-m);
font-family: var(--font-family-heading);
}
.hero p {
font-size: clamp(1.2rem, 3.2vw, 1.6rem);
font-weight: 400;
line-height: 1.4;
margin-bottom: var(--spacing-xl);
font-family: var(--font-family);
}
footer {
background: var(--bg-card);
padding: var(--spacing-m);
margin-top: auto;
border-top: var(--border-thin);
}
.footer-container {
max-width: clamp(360px, 94vw, 1280px);
display: flex;
flex-wrap: wrap;
gap: var(--spacing-m);
justify-content: center;
align-items: center;
text-align: center;
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: var(--spacing-xs);
justify-content: center;
}
.footer-links a {
font-size: clamp(0.92rem, 2vw, 1rem);
color: var(--text);
text-decoration: none;
min-height: var(--touch-target-size);
transition: color 0.2s ease;
font-family: var(--font-family);
}
.footer-links a:hover,
.footer-links a:focus {
color: var(--accent);
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.footer-socials {
display: flex;
gap: var(--spacing-xs);
justify-content: center;
}
.footer-socials a {
display: flex;
align-items: center;
justify-content: center;
width: clamp(36px, 6vw, 44px);
height: clamp(36px, 6vw, 44px);
font-size: clamp(18px, 3.4vw, 21px);
color: var(--primary);
background: transparent;
border: 1px solid var(--primary);
border-radius: 50%;
transition: all 0.2s ease;
}
.footer-socials a:hover,
.footer-socials a:focus {
color: var(--bg);
background: var(--primary);
transform: scale(1.1);
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.footer-contact {
font-size: clamp(0.9rem, 2vw, 1rem);
color: var(--text-light);
display: flex;
flex-direction: column;
gap: var(--spacing-xs);
align-items: center;
}
.footer-contact a {
color: var(--primary);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-contact a:hover,
.footer-contact a:focus {
color: var(--accent);
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.footer-disclaimer {
font-size: clamp(0.72rem, 1.4vw, 0.8rem);
color: #a0aec0;
margin-top: var(--spacing-s);
line-height: 1.45;
opacity: 0.85;
max-width: 600px;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
* { touch-action: manipulation; }
@media (max-width: 768px) {
.hamburger { display: flex; }
.header__nav {
display: none;
flex-direction: column;
width: 100vw;
position: fixed;
top: 0;
left: 0;
height: 100vh;
background: var(--bg);
padding: clamp(80px, 18vw, 110px) clamp(20px, 4.5vw, 36px);
z-index: 999;
transform: translateX(-100%);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
align-items: center;
justify-content: flex-start;
overflow-y: auto;
}
.header__nav.active {
display: flex;
transform: translateX(0);
opacity: 1;
}
.header-btn,
.phone-link {
width: 100%;
max-width: 280px;
justify-content: center;
margin-top: var(--spacing-l);
padding: clamp(12px, 2.4vw, 16px);
text-align: center;
min-height: 48px;
}
.language-switcher {
width: 100%;
max-width: 180px;
justify-content: center;
margin-top: var(--spacing-l);
padding: clamp(12px, 2.4vw, 16px);
}
.button,
.ppm-esim-link {
padding: 10px 18px;
min-height: 44px;
font-size: 0.9rem;
min-width: auto;
width: 100%;
max-width: 260px;
margin: 4px 0;
}
}
.hamburger {
display: none;
font-size: clamp(22px, 4.2vw, 24px);
color: var(--primary);
background: none;
border: none;
min-height: var(--touch-target-size);
min-width: var(--touch-target-size);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
padding: 4px;
}
.hamburger:hover {
background: rgba(94, 129, 172, 0.1);
}
.header__nav {
display: flex;
align-items: center;
gap: var(--spacing-xs);
}
.header__nav .header-link {
font-size: clamp(0.9rem, 2vw, 1rem);
color: var(--text);
text-decoration: none;
padding: 8px 10px;
min-height: var(--touch-target-size);
display: flex;
align-items: center;
transition: color 0.2s ease;
}
.header__nav .header-link:hover,
.header__nav .header-link:focus {
color: var(--accent);
outline: 2px solid var(--accent);
outline-offset: 2px;
}
.language-switcher {
position: relative;
display: inline-flex;
align-items: center;
gap: 8px;
padding: clamp(10px, 2vw, 12px);
border-radius: 8px;
background: transparent;
border: 1px solid var(--primary);
}
.language-switcher select {
appearance: none;
background: transparent;
border: none;
color: var(--text);
font-size: clamp(0.9rem, 2vw, 1rem);
font-weight: 600;
cursor: pointer;
padding-right: 20px;
text-transform: uppercase;
font-family: var(--font-family);
}
Франшиза MWR Life 2026
Для тревел-блогеров, фрилансеров, HR и любителей развлекательных мероприятий: AI-туры, эксклюзивные путешествия и глобальный нетворкинг.
Агенты на феноменальных FAM-поездках по Галапагосским островам
Тревел-агенты из США, Европы, Азии и стран СНГ приняли участие в эксклюзивных ознакомительных поездках (FAM), организованных HX Expeditions. Эти погружения позволили им лично увидеть уникальную фауну, вулканические ландшафты и оценить преимущества экспедиционных круизов «всё включено».
Осенью 2024 года избранные специалисты отправились в три уникальных рейса на борту судна MS Santa Cruz II. Маршрут начался с двух ночёвок в Кито, после чего последовал шестидневный круиз по заповедной зоне Галапагосского национального парка. Участники посетили острова Москерра, Пунта-Питт, Эспаньола и Норт-Сеймур, где наблюдали морских игуан, голубоногих олуш и волнистых альбатросов в их естественной среде обитания.
На борту натуралисты проводили научно обоснованные лекции и демонстрации. Активности были адаптированы под разный уровень мобильности: от подводного плавания до наблюдения с прозрачного дна лодки. Такой подход позволил каждому участнику глубоко погрузиться в экосистему объекта Всемирного наследия ЮНЕСКО.
Круизы HX включают всё необходимое: перелёты с материкового Эквадора, проживание в отеле, входные билеты, ежедневные экскурсии, питание, напитки, Wi-Fi, чаевые и снаряжение для сноркелинга — без скрытых платежей и неожиданных расходов.
Станьте амбассадором MWR Life в 2026 году
Постройте удалённый бизнес в индустрии путешествий: зарабатывайте на бронированиях, рекомендациях и развитии франшизы. Программа идеально подходит для тревел-блогеров, фрилансеров, HR-специалистов и организаторов мероприятий.
Почему это работает в 2026 году?
- AI-платформа Travel Advantage — персонализированные туры, предиктивное ценообразование, автоматизация продаж.
- Франшиза в 90+ странах — глобальный нетворкинг, эксклюзивные Life Experiences®, групповые туры.
- Доход с первого дня — комиссии с личных и командных продаж, бонусы за активность, Loyalty Points.
Как начать?
- Регистрация — бесплатно или Elite-пакет (99 $/год) для полного доступа к Biz Center.
- Обучение — курсы по AI, франчайзингу, bleisure-турам и устойчивому туризму.
- Масштабирование — чатботы, партнёрские программы, локальные мероприятия.
Изучите реальные кейсы амбассадоров и SEO‑статьи о франшизе.
document.addEventListener('DOMContentLoaded', () => {
const hamburger = document.querySelector('.hamburger');
const nav = document.querySelector('.header__nav');
const hamburgerIcon = hamburger.querySelector('i');
hamburger.addEventListener('click', () => {
const isExpanded = hamburger.getAttribute('aria-expanded') === 'true';
hamburger.setAttribute('aria-expanded', !isExpanded);
hamburger.classList.toggle('active');
nav.classList.toggle('active');
hamburgerIcon.className = nav.classList.contains('active') ? 'fas fa-times' : 'fas fa-bars';
});
document.addEventListener('click', (e) => {
if (!nav.contains(e.target) && !hamburger.contains(e.target) && nav.classList.contains('active')) {
hamburger.setAttribute('aria-expanded', 'false');
hamburger.classList.remove('active');
nav.classList.remove('active');
hamburgerIcon.className = 'fas fa-bars';
}
});
const sections = document.querySelectorAll('.section');
const sectionObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
sectionObserver.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
sections.forEach(section => sectionObserver.observe(section));
const languageSelect = document.querySelector('#language');
languageSelect.addEventListener('change', (e) => {
const lang = e.target.value;
const url = lang === 'en' ? 'https://procreator.top/en' : 'https://procreator.top';
window.location.href = url;
});
const detailsElements = document.querySelectorAll('details');
detailsElements.forEach(details => {
details.addEventListener('toggle', () => {
details.querySelector('summary').setAttribute('aria-expanded', details.open);
});
});
});