:root {
  --paper: #fbfaf6;
  --ink: #1d1b18;
  --muted: #746f66;
  --line: rgba(29, 27, 24, 0.14);
  --accent: #9c6b4a;
  --accent-strong: #6f3f2c;
  --panel: rgba(255, 255, 255, 0.68);
  --shadow: 0 22px 70px rgba(39, 31, 25, 0.11);
  --font-text: Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, var(--chapter-glow, rgba(156, 107, 74, 0.18)), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 22rem),
    var(--chapter-bg, var(--paper));
  color: var(--ink);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-family: var(--font-text);
  font-size: 18px;
}

.chapter-nav {
  min-width: 0;
  display: flex;
  gap: 6px;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.chapter-nav a {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.chapter-nav a:hover,
.chapter-nav a[aria-current="page"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.play-button {
  min-width: 84px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 650;
}

.play-button:hover {
  background: var(--accent-strong);
}

.book-main {
  flex: 1;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 72px;
}

.chapter-hero {
  min-height: calc(100vh - 210px);
  display: grid;
  align-items: center;
}

.chapter-kicker {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chapter-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.chapter-note {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.chapter-placeholder {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
}

.chapter-placeholder p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.toc-link {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(39, 31, 25, 0.07);
}

.toc-link:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  transform: translateY(-1px);
}

.toc-number {
  display: block;
  color: var(--accent-strong);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.toc-title {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.chapter-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  font-family: var(--font-ui);
}

.chapter-pager a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ink);
  text-decoration: none;
}

.chapter-pager a:hover {
  background: rgba(255, 255, 255, 0.52);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

.lotus {
  --chapter-bg: #faf8ef;
  --chapter-glow: rgba(209, 155, 154, 0.26);
  --accent: #be7f8a;
  --accent-strong: #8f4f5c;
}

.son-o-svobode {
  --chapter-bg: #f5f8f7;
  --chapter-glow: rgba(78, 133, 151, 0.22);
  --accent: #4e8597;
  --accent-strong: #315f70;
}

.bouddha {
  --chapter-bg: #fbf7ed;
  --chapter-glow: rgba(202, 151, 64, 0.25);
  --accent: #bc8542;
  --accent-strong: #825b2d;
}

.golos-serdca {
  --chapter-bg: #fbf5f4;
  --chapter-glow: rgba(166, 82, 82, 0.22);
  --accent: #a65252;
  --accent-strong: #763839;
}

.detstvo {
  --chapter-bg: #f8f7ee;
  --chapter-glow: rgba(128, 153, 91, 0.22);
  --accent: #80995b;
  --accent-strong: #586d3e;
}

.laos {
  --chapter-bg: #f2f7f1;
  --chapter-glow: rgba(65, 132, 96, 0.23);
  --accent: #418460;
  --accent-strong: #2c6346;
}

.dary-vselennoy {
  --chapter-bg: #f8f4fb;
  --chapter-glow: rgba(132, 98, 161, 0.2);
  --accent: #8462a1;
  --accent-strong: #604676;
}

.toba {
  --chapter-bg: #f1f8f8;
  --chapter-glow: rgba(61, 139, 151, 0.21);
  --accent: #3d8b97;
  --accent-strong: #2c6670;
}

.saigon {
  --chapter-bg: #fbf4ed;
  --chapter-glow: rgba(190, 99, 55, 0.22);
  --accent: #be6337;
  --accent-strong: #884629;
}

.phangan {
  --chapter-bg: #f1f8f4;
  --chapter-glow: rgba(56, 135, 120, 0.23);
  --accent: #388778;
  --accent-strong: #28665a;
}

.puteshestviya {
  --chapter-bg: #f5f5fb;
  --chapter-glow: rgba(75, 95, 154, 0.2);
  --accent: #4b5f9a;
  --accent-strong: #36456f;
}

.india {
  --chapter-bg: #fbf5ec;
  --chapter-glow: rgba(210, 123, 55, 0.24);
  --accent: #d27b37;
  --accent-strong: #965827;
}

.gorod {
  --chapter-bg: #f4f4f1;
  --chapter-glow: rgba(88, 94, 100, 0.18);
  --accent: #696f73;
  --accent-strong: #484d51;
}

.blagodarnost {
  --chapter-bg: #faf6f0;
  --chapter-glow: rgba(176, 119, 76, 0.24);
  --accent: #b0774c;
  --accent-strong: #7b5135;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 112px;
    grid-template-columns: 1fr auto;
    align-content: center;
  }

  .chapter-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .book-main {
    padding-top: 42px;
  }

  .chapter-hero {
    min-height: auto;
  }

  .chapter-title {
    font-size: clamp(46px, 16vw, 76px);
  }

  .footer-inner,
  .chapter-pager {
    flex-direction: column;
  }
}

@font-face {
  font-family: "Calypso Lotus";
  src: url("fonts/Calypso.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Forum Lotus";
  src: url("fonts/Forum-Regular.ttf") format("truetype");
  font-display: swap;
}

.lotus-page {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: #6b6a6a;
}

.lotus-stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.lotus-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 7349px;
  transform-origin: top center;
  background: #ffffff;
  font-family: "Forum Lotus", Georgia, serif;
}

.lotus-img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.lotus-cover {
  top: 0;
  left: 0;
  width: 1440px;
  height: 947px;
  object-fit: cover;
}

.lotus-audio {
  position: absolute;
  top: 50px;
  left: 67px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #000000;
  font-family: "Forum Lotus", Georgia, serif;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}

.lotus-play-icon {
  width: 31px;
  height: 31px;
  border: 1px solid #9c9c9c;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.lotus-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translateX(1px);
  opacity: 0.7;
}

.lotus-book-note {
  position: absolute;
  top: 51px;
  right: 100px;
  display: grid;
  gap: 2px;
  color: #6b6a6a;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
}

.lotus-title {
  position: absolute;
  top: 289px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 218, 218, 0.95);
  font-family: "Calypso Lotus", Georgia, serif;
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: -2px 1px 0 #6b6a6a;
  white-space: nowrap;
}

.lotus-intro {
  position: absolute;
  top: 785px;
  left: 244px;
  width: 949px;
  height: 456px;
  padding: 100px 135px 0;
  background: linear-gradient(180deg, #e4bcbc 25.2%, #e4bcbc 69.8%, rgba(228, 188, 188, 0) 100%);
  color: #ffffff;
  text-align: center;
}

.lotus-intro p,
.lotus-pink-final p {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.lotus-copy {
  position: absolute;
  margin: 0;
  color: #6b6a6a;
  font-size: 18px;
  line-height: 24px;
}

.lotus-copy-wax {
  top: 1354px;
  left: 100px;
  width: 477px;
  color: #464646;
}

.lotus-cloud {
  top: 1301px;
  right: -105px;
  width: 906px;
  height: 616px;
  object-fit: contain;
}

.lotus-quote {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 38px;
  color: #6b6a6a;
  font-family: "Calypso Lotus", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
}

.lotus-quote img {
  width: 31px;
  height: auto;
  flex: 0 0 auto;
}

.lotus-quote p {
  margin: 0;
}

.lotus-quote-first {
  top: 1877px;
  left: 169px;
}

.lotus-quote-first img {
  height: 285px;
}

.lotus-copy-words {
  top: 2102px;
  left: 874px;
  width: 467px;
}

.lotus-grey {
  position: absolute;
  top: 2395px;
  left: 244px;
  width: 952px;
  height: 446px;
  background: #cecbcb;
}

.lotus-line-art {
  position: absolute;
  left: -255px;
  top: -5px;
  width: 372px;
  height: 492px;
  opacity: 0.85;
}

.lotus-grey p {
  position: absolute;
  top: 100px;
  left: 516px;
  width: 515px;
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.18;
}

.lotus-copy-wisdom {
  top: 2941px;
  left: 101px;
  width: 609px;
}

.lotus-fog {
  top: 3120px;
  left: 434px;
  width: 467px;
  height: 428px;
  object-fit: cover;
  opacity: 0.6;
}

.lotus-beige {
  position: absolute;
  top: 3390px;
  right: -5px;
  width: 673px;
  height: 438px;
  padding: 100px 105px 0;
  background: #fcf8ef;
  color: #6b6a6a;
}

.lotus-beige h2 {
  margin: 0 0 24px;
  font-family: "Calypso Lotus", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 24px;
}

.lotus-beige p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

.lotus-copy-lake {
  top: 3908px;
  left: 103px;
  width: 483px;
}

.lotus-lake {
  top: 3877px;
  right: -2px;
  width: 487px;
  height: 491px;
  object-fit: cover;
}

.lotus-flower {
  top: 4243px;
  left: 215px;
  width: 325px;
  height: 265px;
  object-fit: cover;
}

.lotus-quote-second {
  top: 4608px;
  left: 360px;
  width: 740px;
}

.lotus-quote-second img {
  height: 346px;
  margin-left: -107px;
}

.lotus-palm {
  top: 4914px;
  left: -4px;
  width: 600px;
  height: auto;
}

.lotus-flower-two {
  top: 5074px;
  left: 589px;
  width: 262px;
  height: 260px;
  object-fit: cover;
  opacity: 0.7;
}

.lotus-man {
  top: 4888px;
  right: -65px;
  width: 536px;
  height: 420px;
}

.lotus-pink-final {
  position: absolute;
  top: 5420px;
  left: 304px;
  width: 830px;
  height: 380px;
  padding: 100px 120px 0;
  background: #e4bcbc;
  color: #ffffff;
  text-align: center;
}

.lotus-mountains {
  top: 5520px;
  left: 0;
  width: 1440px;
  height: 570px;
  object-fit: cover;
}

.lotus-menu {
  position: absolute;
  top: 6190px;
  left: 0;
  width: 1440px;
  height: 871px;
  color: #6b6a6a;
}

.lotus-menu h2 {
  position: absolute;
  top: 0;
  left: 93px;
  margin: 0;
  font-family: "Calypso Lotus", Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.lotus-menu-boat {
  position: absolute;
  left: 1px;
  top: 169px;
  width: 1424px;
  height: 702px;
  object-fit: cover;
  pointer-events: none;
}

.lotus-menu-links {
  position: absolute;
  inset: 105px 94px 175px;
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
}

.lotus-menu-links a {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b6a6a;
  text-decoration: none;
}

.lotus-menu-links a::before,
.lotus-next a::before {
  width: 19px;
  height: 19px;
  border: 1px solid #b6b6b6;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  color: #9c9c9c;
  content: "";
  background: radial-gradient(circle, #9c9c9c 0 2px, transparent 2.5px);
}

.lotus-menu-links a:nth-child(1) { left: 158px; top: 342px; }
.lotus-menu-links a:nth-child(2) { left: 254px; top: 0; }
.lotus-menu-links a:nth-child(3) { left: 636px; top: 418px; }
.lotus-menu-links a:nth-child(4) { left: 360px; top: 205px; }
.lotus-menu-links a:nth-child(5) { left: 558px; top: 122px; }
.lotus-menu-links a:nth-child(6) { left: 166px; top: 128px; }
.lotus-menu-links a:nth-child(7) { left: 760px; top: 215px; }
.lotus-menu-links a:nth-child(8) { left: 930px; top: 0; }
.lotus-menu-links a:nth-child(9) { left: 248px; top: 271px; }
.lotus-menu-links a:nth-child(10) { left: 1025px; top: 167px; }
.lotus-menu-links a:nth-child(11) { left: 610px; top: 344px; }
.lotus-menu-links a:nth-child(12) { left: 930px; top: 304px; }
.lotus-menu-links a:nth-child(13) { left: 0; top: 200px; }
.lotus-menu-links a:nth-child(14) { left: 223px; top: 435px; }

.lotus-menu-links a:hover,
.lotus-menu-links a.is-current {
  color: #464646;
}

.lotus-next {
  position: absolute;
  right: 232px;
  bottom: 73px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 11px;
  font-size: 18px;
  line-height: 24px;
}

.lotus-next a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #6b6a6a;
  font-family: "Calypso Lotus", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
}

.lotus-next a::after {
  content: "...";
  font-family: "Forum Lotus", Georgia, serif;
  font-size: 18px;
}

.lotus-footer {
  position: absolute;
  top: 7061px;
  left: 20px;
  width: 1400px;
  height: 288px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  background: #cfcfcf;
  color: #6b6a6a;
  text-align: center;
}

.lotus-footer p {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}

.lotus-footer p:nth-child(2) {
  font-size: 32px;
  line-height: 28px;
}

@media (max-width: 760px) {
  .lotus-canvas {
    width: 640px;
    height: 6624px;
  }

  .lotus-cover {
    left: -170px;
    width: 980px;
    height: 664px;
  }

  .lotus-audio {
    top: 50px;
    left: 66px;
  }

  .lotus-audio-text {
    display: none;
  }

  .lotus-book-note {
    top: 51px;
    right: 70px;
    color: #464646;
  }

  .lotus-title {
    top: 288px;
    font-size: 102px;
  }

  .lotus-intro {
    top: 625px;
    left: 0;
    width: 640px;
    height: 369px;
    padding: 81px 142px 0;
  }

  .lotus-intro p,
  .lotus-pink-final p {
    font-size: 20px;
  }

  .lotus-copy {
    font-size: 14px;
    line-height: 18px;
  }

  .lotus-copy-wax {
    top: 1015px;
    left: 140px;
    width: 360px;
  }

  .lotus-cloud {
    top: 1061px;
    right: 0;
    width: 612px;
    height: 426px;
    object-fit: cover;
    object-position: right top;
  }

  .lotus-quote {
    gap: 28px;
    font-size: 20px;
  }

  .lotus-quote-first {
    top: 1513px;
    left: 136px;
    width: 360px;
  }

  .lotus-quote-first img {
    height: 175px;
  }

  .lotus-copy-words {
    top: 1728px;
    left: 141px;
    width: 356px;
  }

  .lotus-grey {
    top: 1947px;
    left: 59px;
    width: 581px;
    height: 345px;
  }

  .lotus-line-art {
    left: -160px;
    top: -37px;
    width: 300px;
  }

  .lotus-grey p {
    top: 72px;
    left: 290px;
    width: 280px;
    font-size: 20px;
  }

  .lotus-copy-wisdom {
    top: 2361px;
    left: 148px;
    width: 388px;
    font-size: 16px;
  }

  .lotus-fog {
    top: 2720px;
    left: 186px;
    width: 456px;
    height: 295px;
  }

  .lotus-beige {
    top: 2980px;
    left: -2px;
    width: 502px;
    height: 300px;
    padding: 66px 84px 0 61px;
  }

  .lotus-beige h2 {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 24px;
  }

  .lotus-beige p {
    font-size: 14px;
    line-height: 18px;
  }

  .lotus-copy-lake {
    top: 3382px;
    left: 140px;
    width: 360px;
  }

  .lotus-lake {
    top: 3612px;
    right: 35px;
    width: 251px;
    height: 264px;
  }

  .lotus-flower {
    top: 3775px;
    left: 45px;
    width: 275px;
    height: 224px;
  }

  .lotus-quote-second {
    top: 4096px;
    left: 140px;
    width: 380px;
  }

  .lotus-quote-second img {
    height: 346px;
    margin-left: 0;
  }

  .lotus-palm {
    top: 4360px;
    left: 0;
    width: 450px;
  }

  .lotus-flower-two {
    display: none;
  }

  .lotus-man {
    top: 4360px;
    right: 35px;
    width: 295px;
    height: 269px;
    object-fit: cover;
    object-position: top right;
  }

  .lotus-pink-final {
    top: 4773px;
    left: 41px;
    width: 558px;
    height: 276px;
    padding: 77px 92px 0;
  }

  .lotus-mountains {
    top: 4873px;
    left: -170px;
    width: 980px;
    height: 424px;
  }

  .lotus-menu {
    top: 5383px;
    width: 640px;
    height: 953px;
  }

  .lotus-menu h2 {
    left: 204px;
    font-size: 32px;
  }

  .lotus-menu-boat {
    top: 209px;
    left: -160px;
    width: 960px;
    height: 702px;
    object-fit: cover;
  }

  .lotus-menu-links {
    inset: 86px 66px 246px;
    font-size: 18px;
  }

  .lotus-menu-links a:nth-child(1) { left: 164px; top: 320px; }
  .lotus-menu-links a:nth-child(2) { left: 62px; top: 0; }
  .lotus-menu-links a:nth-child(3) { left: 315px; top: 259px; }
  .lotus-menu-links a:nth-child(4) { left: 176px; top: 154px; }
  .lotus-menu-links a:nth-child(5) { left: 281px; top: 77px; }
  .lotus-menu-links a:nth-child(6) { left: 112px; top: 77px; }
  .lotus-menu-links a:nth-child(7) { left: 256px; top: 231px; }
  .lotus-menu-links a:nth-child(8) { left: 328px; top: 0; }
  .lotus-menu-links a:nth-child(9) { left: 270px; top: 309px; }
  .lotus-menu-links a:nth-child(10) { left: 336px; top: 154px; }
  .lotus-menu-links a:nth-child(11) { left: 102px; top: 408px; }
  .lotus-menu-links a:nth-child(12) { left: 291px; top: 386px; }
  .lotus-menu-links a:nth-child(13) { left: 0; top: 231px; }
  .lotus-menu-links a:nth-child(14) { left: 306px; top: 464px; }

  .lotus-next {
    right: auto;
    left: 250px;
    bottom: 86px;
  }

  .lotus-footer {
    top: 6336px;
    left: 0;
    width: 640px;
    height: 288px;
  }
}

.lotus-exact-page {
  margin: 0;
  background: #ffffff;
}

.lotus-exact-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.lotus-exact-art {
  display: block;
  width: 100%;
  height: auto;
}

.lotus-hotspot {
  position: absolute;
  display: block;
  z-index: 3;
  outline-offset: 4px;
  pointer-events: auto;
}

.lotus-hotspot:focus-visible {
  outline: 2px solid rgba(107, 106, 106, 0.65);
  border-radius: 999px;
}

.lotus-hotspot-audio {
  left: 5.8%;
  top: 0.68%;
  width: 13.6%;
  height: 0.68%;
}

.lotus-figma-mobile-paragraph {
  display: none;
}


.lotus-hotspot-menu .lotus-hotspot {
  color: transparent;
  font-family: "Forum Lotus", Georgia, serif;
  font-size: clamp(18px, 3.2vw, 46px);
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.lotus-hotspot-menu .lotus-hotspot:hover {
  color: transparent;
}

.lotus-hotspot-menu .lotus-hotspot:focus-visible {
  color: rgba(107, 106, 106, 0.18);
}

.lotus-menu-lotus { left: 19.9%; top: 91.6%; width: 11%; height: 0.74%; }
.lotus-menu-son { left: 22.4%; top: 85.9%; width: 17.4%; height: 0.74%; }
.lotus-menu-bouddha { left: 53.3%; top: 91.45%; width: 14.2%; height: 0.74%; }
.lotus-menu-golos { left: 43.4%; top: 88.65%; width: 14.6%; height: 0.74%; }
.lotus-menu-detstvo { left: 60.8%; top: 87.69%; width: 10.6%; height: 0.74%; }
.lotus-menu-laos { left: 31.9%; top: 87.54%; width: 8.2%; height: 0.74%; }
.lotus-menu-dary { left: 58.3%; top: 89.7%; width: 22.2%; height: 0.74%; }
.lotus-menu-toba { left: 77.9%; top: 85.43%; width: 8.3%; height: 0.74%; }
.lotus-menu-saigon { left: 27.3%; top: 90.32%; width: 11.1%; height: 0.74%; }
.lotus-menu-phangan { left: 80.4%; top: 88.42%; width: 11.8%; height: 0.74%; }
.lotus-menu-puteshestviya { left: 59.6%; top: 92.48%; width: 35.5%; height: 0.8%; }
.lotus-menu-india { left: 74.7%; top: 90.74%; width: 9.7%; height: 0.74%; }
.lotus-menu-gorod { left: 6.3%; top: 89.1%; width: 8%; height: 0.74%; }
.lotus-menu-blagodarnost { left: 25.4%; top: 93.15%; width: 16%; height: 0.74%; }

.lotus-hotspot-next {
  left: 87.8%;
  top: 94.18%;
  padding: 0.05% 0.7%;
  font-size: clamp(20px, 3.6vw, 54px);
}

.lotus-hotspot-prev {
  left: 72.4%;
  top: 95.16%;
  padding: 0.05% 0.7%;
  font-size: clamp(20px, 3.6vw, 54px);
}

.son-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.58%;
  width: 10.8%;
  height: 0.46%;
}

.son-exact-page .lotus-menu-lotus { left: 19.4%; top: 92.95%; width: 10%; height: 0.5%; }
.son-exact-page .lotus-menu-son { left: 20.6%; top: 88.07%; width: 22.5%; height: 0.5%; }
.son-exact-page .lotus-menu-bouddha { left: 53.3%; top: 92.76%; width: 12%; height: 0.5%; }
.son-exact-page .lotus-menu-golos { left: 42.6%; top: 90.39%; width: 17%; height: 0.5%; }
.son-exact-page .lotus-menu-detstvo { left: 59.2%; top: 89.58%; width: 11%; height: 0.5%; }
.son-exact-page .lotus-menu-laos { left: 31.7%; top: 89.46%; width: 7%; height: 0.5%; }
.son-exact-page .lotus-menu-dary { left: 58.1%; top: 91.28%; width: 24%; height: 0.5%; }
.son-exact-page .lotus-menu-toba { left: 78.6%; top: 87.67%; width: 7%; height: 0.5%; }
.son-exact-page .lotus-menu-saigon { left: 27.6%; top: 91.81%; width: 10%; height: 0.5%; }
.son-exact-page .lotus-menu-phangan { left: 79.6%; top: 90.2%; width: 12%; height: 0.5%; }
.son-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 93.63%; width: 32%; height: 0.5%; }
.son-exact-page .lotus-menu-india { left: 74.2%; top: 92.15%; width: 9%; height: 0.5%; }
.son-exact-page .lotus-menu-gorod { left: 6.25%; top: 90.77%; width: 7%; height: 0.5%; }
.son-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 94.2%; width: 18%; height: 0.5%; }
.son-exact-page .lotus-hotspot-prev { left: 72.4%; top: 95.16%; }
.son-exact-page .lotus-hotspot-next { left: 88.6%; top: 95.16%; }

.bouddha-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.41%;
  width: 10.8%;
  height: 0.34%;
}

.bouddha-exact-page .lotus-menu-lotus { left: 19.4%; top: 94.9%; width: 10%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-son { left: 20.6%; top: 91.37%; width: 22.5%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-bouddha { left: 53.3%; top: 94.76%; width: 12%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-golos { left: 42.6%; top: 93.05%; width: 17%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-detstvo { left: 59.2%; top: 92.46%; width: 11%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-laos { left: 31.7%; top: 92.37%; width: 7%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-dary { left: 58.1%; top: 93.68%; width: 24%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-toba { left: 78.6%; top: 91.08%; width: 7%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-saigon { left: 27.6%; top: 94.07%; width: 10%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-phangan { left: 79.6%; top: 92.9%; width: 12%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 95.39%; width: 32%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-india { left: 74.2%; top: 94.32%; width: 9%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-gorod { left: 6.25%; top: 93.32%; width: 7%; height: 0.36%; }
.bouddha-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 95.81%; width: 18%; height: 0.36%; }
.bouddha-exact-page .lotus-hotspot-prev { left: 71.2%; top: 96.49%; width: 5%; height: 0.34%; }
.bouddha-exact-page .lotus-hotspot-next { left: 87.3%; top: 96.49%; width: 5%; height: 0.34%; }

.golos-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.75%;
  width: 10.8%;
  height: 0.6%;
}

.golos-exact-page .lotus-menu-lotus { left: 19.4%; top: 91.06%; width: 10%; height: 0.68%; }
.golos-exact-page .lotus-menu-son { left: 20.6%; top: 84.53%; width: 22.5%; height: 0.68%; }
.golos-exact-page .lotus-menu-bouddha { left: 53.3%; top: 90.82%; width: 12%; height: 0.68%; }
.golos-exact-page .lotus-menu-golos { left: 42.6%; top: 87.75%; width: 17%; height: 0.68%; }
.golos-exact-page .lotus-menu-detstvo { left: 59.2%; top: 86.53%; width: 11%; height: 0.68%; }
.golos-exact-page .lotus-menu-laos { left: 31.7%; top: 86.36%; width: 7%; height: 0.68%; }
.golos-exact-page .lotus-menu-dary { left: 58.1%; top: 88.92%; width: 24%; height: 0.68%; }
.golos-exact-page .lotus-menu-toba { left: 78.6%; top: 84.0%; width: 7%; height: 0.68%; }
.golos-exact-page .lotus-menu-saigon { left: 27.6%; top: 89.62%; width: 10%; height: 0.68%; }
.golos-exact-page .lotus-menu-phangan { left: 79.6%; top: 87.5%; width: 12%; height: 0.68%; }
.golos-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 91.92%; width: 32%; height: 0.68%; }
.golos-exact-page .lotus-menu-india { left: 74.2%; top: 90.45%; width: 9%; height: 0.68%; }
.golos-exact-page .lotus-menu-gorod { left: 6.25%; top: 88.28%; width: 7%; height: 0.68%; }
.golos-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 92.66%; width: 18%; height: 0.68%; }
.golos-exact-page .lotus-hotspot-prev { left: 70.9%; top: 93.73%; width: 4.2%; height: 0.8%; }
.golos-exact-page .lotus-hotspot-next { left: 87.2%; top: 93.73%; width: 4.2%; height: 0.8%; }

.detstvo-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.52%;
  width: 10.8%;
  height: 0.42%;
}

.detstvo-exact-page .lotus-menu-lotus { left: 19.4%; top: 93.63%; width: 10%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-son { left: 20.6%; top: 89.23%; width: 22.5%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-bouddha { left: 53.3%; top: 93.47%; width: 12%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-golos { left: 42.6%; top: 91.32%; width: 17%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-detstvo { left: 59.2%; top: 90.59%; width: 11%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-laos { left: 31.7%; top: 90.48%; width: 7%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-dary { left: 58.1%; top: 92.12%; width: 24%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-toba { left: 78.6%; top: 88.87%; width: 7%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-saigon { left: 27.6%; top: 92.6%; width: 10%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-phangan { left: 79.6%; top: 91.14%; width: 12%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 94.25%; width: 32%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-india { left: 74.2%; top: 92.91%; width: 9%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-gorod { left: 6.25%; top: 91.67%; width: 7%; height: 0.48%; }
.detstvo-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 94.77%; width: 18%; height: 0.48%; }
.detstvo-exact-page .lotus-hotspot-prev { left: 71.2%; top: 95.55%; width: 5%; height: 0.48%; }
.detstvo-exact-page .lotus-hotspot-next { left: 87.3%; top: 95.55%; width: 5%; height: 0.48%; }

.laos-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.68%;
  width: 10.8%;
  height: 0.54%;
}

.laos-exact-page .lotus-menu-lotus { left: 19.4%; top: 91.71%; width: 10%; height: 0.62%; }
.laos-exact-page .lotus-menu-son { left: 20.6%; top: 85.97%; width: 22.5%; height: 0.62%; }
.laos-exact-page .lotus-menu-bouddha { left: 53.3%; top: 91.49%; width: 12%; height: 0.62%; }
.laos-exact-page .lotus-menu-golos { left: 42.6%; top: 88.7%; width: 17%; height: 0.62%; }
.laos-exact-page .lotus-menu-detstvo { left: 59.2%; top: 87.75%; width: 11%; height: 0.62%; }
.laos-exact-page .lotus-menu-laos { left: 31.7%; top: 87.6%; width: 7%; height: 0.62%; }
.laos-exact-page .lotus-menu-dary { left: 58.1%; top: 89.74%; width: 24%; height: 0.62%; }
.laos-exact-page .lotus-menu-toba { left: 78.6%; top: 85.5%; width: 7%; height: 0.62%; }
.laos-exact-page .lotus-menu-saigon { left: 27.6%; top: 90.36%; width: 10%; height: 0.62%; }
.laos-exact-page .lotus-menu-phangan { left: 79.6%; top: 88.47%; width: 12%; height: 0.62%; }
.laos-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 92.5%; width: 32%; height: 0.62%; }
.laos-exact-page .lotus-menu-india { left: 74.2%; top: 90.77%; width: 9%; height: 0.62%; }
.laos-exact-page .lotus-menu-gorod { left: 6.25%; top: 89.14%; width: 7%; height: 0.62%; }
.laos-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 93.18%; width: 18%; height: 0.62%; }
.laos-exact-page .lotus-hotspot-prev { left: 71.2%; top: 94.29%; width: 5%; height: 0.62%; }
.laos-exact-page .lotus-hotspot-next { left: 87.3%; top: 94.29%; width: 5%; height: 0.62%; }

.dary-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.54%;
  width: 10.8%;
  height: 0.43%;
}

.dary-exact-page .lotus-menu-lotus { left: 19.4%; top: 93.38%; width: 10%; height: 0.5%; }
.dary-exact-page .lotus-menu-son { left: 20.6%; top: 88.81%; width: 22.5%; height: 0.5%; }
.dary-exact-page .lotus-menu-bouddha { left: 53.3%; top: 93.21%; width: 12%; height: 0.5%; }
.dary-exact-page .lotus-menu-golos { left: 42.6%; top: 90.98%; width: 17%; height: 0.5%; }
.dary-exact-page .lotus-menu-detstvo { left: 59.2%; top: 90.23%; width: 11%; height: 0.5%; }
.dary-exact-page .lotus-menu-laos { left: 31.7%; top: 90.11%; width: 7%; height: 0.5%; }
.dary-exact-page .lotus-menu-dary { left: 58.1%; top: 91.82%; width: 24%; height: 0.5%; }
.dary-exact-page .lotus-menu-toba { left: 78.6%; top: 88.43%; width: 7%; height: 0.5%; }
.dary-exact-page .lotus-menu-saigon { left: 27.6%; top: 92.31%; width: 10%; height: 0.5%; }
.dary-exact-page .lotus-menu-phangan { left: 79.6%; top: 90.8%; width: 12%; height: 0.5%; }
.dary-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 94.02%; width: 32%; height: 0.5%; }
.dary-exact-page .lotus-menu-india { left: 74.2%; top: 92.64%; width: 9%; height: 0.5%; }
.dary-exact-page .lotus-menu-gorod { left: 6.25%; top: 91.34%; width: 7%; height: 0.5%; }
.dary-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 94.56%; width: 18%; height: 0.5%; }
.dary-exact-page .lotus-hotspot-prev { left: 71.2%; top: 95.45%; width: 5%; height: 0.5%; }
.dary-exact-page .lotus-hotspot-next { left: 87.3%; top: 95.45%; width: 5%; height: 0.5%; }

.toba-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.38%;
  width: 10.8%;
  height: 0.32%;
}

.toba-exact-page .lotus-menu-lotus { left: 19.4%; top: 95.29%; width: 10%; height: 0.36%; }
.toba-exact-page .lotus-menu-son { left: 20.6%; top: 92.03%; width: 22.5%; height: 0.36%; }
.toba-exact-page .lotus-menu-bouddha { left: 53.3%; top: 95.16%; width: 12%; height: 0.36%; }
.toba-exact-page .lotus-menu-golos { left: 42.6%; top: 93.58%; width: 17%; height: 0.36%; }
.toba-exact-page .lotus-menu-detstvo { left: 59.2%; top: 93.04%; width: 11%; height: 0.36%; }
.toba-exact-page .lotus-menu-laos { left: 31.7%; top: 92.95%; width: 7%; height: 0.36%; }
.toba-exact-page .lotus-menu-dary { left: 58.1%; top: 94.17%; width: 24%; height: 0.36%; }
.toba-exact-page .lotus-menu-toba { left: 78.6%; top: 91.76%; width: 7%; height: 0.36%; }
.toba-exact-page .lotus-menu-saigon { left: 27.6%; top: 94.52%; width: 10%; height: 0.36%; }
.toba-exact-page .lotus-menu-phangan { left: 79.6%; top: 93.44%; width: 12%; height: 0.36%; }
.toba-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 95.74%; width: 32%; height: 0.36%; }
.toba-exact-page .lotus-menu-india { left: 74.2%; top: 94.75%; width: 9%; height: 0.36%; }
.toba-exact-page .lotus-menu-gorod { left: 6.25%; top: 93.83%; width: 7%; height: 0.36%; }
.toba-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 96.13%; width: 18%; height: 0.36%; }
.toba-exact-page .lotus-hotspot-prev { left: 71.2%; top: 96.76%; width: 5%; height: 0.36%; }
.toba-exact-page .lotus-hotspot-next { left: 87.3%; top: 96.76%; width: 5%; height: 0.36%; }

.saigon-exact-page .lotus-hotspot-audio {
  left: 4.6%;
  top: 0.31%;
  width: 10.8%;
  height: 0.25%;
}

.saigon-exact-page .lotus-menu-lotus { left: 19.4%; top: 96.62%; width: 10%; height: 0.28%; }
.saigon-exact-page .lotus-menu-son { left: 20.6%; top: 94.04%; width: 22.5%; height: 0.28%; }
.saigon-exact-page .lotus-menu-bouddha { left: 53.3%; top: 96.53%; width: 12%; height: 0.28%; }
.saigon-exact-page .lotus-menu-golos { left: 42.6%; top: 95.27%; width: 17%; height: 0.28%; }
.saigon-exact-page .lotus-menu-detstvo { left: 59.2%; top: 94.84%; width: 11%; height: 0.28%; }
.saigon-exact-page .lotus-menu-laos { left: 31.7%; top: 94.78%; width: 7%; height: 0.28%; }
.saigon-exact-page .lotus-menu-dary { left: 58.1%; top: 95.74%; width: 24%; height: 0.28%; }
.saigon-exact-page .lotus-menu-toba { left: 78.6%; top: 93.83%; width: 7%; height: 0.28%; }
.saigon-exact-page .lotus-menu-saigon { left: 27.6%; top: 96.02%; width: 10%; height: 0.28%; }
.saigon-exact-page .lotus-menu-phangan { left: 79.6%; top: 95.17%; width: 12%; height: 0.28%; }
.saigon-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 96.98%; width: 32%; height: 0.28%; }
.saigon-exact-page .lotus-menu-india { left: 74.2%; top: 96.2%; width: 9%; height: 0.28%; }
.saigon-exact-page .lotus-menu-gorod { left: 6.25%; top: 95.47%; width: 7%; height: 0.28%; }
.saigon-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 97.29%; width: 18%; height: 0.28%; }
.saigon-exact-page .lotus-hotspot-prev { left: 71.3%; top: 97.57%; width: 3.2%; height: 0.32%; }
.saigon-exact-page .lotus-hotspot-next { left: 86.75%; top: 97.57%; width: 5.8%; height: 0.32%; }

.phangan-exact-page .lotus-hotspot-audio {
  left: 5.5%;
  top: 0.35%;
  width: 11%;
  height: 0.36%;
}

.phangan-exact-page .lotus-menu-lotus { left: 19.4%; top: 96.81%; width: 10%; height: 0.26%; }
.phangan-exact-page .lotus-menu-son { left: 20.6%; top: 94.38%; width: 22.5%; height: 0.26%; }
.phangan-exact-page .lotus-menu-bouddha { left: 53.3%; top: 96.73%; width: 12%; height: 0.26%; }
.phangan-exact-page .lotus-menu-golos { left: 42.6%; top: 95.54%; width: 17%; height: 0.26%; }
.phangan-exact-page .lotus-menu-detstvo { left: 59.2%; top: 95.13%; width: 11%; height: 0.26%; }
.phangan-exact-page .lotus-menu-laos { left: 31.7%; top: 95.08%; width: 7%; height: 0.26%; }
.phangan-exact-page .lotus-menu-dary { left: 58.1%; top: 95.98%; width: 24%; height: 0.26%; }
.phangan-exact-page .lotus-menu-toba { left: 78.6%; top: 94.18%; width: 7%; height: 0.26%; }
.phangan-exact-page .lotus-menu-saigon { left: 27.6%; top: 96.25%; width: 10%; height: 0.26%; }
.phangan-exact-page .lotus-menu-phangan { left: 79.6%; top: 95.44%; width: 12%; height: 0.26%; }
.phangan-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 97.15%; width: 32%; height: 0.26%; }
.phangan-exact-page .lotus-menu-india { left: 74.2%; top: 96.42%; width: 9%; height: 0.26%; }
.phangan-exact-page .lotus-menu-gorod { left: 6.25%; top: 95.73%; width: 7%; height: 0.26%; }
.phangan-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 97.44%; width: 18%; height: 0.26%; }
.phangan-exact-page .lotus-hotspot-prev { left: 71.3%; top: 97.71%; width: 3.6%; height: 0.3%; }
.phangan-exact-page .lotus-hotspot-next { left: 86.75%; top: 97.71%; width: 6.5%; height: 0.3%; }

.puteshestviya-exact-page .lotus-hotspot-audio {
  left: 5.4%;
  top: 0.78%;
  width: 11.5%;
  height: 0.64%;
}

.puteshestviya-exact-page .lotus-menu-lotus { left: 19.4%; top: 92.84%; width: 10%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-son { left: 20.6%; top: 87.37%; width: 22.5%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-bouddha { left: 53.3%; top: 92.65%; width: 12%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-golos { left: 42.6%; top: 89.98%; width: 17%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-detstvo { left: 59.2%; top: 89.07%; width: 11%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-laos { left: 31.7%; top: 88.94%; width: 7%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-dary { left: 58.1%; top: 90.97%; width: 24%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-toba { left: 78.6%; top: 86.93%; width: 7%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-saigon { left: 27.6%; top: 91.57%; width: 10%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-phangan { left: 79.6%; top: 89.76%; width: 12%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 93.6%; width: 32%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-india { left: 74.2%; top: 91.95%; width: 9%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-gorod { left: 6.25%; top: 90.4%; width: 7%; height: 0.58%; }
.puteshestviya-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 94.26%; width: 18%; height: 0.58%; }
.puteshestviya-exact-page .lotus-hotspot-prev { left: 71.0%; top: 94.85%; width: 5.6%; height: 0.62%; }
.puteshestviya-exact-page .lotus-hotspot-next { left: 86.6%; top: 94.85%; width: 6.2%; height: 0.62%; }

.india-exact-page .lotus-hotspot-audio {
  left: 5.4%;
  top: 0.25%;
  width: 9.5%;
  height: 0.34%;
}

.india-exact-page .lotus-menu-lotus { left: 19.4%; top: 95.13%; width: 10%; height: 0.4%; }
.india-exact-page .lotus-menu-son { left: 20.6%; top: 91.42%; width: 22.5%; height: 0.4%; }
.india-exact-page .lotus-menu-bouddha { left: 53.3%; top: 95%; width: 12%; height: 0.4%; }
.india-exact-page .lotus-menu-golos { left: 42.6%; top: 93.19%; width: 17%; height: 0.4%; }
.india-exact-page .lotus-menu-detstvo { left: 59.2%; top: 92.57%; width: 11%; height: 0.4%; }
.india-exact-page .lotus-menu-laos { left: 31.7%; top: 92.48%; width: 7%; height: 0.4%; }
.india-exact-page .lotus-menu-dary { left: 58.1%; top: 93.86%; width: 24%; height: 0.4%; }
.india-exact-page .lotus-menu-toba { left: 78.6%; top: 91.11%; width: 7%; height: 0.4%; }
.india-exact-page .lotus-menu-saigon { left: 27.6%; top: 94.27%; width: 10%; height: 0.4%; }
.india-exact-page .lotus-menu-phangan { left: 79.6%; top: 93.04%; width: 12%; height: 0.4%; }
.india-exact-page .lotus-menu-puteshestviya { left: 57.6%; top: 95.65%; width: 32%; height: 0.4%; }
.india-exact-page .lotus-menu-india { left: 74.2%; top: 94.53%; width: 9%; height: 0.4%; }
.india-exact-page .lotus-menu-gorod { left: 6.25%; top: 93.48%; width: 7%; height: 0.4%; }
.india-exact-page .lotus-menu-blagodarnost { left: 25.4%; top: 96.1%; width: 18%; height: 0.4%; }
.india-exact-page .lotus-hotspot-prev { left: 64.8%; top: 96.5%; width: 4.8%; height: 0.42%; }
.india-exact-page .lotus-hotspot-next { left: 83.4%; top: 96.5%; width: 5.8%; height: 0.42%; }

.gorod-exact-page .lotus-hotspot-audio {
  left: 5.05%;
  top: 0.95%;
  width: 10.2%;
  height: 0.72%;
}

.gorod-exact-page .lotus-hotspot-menu .lotus-hotspot {
  width: auto;
  height: auto;
  padding: 0;
}

.gorod-exact-page .lotus-menu-lotus { left: 21.8%; top: 87.45%; }
.gorod-exact-page .lotus-menu-son { left: 26.1%; top: 78.85%; }
.gorod-exact-page .lotus-menu-bouddha { left: 54.0%; top: 87.25%; }
.gorod-exact-page .lotus-menu-golos { left: 45.4%; top: 83.0%; }
.gorod-exact-page .lotus-menu-detstvo { left: 60.3%; top: 81.45%; }
.gorod-exact-page .lotus-menu-laos { left: 34.4%; top: 80.95%; }
.gorod-exact-page .lotus-menu-dary { left: 62.3%; top: 84.65%; }
.gorod-exact-page .lotus-menu-toba { left: 77.7%; top: 78.15%; }
.gorod-exact-page .lotus-menu-saigon { left: 29.0%; top: 85.55%; }
.gorod-exact-page .lotus-menu-phangan { left: 80.6%; top: 82.65%; }
.gorod-exact-page .lotus-menu-puteshestviya { left: 61.4%; top: 88.95%; }
.gorod-exact-page .lotus-menu-india { left: 75.0%; top: 86.05%; }
.gorod-exact-page .lotus-menu-gorod { left: 7.4%; top: 83.35%; }
.gorod-exact-page .lotus-menu-blagodarnost { left: 27.4%; top: 89.75%; }
.gorod-exact-page .lotus-hotspot-prev { left: 69.1%; top: 91.25%; width: 3.3%; height: 0.72%; padding: 0; }
.gorod-exact-page .lotus-hotspot-next { left: 86.9%; top: 91.25%; width: 4.0%; height: 0.72%; padding: 0; }

.blagodarnost-exact-page .lotus-hotspot-menu .lotus-hotspot {
  width: auto;
  height: auto;
  padding: 0.12% 0.45%;
}

.blagodarnost-exact-page .lotus-menu-lotus { left: 21.3%; top: 82.0%; }
.blagodarnost-exact-page .lotus-menu-son { left: 25.6%; top: 69.5%; }
.blagodarnost-exact-page .lotus-menu-bouddha { left: 53.5%; top: 81.5%; }
.blagodarnost-exact-page .lotus-menu-golos { left: 44.5%; top: 75.4%; }
.blagodarnost-exact-page .lotus-menu-detstvo { left: 59.8%; top: 73.3%; }
.blagodarnost-exact-page .lotus-menu-laos { left: 34.0%; top: 73.0%; }
.blagodarnost-exact-page .lotus-menu-dary { left: 61.6%; top: 77.7%; }
.blagodarnost-exact-page .lotus-menu-toba { left: 76.7%; top: 68.45%; }
.blagodarnost-exact-page .lotus-menu-saigon { left: 28.4%; top: 79.05%; }
.blagodarnost-exact-page .lotus-menu-phangan { left: 79.5%; top: 74.9%; }
.blagodarnost-exact-page .lotus-menu-puteshestviya { left: 61.0%; top: 83.7%; }
.blagodarnost-exact-page .lotus-menu-india { left: 74.5%; top: 79.9%; }
.blagodarnost-exact-page .lotus-menu-gorod { left: 7.5%; top: 76.4%; }
.blagodarnost-exact-page .lotus-menu-blagodarnost { left: 27.0%; top: 85.15%; }
.blagodarnost-exact-page .lotus-hotspot-prev { left: 74.8%; top: 87.55%; padding: 0.18% 0.65%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .lotus-exact-shell {
    width: min(100%, 640px);
  }

  .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.76%;
    width: 5%;
    height: 0.48%;
  }

  .lotus-figma-mobile-paragraph {
    position: absolute;
    z-index: 4;
    display: block;
    left: 21.875%;
    top: 15.42%;
    width: 56.25%;
    margin: 0;
    color: #464646;
    font-family: "Forum Lotus", Georgia, serif;
    font-size: clamp(7px, 2.1875vw, 14px);
    font-weight: 400;
    line-height: clamp(9px, 2.8125vw, 18px);
    letter-spacing: 0;
    text-align: left;
    pointer-events: none;
  }

  .lotus-figma-mobile-paragraph::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -4% -2% -5%;
    background: linear-gradient(180deg, rgba(238, 247, 250, 0.9), rgba(238, 247, 250, 0.62));
    filter: blur(6px);
  }


  .lotus-hotspot-menu .lotus-hotspot {
    font-size: clamp(17px, 5vw, 32px);
  }

  .lotus-menu-lotus { left: 22.3%; top: 88.79%; width: 16%; height: 0.7%; }
  .lotus-menu-son { left: 28.8%; top: 83.19%; width: 22%; height: 0.7%; }
  .lotus-menu-bouddha { left: 56.1%; top: 88.79%; width: 22%; height: 0.7%; }
  .lotus-menu-golos { left: 28.4%; top: 85.4%; width: 22%; height: 0.7%; }
  .lotus-menu-detstvo { left: 52.7%; top: 84.26%; width: 17%; height: 0.7%; }
  .lotus-menu-laos { left: 27.2%; top: 86.54%; width: 12%; height: 0.7%; }
  .lotus-menu-dary { left: 54.1%; top: 86.54%; width: 30%; height: 0.7%; }
  .lotus-menu-toba { left: 67.2%; top: 83.24%; width: 12%; height: 0.7%; }
  .lotus-menu-saigon { left: 61.2%; top: 87.68%; width: 17.4%; height: 0.7%; }
  .lotus-menu-phangan { left: 60.3%; top: 85.4%; width: 17%; height: 0.7%; }
  .lotus-menu-puteshestviya { left: 27.5%; top: 89.96%; width: 39%; height: 0.7%; }
  .lotus-menu-india { left: 29.1%; top: 91.1%; width: 13%; height: 0.7%; }
  .lotus-menu-gorod { left: 33.8%; top: 87.68%; width: 12%; height: 0.7%; }
  .lotus-menu-blagodarnost { left: 56.7%; top: 91.1%; width: 28%; height: 0.7%; }

  .lotus-hotspot-next {
    left: 54.1%;
    top: 94.72%;
    padding: 0.1% 1.1%;
    font-size: clamp(20px, 7vw, 40px);
  }

  .lotus-hotspot-prev {
    left: 41.3%;
    top: 94.7%;
    padding: 0.1% 1.1%;
    font-size: clamp(20px, 7vw, 40px);
  }

  .son-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.6%;
    width: 5%;
    height: 0.38%;
  }

  .son-exact-page .lotus-menu-lotus { left: 22.3%; top: 91.2%; width: 16%; height: 0.42%; }
  .son-exact-page .lotus-menu-son { left: 28.8%; top: 86.78%; width: 22%; height: 0.42%; }
  .son-exact-page .lotus-menu-bouddha { left: 56.1%; top: 91.2%; width: 22%; height: 0.42%; }
  .son-exact-page .lotus-menu-golos { left: 28.8%; top: 88.51%; width: 22%; height: 0.42%; }
  .son-exact-page .lotus-menu-detstvo { left: 52.7%; top: 87.62%; width: 17%; height: 0.42%; }
  .son-exact-page .lotus-menu-laos { left: 27.5%; top: 89.4%; width: 12%; height: 0.42%; }
  .son-exact-page .lotus-menu-dary { left: 54.1%; top: 89.4%; width: 30%; height: 0.42%; }
  .son-exact-page .lotus-menu-toba { left: 72.2%; top: 86.82%; width: 10%; height: 0.42%; }
  .son-exact-page .lotus-menu-saigon { left: 61.7%; top: 90.3%; width: 15%; height: 0.42%; }
  .son-exact-page .lotus-menu-phangan { left: 60.3%; top: 88.51%; width: 17%; height: 0.42%; }
  .son-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 92.1%; width: 39%; height: 0.42%; }
  .son-exact-page .lotus-menu-india { left: 29.1%; top: 93%; width: 13%; height: 0.42%; }
  .son-exact-page .lotus-menu-gorod { left: 33.8%; top: 90.3%; width: 12%; height: 0.42%; }
  .son-exact-page .lotus-menu-blagodarnost { left: 58%; top: 93%; width: 28%; height: 0.42%; }
  .son-exact-page .lotus-hotspot-prev { left: 33.8%; top: 96%; width: 8%; height: 0.5%; }
  .son-exact-page .lotus-hotspot-next { left: 63.8%; top: 96%; width: 8%; height: 0.5%; }

  .bouddha-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.42%;
    width: 5%;
    height: 0.28%;
  }

  .bouddha-exact-page .lotus-menu-lotus { left: 22.3%; top: 93.83%; width: 16%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-son { left: 28.8%; top: 90.73%; width: 22%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-bouddha { left: 56.1%; top: 93.83%; width: 22%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-golos { left: 28.8%; top: 91.94%; width: 22%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-detstvo { left: 52.7%; top: 91.31%; width: 17%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-laos { left: 27.5%; top: 92.57%; width: 12%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-dary { left: 54.1%; top: 92.57%; width: 30%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-toba { left: 72.2%; top: 90.76%; width: 10%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-saigon { left: 61.7%; top: 93.2%; width: 15%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-phangan { left: 60.3%; top: 91.94%; width: 17%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 94.46%; width: 39%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-india { left: 29.1%; top: 95.09%; width: 13%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-gorod { left: 33.8%; top: 93.2%; width: 12%; height: 0.32%; }
  .bouddha-exact-page .lotus-menu-blagodarnost { left: 58%; top: 95.09%; width: 28%; height: 0.32%; }
  .bouddha-exact-page .lotus-hotspot-prev { left: 33%; top: 97.1%; width: 8%; height: 0.38%; }
  .bouddha-exact-page .lotus-hotspot-next { left: 62%; top: 97.1%; width: 8%; height: 0.38%; }

  .golos-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.75%;
    width: 5%;
    height: 0.48%;
  }

  .golos-exact-page .lotus-menu-lotus { left: 22.3%; top: 89.08%; width: 16%; height: 0.58%; }
  .golos-exact-page .lotus-menu-son { left: 28.8%; top: 83.55%; width: 22%; height: 0.58%; }
  .golos-exact-page .lotus-menu-bouddha { left: 56.1%; top: 89.08%; width: 22%; height: 0.58%; }
  .golos-exact-page .lotus-menu-golos { left: 28.8%; top: 85.73%; width: 22%; height: 0.58%; }
  .golos-exact-page .lotus-menu-detstvo { left: 52.7%; top: 84.6%; width: 17%; height: 0.58%; }
  .golos-exact-page .lotus-menu-laos { left: 27.5%; top: 86.48%; width: 12%; height: 0.58%; }
  .golos-exact-page .lotus-menu-dary { left: 54.1%; top: 86.48%; width: 30%; height: 0.58%; }
  .golos-exact-page .lotus-menu-toba { left: 72.2%; top: 83.58%; width: 10%; height: 0.58%; }
  .golos-exact-page .lotus-menu-saigon { left: 61.7%; top: 87.6%; width: 15%; height: 0.58%; }
  .golos-exact-page .lotus-menu-phangan { left: 60.3%; top: 85.73%; width: 17%; height: 0.58%; }
  .golos-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 90.25%; width: 39%; height: 0.58%; }
  .golos-exact-page .lotus-menu-india { left: 29.1%; top: 91.38%; width: 13%; height: 0.58%; }
  .golos-exact-page .lotus-menu-gorod { left: 33.8%; top: 87.6%; width: 12%; height: 0.58%; }
  .golos-exact-page .lotus-menu-blagodarnost { left: 58%; top: 91.38%; width: 28%; height: 0.58%; }
  .golos-exact-page .lotus-hotspot-prev { left: 32%; top: 94.9%; width: 8%; height: 0.54%; }
  .golos-exact-page .lotus-hotspot-next { left: 62%; top: 94.9%; width: 8%; height: 0.54%; }

  .detstvo-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.52%;
    width: 5%;
    height: 0.34%;
  }

  .detstvo-exact-page .lotus-menu-lotus { left: 22.3%; top: 92.35%; width: 16%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-son { left: 28.8%; top: 88.5%; width: 22%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-bouddha { left: 56.1%; top: 92.35%; width: 22%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-golos { left: 28.8%; top: 90.03%; width: 22%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-detstvo { left: 52.7%; top: 89.23%; width: 17%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-laos { left: 27.5%; top: 91.21%; width: 12%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-dary { left: 54.1%; top: 91.21%; width: 30%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-toba { left: 72.2%; top: 88.49%; width: 10%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-saigon { left: 61.7%; top: 91.57%; width: 15%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-phangan { left: 60.3%; top: 90.03%; width: 17%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 93.15%; width: 39%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-india { left: 29.1%; top: 93.91%; width: 13%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-gorod { left: 33.8%; top: 91.57%; width: 12%; height: 0.4%; }
  .detstvo-exact-page .lotus-menu-blagodarnost { left: 58%; top: 93.91%; width: 28%; height: 0.4%; }
  .detstvo-exact-page .lotus-hotspot-prev { left: 34.3%; top: 96.26%; width: 8%; height: 0.42%; }
  .detstvo-exact-page .lotus-hotspot-next { left: 63.2%; top: 96.26%; width: 8%; height: 0.42%; }

  .laos-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.66%;
    width: 5%;
    height: 0.42%;
  }

  .laos-exact-page .lotus-menu-lotus { left: 22.3%; top: 90.02%; width: 16%; height: 0.48%; }
  .laos-exact-page .lotus-menu-son { left: 28.8%; top: 85.01%; width: 22%; height: 0.48%; }
  .laos-exact-page .lotus-menu-bouddha { left: 56.1%; top: 90.02%; width: 22%; height: 0.48%; }
  .laos-exact-page .lotus-menu-golos { left: 28.8%; top: 86.97%; width: 22%; height: 0.48%; }
  .laos-exact-page .lotus-menu-detstvo { left: 52.7%; top: 85.96%; width: 17%; height: 0.48%; }
  .laos-exact-page .lotus-menu-laos { left: 27.5%; top: 87.99%; width: 12%; height: 0.48%; }
  .laos-exact-page .lotus-menu-dary { left: 54.1%; top: 87.99%; width: 30%; height: 0.48%; }
  .laos-exact-page .lotus-menu-toba { left: 72.2%; top: 85.06%; width: 10%; height: 0.48%; }
  .laos-exact-page .lotus-menu-saigon { left: 61.7%; top: 89.01%; width: 15%; height: 0.48%; }
  .laos-exact-page .lotus-menu-phangan { left: 60.3%; top: 86.97%; width: 17%; height: 0.48%; }
  .laos-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 91.04%; width: 39%; height: 0.48%; }
  .laos-exact-page .lotus-menu-india { left: 29.1%; top: 92.06%; width: 13%; height: 0.48%; }
  .laos-exact-page .lotus-menu-gorod { left: 33.8%; top: 89.01%; width: 12%; height: 0.48%; }
  .laos-exact-page .lotus-menu-blagodarnost { left: 58%; top: 92.06%; width: 28%; height: 0.48%; }
  .laos-exact-page .lotus-hotspot-prev { left: 34.3%; top: 95.23%; width: 8%; height: 0.5%; }
  .laos-exact-page .lotus-hotspot-next { left: 63.2%; top: 95.23%; width: 8%; height: 0.5%; }

  .dary-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.53%;
    width: 5%;
    height: 0.34%;
  }

  .dary-exact-page .lotus-menu-lotus { left: 22.3%; top: 92.04%; width: 16%; height: 0.39%; }
  .dary-exact-page .lotus-menu-son { left: 28.8%; top: 88.04%; width: 22%; height: 0.39%; }
  .dary-exact-page .lotus-menu-bouddha { left: 56.1%; top: 92.04%; width: 22%; height: 0.39%; }
  .dary-exact-page .lotus-menu-golos { left: 28.8%; top: 89.61%; width: 22%; height: 0.39%; }
  .dary-exact-page .lotus-menu-detstvo { left: 52.7%; top: 88.8%; width: 17%; height: 0.39%; }
  .dary-exact-page .lotus-menu-laos { left: 27.5%; top: 90.42%; width: 12%; height: 0.39%; }
  .dary-exact-page .lotus-menu-dary { left: 54.1%; top: 90.42%; width: 30%; height: 0.39%; }
  .dary-exact-page .lotus-menu-toba { left: 72.2%; top: 88.09%; width: 10%; height: 0.39%; }
  .dary-exact-page .lotus-menu-saigon { left: 61.7%; top: 91.23%; width: 15%; height: 0.39%; }
  .dary-exact-page .lotus-menu-phangan { left: 60.3%; top: 89.61%; width: 17%; height: 0.39%; }
  .dary-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 92.85%; width: 39%; height: 0.39%; }
  .dary-exact-page .lotus-menu-india { left: 29.1%; top: 93.66%; width: 13%; height: 0.39%; }
  .dary-exact-page .lotus-menu-gorod { left: 33.8%; top: 91.23%; width: 12%; height: 0.39%; }
  .dary-exact-page .lotus-menu-blagodarnost { left: 58%; top: 93.66%; width: 28%; height: 0.39%; }
  .dary-exact-page .lotus-hotspot-prev { left: 34.3%; top: 96.19%; width: 8%; height: 0.42%; }
  .dary-exact-page .lotus-hotspot-next { left: 63.2%; top: 96.19%; width: 8%; height: 0.42%; }

  .toba-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.38%;
    width: 5%;
    height: 0.25%;
  }

  .toba-exact-page .lotus-menu-lotus { left: 22.3%; top: 94.33%; width: 16%; height: 0.3%; }
  .toba-exact-page .lotus-menu-son { left: 28.8%; top: 91.48%; width: 22%; height: 0.3%; }
  .toba-exact-page .lotus-menu-bouddha { left: 56.1%; top: 94.33%; width: 22%; height: 0.3%; }
  .toba-exact-page .lotus-menu-golos { left: 28.8%; top: 92.6%; width: 22%; height: 0.3%; }
  .toba-exact-page .lotus-menu-detstvo { left: 52.7%; top: 92.02%; width: 17%; height: 0.3%; }
  .toba-exact-page .lotus-menu-laos { left: 27.5%; top: 93.18%; width: 12%; height: 0.3%; }
  .toba-exact-page .lotus-menu-dary { left: 54.1%; top: 93.18%; width: 30%; height: 0.3%; }
  .toba-exact-page .lotus-menu-toba { left: 72.2%; top: 91.51%; width: 10%; height: 0.3%; }
  .toba-exact-page .lotus-menu-saigon { left: 61.7%; top: 93.75%; width: 15%; height: 0.3%; }
  .toba-exact-page .lotus-menu-phangan { left: 60.3%; top: 92.6%; width: 17%; height: 0.3%; }
  .toba-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 94.91%; width: 39%; height: 0.3%; }
  .toba-exact-page .lotus-menu-india { left: 29.1%; top: 95.49%; width: 13%; height: 0.3%; }
  .toba-exact-page .lotus-menu-gorod { left: 33.8%; top: 93.75%; width: 12%; height: 0.3%; }
  .toba-exact-page .lotus-menu-blagodarnost { left: 58%; top: 95.49%; width: 28%; height: 0.3%; }
  .toba-exact-page .lotus-hotspot-prev { left: 34.3%; top: 97.29%; width: 8%; height: 0.34%; }
  .toba-exact-page .lotus-hotspot-next { left: 63.2%; top: 97.29%; width: 8%; height: 0.34%; }

  .saigon-exact-page .lotus-hotspot-audio {
    left: 10.3%;
    top: 0.31%;
    width: 5%;
    height: 0.2%;
  }

  .saigon-exact-page .lotus-menu-lotus { left: 22.3%; top: 95.83%; width: 16%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-son { left: 28.8%; top: 93.57%; width: 22%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-bouddha { left: 56.1%; top: 95.83%; width: 22%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-golos { left: 28.8%; top: 94.45%; width: 22%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-detstvo { left: 52.7%; top: 94%; width: 17%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-laos { left: 27.5%; top: 94.91%; width: 12%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-dary { left: 54.1%; top: 94.91%; width: 30%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-toba { left: 72.2%; top: 93.59%; width: 10%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-saigon { left: 61.7%; top: 95.37%; width: 15%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-phangan { left: 60.3%; top: 94.45%; width: 17%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 96.29%; width: 39%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-india { left: 29.1%; top: 96.74%; width: 13%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-gorod { left: 33.8%; top: 95.37%; width: 12%; height: 0.24%; }
  .saigon-exact-page .lotus-menu-blagodarnost { left: 58%; top: 96.74%; width: 28%; height: 0.24%; }
  .saigon-exact-page .lotus-hotspot-prev { left: 32.8%; top: 98.06%; width: 11%; height: 0.42%; }
  .saigon-exact-page .lotus-hotspot-next { left: 61.6%; top: 98.06%; width: 12%; height: 0.42%; }

  .phangan-exact-page .lotus-hotspot-audio {
    left: 5.5%;
    top: 0.18%;
    width: 9%;
    height: 0.24%;
  }

  .phangan-exact-page .lotus-menu-lotus { left: 22.3%; top: 96.07%; width: 16%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-son { left: 28.8%; top: 93.93%; width: 22%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-bouddha { left: 56.1%; top: 96.07%; width: 22%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-golos { left: 28.8%; top: 94.76%; width: 22%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-detstvo { left: 52.7%; top: 94.34%; width: 17%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-laos { left: 27.5%; top: 95.2%; width: 12%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-dary { left: 54.1%; top: 95.2%; width: 30%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-toba { left: 72.2%; top: 93.95%; width: 10%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-saigon { left: 61.7%; top: 95.63%; width: 15%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-phangan { left: 60.3%; top: 94.76%; width: 17%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 96.5%; width: 39%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-india { left: 29.1%; top: 96.92%; width: 13%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-gorod { left: 33.8%; top: 95.63%; width: 12%; height: 0.23%; }
  .phangan-exact-page .lotus-menu-blagodarnost { left: 58%; top: 96.92%; width: 28%; height: 0.23%; }
  .phangan-exact-page .lotus-hotspot-prev { left: 32.8%; top: 98.17%; width: 11%; height: 0.38%; }
  .phangan-exact-page .lotus-hotspot-next { left: 61.6%; top: 98.17%; width: 12%; height: 0.38%; }

  .puteshestviya-exact-page .lotus-hotspot-audio {
    left: 5.4%;
    top: 0.36%;
    width: 9.5%;
    height: 0.5%;
  }

  .puteshestviya-exact-page .lotus-menu-lotus { left: 22.3%; top: 91.16%; width: 16%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-son { left: 28.8%; top: 86.38%; width: 22%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-bouddha { left: 56.1%; top: 91.16%; width: 22%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-golos { left: 28.8%; top: 88.24%; width: 22%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-detstvo { left: 52.7%; top: 87.29%; width: 17%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-laos { left: 27.5%; top: 89.21%; width: 12%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-dary { left: 54.1%; top: 89.21%; width: 30%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-toba { left: 72.2%; top: 86.42%; width: 10%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-saigon { left: 61.7%; top: 90.19%; width: 15%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-phangan { left: 60.3%; top: 88.24%; width: 17%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 92.14%; width: 39%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-india { left: 29.1%; top: 93.09%; width: 13%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-gorod { left: 33.8%; top: 90.19%; width: 12%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-menu-blagodarnost { left: 58%; top: 93.09%; width: 28%; height: 0.5%; }
  .puteshestviya-exact-page .lotus-hotspot-prev { left: 32.8%; top: 95.89%; width: 12%; height: 0.62%; }
  .puteshestviya-exact-page .lotus-hotspot-next { left: 61.6%; top: 95.89%; width: 12%; height: 0.62%; }

  .india-exact-page .lotus-hotspot-audio {
    left: 5.4%;
    top: 0.25%;
    width: 9.5%;
    height: 0.34%;
  }

  .india-exact-page .lotus-menu-lotus { left: 22.3%; top: 93.99%; width: 16%; height: 0.34%; }
  .india-exact-page .lotus-menu-son { left: 28.8%; top: 90.74%; width: 22%; height: 0.34%; }
  .india-exact-page .lotus-menu-bouddha { left: 56.1%; top: 93.99%; width: 22%; height: 0.34%; }
  .india-exact-page .lotus-menu-golos { left: 28.8%; top: 92.01%; width: 22%; height: 0.34%; }
  .india-exact-page .lotus-menu-detstvo { left: 52.7%; top: 91.36%; width: 17%; height: 0.34%; }
  .india-exact-page .lotus-menu-laos { left: 27.5%; top: 92.67%; width: 12%; height: 0.34%; }
  .india-exact-page .lotus-menu-dary { left: 54.1%; top: 92.67%; width: 30%; height: 0.34%; }
  .india-exact-page .lotus-menu-toba { left: 72.2%; top: 90.77%; width: 10%; height: 0.34%; }
  .india-exact-page .lotus-menu-saigon { left: 61.7%; top: 93.33%; width: 15%; height: 0.34%; }
  .india-exact-page .lotus-menu-phangan { left: 60.3%; top: 92.01%; width: 17%; height: 0.34%; }
  .india-exact-page .lotus-menu-puteshestviya { left: 28.8%; top: 94.66%; width: 39%; height: 0.34%; }
  .india-exact-page .lotus-menu-india { left: 29.1%; top: 95.31%; width: 13%; height: 0.34%; }
  .india-exact-page .lotus-menu-gorod { left: 33.8%; top: 93.33%; width: 12%; height: 0.34%; }
  .india-exact-page .lotus-menu-blagodarnost { left: 58%; top: 95.31%; width: 28%; height: 0.34%; }
  .india-exact-page .lotus-hotspot-prev { left: 28.0%; top: 97.08%; width: 13%; height: 0.5%; }
  .india-exact-page .lotus-hotspot-next { left: 61.6%; top: 97.08%; width: 13%; height: 0.5%; }

  .gorod-exact-page .lotus-hotspot-audio {
    left: 10.5%;
    top: 0.95%;
    width: 5.0%;
    height: 0.72%;
  }

  .gorod-exact-page .lotus-menu-lotus { left: 22.2%; top: 84.95%; }
  .gorod-exact-page .lotus-menu-son { left: 28.9%; top: 77.4%; }
  .gorod-exact-page .lotus-menu-bouddha { left: 56.0%; top: 84.95%; }
  .gorod-exact-page .lotus-menu-golos { left: 28.6%; top: 80.25%; }
  .gorod-exact-page .lotus-menu-detstvo { left: 52.8%; top: 79.05%; }
  .gorod-exact-page .lotus-menu-laos { left: 27.2%; top: 81.9%; }
  .gorod-exact-page .lotus-menu-dary { left: 54.0%; top: 81.9%; }
  .gorod-exact-page .lotus-menu-toba { left: 69.0%; top: 77.4%; }
  .gorod-exact-page .lotus-menu-saigon { left: 61.6%; top: 83.35%; }
  .gorod-exact-page .lotus-menu-phangan { left: 60.1%; top: 80.25%; }
  .gorod-exact-page .lotus-menu-puteshestviya { left: 27.3%; top: 86.8%; }
  .gorod-exact-page .lotus-menu-india { left: 29.0%; top: 88.25%; }
  .gorod-exact-page .lotus-menu-gorod { left: 33.8%; top: 83.35%; }
  .gorod-exact-page .lotus-menu-blagodarnost { left: 57.0%; top: 88.25%; }
  .gorod-exact-page .lotus-hotspot-prev { left: 28.7%; top: 92.45%; width: 7.8%; height: 0.72%; }
  .gorod-exact-page .lotus-hotspot-next { left: 61.4%; top: 92.45%; width: 8.5%; height: 0.72%; }

  .blagodarnost-exact-page .lotus-hotspot-menu .lotus-hotspot {
    width: auto;
    height: auto;
    padding: 0.16% 0.8%;
  }

  .blagodarnost-exact-page .lotus-menu-lotus { left: 22.3%; top: 77.85%; }
  .blagodarnost-exact-page .lotus-menu-son { left: 28.7%; top: 66.7%; }
  .blagodarnost-exact-page .lotus-menu-bouddha { left: 55.8%; top: 77.85%; }
  .blagodarnost-exact-page .lotus-menu-golos { left: 28.4%; top: 71.05%; }
  .blagodarnost-exact-page .lotus-menu-detstvo { left: 52.6%; top: 68.8%; }
  .blagodarnost-exact-page .lotus-menu-laos { left: 27.2%; top: 73.3%; }
  .blagodarnost-exact-page .lotus-menu-dary { left: 54.0%; top: 73.3%; }
  .blagodarnost-exact-page .lotus-menu-toba { left: 69.0%; top: 66.8%; }
  .blagodarnost-exact-page .lotus-menu-saigon { left: 61.7%; top: 75.55%; }
  .blagodarnost-exact-page .lotus-menu-phangan { left: 60.2%; top: 71.05%; }
  .blagodarnost-exact-page .lotus-menu-puteshestviya { left: 27.5%; top: 80.1%; }
  .blagodarnost-exact-page .lotus-menu-india { left: 29.1%; top: 82.35%; }
  .blagodarnost-exact-page .lotus-menu-gorod { left: 33.7%; top: 75.55%; }
  .blagodarnost-exact-page .lotus-menu-blagodarnost { left: 56.6%; top: 82.35%; }
  .blagodarnost-exact-page .lotus-hotspot-prev { left: 40.0%; top: 89.45%; padding: 0.18% 1.05%; }
}
