Life Experiences® 2026: MWR Life Global Tribe
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--primary: #001f3f;
--secondary: #60a5fa;
--text: #1a202c;
--text-light: #4b5563;
--bg: #ffffff;
--card: #ffffff;
--border: #e5e7eb;
--radius: 12px;
--shadow: 0 2px 8px rgba(0,0,0,0.04);
--shadow-hover: 0 8px 24px rgba(0,31,63,0.1);
--gradient-border: linear-gradient(100deg, #60a5fa, #001f3f, #60a5fa);
--space-xs: clamp(0.5rem, 2.5vw, 0.75rem);
--space-s: clamp(0.75rem, 3.5vw, 1.125rem);
--space-m: clamp(1.25rem, 5.5vw, 2rem);
--space-l: clamp(1.75rem, 7vw, 2.5rem);
--font-h1: clamp(2.125rem, 9.5vw, 2.875rem);
--font-h2: clamp(1.75rem, 7.5vw, 2.25rem);
--font-h3: clamp(1.375rem, 5.5vw, 1.625rem);
--font-p: clamp(0.98rem, 3vw, 1.15rem);
--line-height: 1.66;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
font-size: var(--font-p);
line-height: var(--line-height);
color: var(--text);
background: var(--bg);
min-height: 100vh;
overflow-x: hidden;
}
main {
display: flex;
flex-direction: column;
gap: var(--space-l);
width: 100%;
padding: var(--space-l) 0;
}
.section,
.hero {
width: 100%;
background: var(--bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: var(--space-l) var(--space-s);
box-shadow: var(--shadow);
text-align: center;
opacity: 0;
transform: translateY(10px);
animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.hero { animation-delay: 0.1s; }
.section:nth-of-type(1) { animation-delay: 0.2s; }
.section:nth-of-type(2) { animation-delay: 0.3s; }
h1, h2, h3 {
font-weight: 600;
margin-bottom: var(--space-s);
line-height: 1.18;
color: var(--primary);
position: relative;
}
h1 {
font-family: 'Playfair Display', Georgia, serif;
font-size: var(--font-h1);
background: linear-gradient(100deg, var(--primary), var(--secondary), var(--primary));
background-size: 200% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: var(--primary);
text-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: var(--font-h2);
background: linear-gradient(100deg, var(--primary), var(--secondary), var(--primary));
background-size: 200% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: var(--primary);
text-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
h3 {
font-family: 'Playfair Display', Georgia, serif;
font-size: var(--font-h3);
color: var(--primary);
}
p {
margin-bottom: var(--space-s);
color: var(--text-light);
}
.highlight {
color: var(--primary);
font-weight: 600;
}
.tribe-badge {
display: inline-block;
background: rgba(96, 165, 250, 0.12);
color: var(--primary);
padding: 0.28rem 0.85rem;
border-radius: 22px;
font-size: 0.88rem;
font-weight: 600;
margin: 0 0.3rem;
border: 1px solid rgba(96, 165, 250, 0.25);
backdrop-filter: blur(2px);
}
.creative-btn {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: clamp(0.75rem, 2.8vw, 1rem) clamp(1.5rem, 5vw, 2rem);
font-weight: 600;
font-size: clamp(0.98rem, 2.6vw, 1.1rem);
text-decoration: none;
border-radius: var(--radius);
z-index: 1;
background: transparent;
color: var(--primary);
margin-top: var(--space-m);
transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
letter-spacing: -0.015em;
box-shadow: inset 0 0 0 1px rgba(0,31,63,0.08);
}
.creative-btn::before {
content: '';
position: absolute;
inset: 0;
border-radius: var(--radius);
background: var(--gradient-border);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
z-index: -1;
opacity: 0.7;
}
.creative-btn:hover {
color: white;
transform: translateY(-3px);
box-shadow: 0 8px 22px rgba(0, 31, 63, 0.14);
}
.creative-btn:hover::before {
background: var(--primary);
opacity: 1;
}
/* Фото-галерея — full width */
.events-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
gap: var(--space-xs);
margin: var(--space-m) auto;
width: 100%;
max-width: none;
padding: 0 var(--space-s);
}
.event-thumb {
width: 100%;
height: 130px;
object-fit: cover;
border-radius: var(--radius);
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
transition: transform 0.2s ease;
}
.event-thumb:hover {
transform: scale(1.02);
}
/* Компактный блок Essential Travel Tools */
.partner-section {
padding: var(--space-m) var(--space-s) !important;
}
.partner-row {
display: flex;
flex-direction: column;
gap: var(--space-s);
margin-top: var(--space-m);
}
@media (min-width: 768px) {
.partner-row {
flex-direction: row;
justify-content: center;
gap: var(--space-l);
}
}
.partner-block {
flex: 1;
min-width: 240px;
max-width: 480px;
background: var(--card);
border-radius: var(--radius);
padding: 1.25rem;
text-align: center;
border: 1px solid var(--border);
box-shadow: var(--shadow);
display: flex;
flex-direction: column;
align-items: center;
transition: all 0.3s ease;
}
.partner-block--mastercard {
order: -1;
border-color: var(--secondary);
box-shadow: 0 4px 16px rgba(96, 165, 250, 0.12);
}
@media (min-width: 768px) {
.partner-block--mastercard { order: 0; }
}
.partner-image {
max-width: 100%;
height: auto;
display: block;
margin: var(--space-s) auto;
border-radius: var(--radius);
width: 120px;
height: 80px;
}
@media (prefers-reduced-motion: reduce) {
* {
transition: none !important;
animation: none !important;
transform: none !important;
}
.creative-btn::before {
display: none;
}
.creative-btn {
border: 1px solid var(--primary);
box-shadow: none;
}
h1, h2 {
background: none !important;
-webkit-text-fill-color: var(--primary) !important;
color: var(--primary) !important;
}
}
Life Experiences® 2026: Your Global Tribe Awaits
Join MWR Life as a Lifestyle Ambassador and unlock access to exclusive group journeys — from wellness retreats to global networking events
Built for Bloggers Digital Nomads Retreat Hosts MLM Entrepreneurs
Launch Your Travel Business — $99
F&B Spa Resort | 5 days / 4 nights
Group winter journey for MWR Life Ambassadors with spa access and franchising training
Buffet breakfast included, full spa access, special franchising business training
View Full Itinerary
Sun Siyam Olhuveli | 5 days / 4 nights
Exclusive group stay in Sunset Beach Pavilion with speedboat transfers and all-inclusive package
All-inclusive meals and drinks, round-trip speedboat transfers, eco-taxes included, 20% discount on group excursions
Reserve Your Spot
Best Western Premier Westlands | 5 days / 4 nights
Group eco-tour with luxury glamping, wildlife, and cultural immersion
Superior room accommodation, city tax and service fee included
Explore Kenya
Hyatt Regency Dallas | 5 days / 4 nights
International event with product launches, awards, and high-value networking
Welcome cocktail reception, resort fees, taxes, and service charges included
Join the Event
Amid Hotel | 5 days / 4 nights
Exclusive journey with Hanji experience, shopping, and networking at Namsan Tower
Welcome dinner, breakfast included, Hanji experience, private transfers and bilingual guide
Discover Seoul
Serenety Alfa | 7 days / 6 nights
Historical cruise with visits to Valley of the Kings and temples of Kom Ombo, Edfu, and Hatshepsut
All-inclusive, 3 nights onboard with full board, 3 nights at Serenety Alfa hotel, guided tours included
Book the Cruise
“New booking in Puglia! Around €65 savings compared to my friends’ rate for the same hotel!” — Giada, Italy
“My first Guest Pass booking in Florence — small results, but real savings!” — Marco, Italy
“Amsterdam trip: booked for €180, paid only €90. Shared savings and earned travel credits!” — Lena, Netherlands
Claim Your Free Guest Pass
Virtual Mastercard (USD/EUR)
Instant issuance. Top up in RUB via SBP
Get Card
eSIM — Global Internet
Instant activation. Coverage in 190+ countries
Activate eSIM