html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #000000 -9.99%, #02010A 32.51%);
}

.text {
  color: #c3c3c3;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.main-link {
  color: rgba(98, 140, 196, 0.82);
}

.button {
  background: #272463;
  color: #fff;
  width: 10rem;
  height: 2.625rem;
  border-radius: 0.3rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9375rem;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: #36317e;
}

@media screen and (max-width: 770px) and (min-height: 500px) {
  .button {
    border-radius: 0.7rem;
  }
}
.gif {
  width: 4.125rem;
  height: 4.125rem;
  flex-shrink: 0;
  border-radius: 3.125rem;
  z-index: 3;
}

.image-from-side-box {
  background: #272463;
  width: 10.4375rem;
  height: 16.125rem;
  z-index: 2;
  display: block;
}

.left-pattern,
.right-pattern {
  width: 17.8125rem;
  height: 10.5625rem;
  z-index: 1;
}

.right-pattern {
  transform: scaleX(-1);
}

.author-pattern {
  width: 100%;
}
.author-pattern .pattern-wide-image {
  width: 100%;
  margin-top: -30%;
  height: auto;
  display: block;
  position: relative;
  margin-bottom: -2.5rem;
  z-index: 1;
  opacity: 0.5;
}

.footer-image-container {
  width: 100%;
}
.footer-image-container .footer-wide-image {
  width: 100%;
  margin-top: -35%;
  height: auto;
  display: block;
  position: relative;
  margin-bottom: -2.5rem;
  opacity: 0.5;
  z-index: 1;
}

.header-content {
  list-style: none;
  position: relative;
}
.header-content a {
  text-decoration: none;
  color: #ddd;
  font-size: 1em;
  align-items: center;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}
.header-content a:hover, .header-content a:focus {
  color: #efcfa4;
  border-radius: 4px;
  text-decoration: none;
}
.header-content i {
  margin-right: 8px;
  font-size: 1.2em;
}

@media screen and (max-width: 768px) {
  .header-content a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-content i {
    margin-right: 8px;
    margin-bottom: 0;
  }
}
/* ===============================
   SLIDESHOW
   =============================== */
.slideshow-container {
  position: relative;
}

/* ===============================
   OVERLAY
   =============================== */
.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}
.gallery-overlay:hover .gallery-overlay__button {
  opacity: 1;
  transform: translateY(0);
  background-color: rgba(0, 0, 0, 0.62);
}
.gallery-overlay__button {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  color: #ffffff;
  font-family: "Dancing Script";
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 0;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

/* ===============================
   POPUP
   =============================== */
.slider-gallery__popup {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.72);
}
.slider-gallery__popup.is-open {
  display: flex;
}
.slider-gallery__dialog {
  position: relative;
  width: min(92vw, 760px);
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  border-radius: 0.9375rem;
  background: #02010A;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}
.slider-gallery__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 3rem 0.85rem 1rem;
  border-bottom: 1px solid rgba(129, 129, 130, 0.1647058824);
  background: #02010A;
}
.slider-gallery__close {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #ddd;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.slider-gallery__close:hover {
  opacity: 0.8;
}
.slider-gallery__close:focus-visible {
  outline: 2px solid #efcfa4;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.slider-gallery__title {
  margin: 0;
  color: #ddd;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  text-align: center;
}
.slider-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  padding: 1rem 1rem 1.25rem;
}
.slider-gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.9375rem;
  background: rgba(23, 34, 45, 0.61);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.slider-gallery__thumb:hover {
  transform: scale(1.03);
  border-color: #3d75a7;
}
.slider-gallery__thumb:focus-visible {
  outline: none;
  border-color: #efcfa4;
  box-shadow: 0 0 0 2px rgba(239, 207, 164, 0.25);
}
.slider-gallery__thumb.is-active {
  border-color: #efcfa4;
  box-shadow: 0 0 0 2px rgba(239, 207, 164, 0.2);
}
.slider-gallery__thumb--slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  background: rgba(36, 70, 99, 0.35);
}
.slider-gallery__thumb--slideshow:hover {
  background: #065d83;
  border-color: #efcfa4;
}
.slider-gallery__thumb--slideshow.is-playing {
  background: rgba(14, 82, 86, 0.6352941176);
  border-color: #efcfa4;
}
.slider-gallery__slideshow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1.2rem;
}
.slider-gallery__image {
  display: block;
  width: 100%;
  height: 5.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-gallery__caption {
  display: block;
  padding: 0.4rem 0.45rem 0.5rem;
  color: #c3c3c3;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 700px) {
  .slider-gallery__popup {
    align-items: flex-start;
    padding-top: 30px;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
  }
  .slider-gallery__dialog {
    width: 100%;
    max-height: calc(100dvh - 30px - 1rem);
  }
  .slider-gallery__header {
    min-height: 3rem;
    padding-right: 2.75rem;
    padding-left: 0.9rem;
  }
}
@media (max-width: 466px) {
  .slider-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slider-gallery__image {
    height: 4.75rem;
  }
}

.home-section .main-box {
  width: min(100%, 34rem);
  min-height: 10rem;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0;
  text-align: center;
  overflow: visible;
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 14%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(18, 17, 38, 0.92) 0%, rgba(11, 10, 26, 0.9) 45%, rgba(7, 8, 17, 0.92) 100%);
  border: 1px solid rgba(130, 129, 129, 0.38);
  border-top: 0;
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.home-section .main-box::before, .home-section .main-box::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(188, 176, 130, 0) 0%, rgba(188, 176, 130, 0.3) 18%, rgba(188, 176, 130, 0.2) 82%, rgba(188, 176, 130, 0) 100%);
  pointer-events: none;
}
.home-section .main-box::before {
  left: 1.1rem;
}
.home-section .main-box::after {
  right: 1.1rem;
}
.home-section .main-box-scroll-head {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% + 2rem);
  height: 1.2rem;
  transform: translate(-50%, -55%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background: linear-gradient(180deg, rgba(16, 22, 52, 0.96) 0%, rgba(10, 16, 38, 0.96) 50%, rgba(7, 12, 28, 0.96) 100%);
  border: 1px solid rgba(130, 129, 129, 0.38);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.home-section .main-box-scroll-head::before, .home-section .main-box-scroll-head::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: rgba(208, 204, 191, 0.2);
  opacity: 0.8;
}
.home-section .main-box-scroll-head::before {
  left: 0.6rem;
}
.home-section .main-box-scroll-head::after {
  right: 0.6rem;
}
.home-section .main-box-scroll-cap {
  display: none;
}
.home-section .main-box-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -34%);
  width: 3.65rem;
  height: 3.65rem;
  z-index: 5;
  display: grid;
  place-items: center;
}
.home-section .main-box-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -0.15rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 55%), rgba(11, 10, 26, 0.9);
  border: 1px solid rgba(130, 129, 129, 0.38);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 18px rgba(117, 129, 255, 0.08);
}
.home-section .main-box-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(124, 146, 255, 0.16)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
}
.home-section .main-box-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4.5rem 2.3rem 3.4rem;
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}
.home-section .main-box-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(87, 92, 173, 0.14), rgba(0, 0, 0, 0) 40%), radial-gradient(circle at 50% 100%, rgba(34, 36, 99, 0.12), rgba(0, 0, 0, 0) 44%);
  pointer-events: none;
}
.home-section .main-box-content, .home-section .main-box-second-content {
  position: relative;
  z-index: 1;
  color: rgba(224, 220, 208, 0.94);
  font-family: "Dancing Script";
  font-optical-sizing: auto;
  text-align: center;
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.16;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45), 0 0 18px rgba(117, 129, 255, 0.08);
}
.home-section .main-box-second-content {
  font-size: 1.78rem;
  color: rgba(208, 204, 191, 0.88);
}
.home-section .main-box-divider {
  width: min(72%, 18rem);
  height: 1px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(188, 176, 130, 0) 0%, rgba(188, 176, 130, 0.45) 50%, rgba(188, 176, 130, 0) 100%);
}
.home-section .main-box-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 0.55rem;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 1px;
  background: linear-gradient(180deg, rgb(201, 188, 145), rgb(122, 110, 77));
  box-shadow: 0 0 10px rgba(201, 188, 145, 0.22);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: #02010A;
  z-index: 100;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-content {
  position: relative;
  list-style: none;
}
.header-content > a,
.header-content > .submenu-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.header-content > a i,
.header-content > .submenu-trigger i {
  font-size: 1rem;
  transition: transform 0.28s ease;
}
.header-content > a:hover,
.header-content > .submenu-trigger:hover {
  background: rgba(23, 34, 45, 0.61);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  min-width: 13rem;
  padding: 0.45rem 0;
  background: #03000a;
  border: 1px solid rgba(221, 221, 221, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  filter: blur(2px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.22s, filter 0.22s ease;
}
.submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.submenu li {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.submenu li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  border-radius: 0;
  transition: background 0.2s ease, padding-left 0.2s ease, color 0.2s ease;
}
.submenu li a:hover {
  background: rgba(221, 221, 221, 0.06);
  padding-left: 1.15rem;
}

.header-content:hover > .submenu,
.header-content:focus-within > .submenu,
.header-content.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s, filter 0.22s ease;
}

.header-content:hover > .submenu li,
.header-content:focus-within > .submenu li,
.header-content.is-open > .submenu li {
  opacity: 1;
  transform: translateY(0);
}

.header-content:hover > .submenu li:nth-child(1),
.header-content:focus-within > .submenu li:nth-child(1),
.header-content.is-open > .submenu li:nth-child(1) {
  transition-delay: 0.03s;
}

.header-content:hover > .submenu li:nth-child(2),
.header-content:focus-within > .submenu li:nth-child(2),
.header-content.is-open > .submenu li:nth-child(2) {
  transition-delay: 0.06s;
}

.header-content:hover > a i,
.header-content:focus-within > a i,
.header-content:hover > .submenu-trigger i,
.header-content:focus-within > .submenu-trigger i,
.header-content.is-open > .submenu-trigger i {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-toggle .bar {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: rgba(221, 221, 221, 0.9);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease, width 0.3s ease;
}

.menu-toggle .bar:nth-child(1) {
  transform: translate(-50%, -7px) rotate(0deg);
}

.menu-toggle .bar:nth-child(2) {
  transform: translate(-50%, 0) rotate(0deg);
}

.menu-toggle .bar:nth-child(3) {
  transform: translate(-50%, 7px) rotate(0deg);
}

.menu-toggle.is-open .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0.65);
}

.menu-toggle.is-open .bar:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu-toggle:hover .bar {
  width: 28px;
}

.navigation {
  position: fixed;
  top: 50px;
  right: 0;
  width: 75%;
  height: calc(100vh - 50px);
  background: #03000a;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.navigation.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation .header-content {
  margin-bottom: 0.5rem;
}

.navigation a,
.navigation .submenu-trigger {
  font-size: 1rem;
  padding: 0.6rem 0.8rem;
}

.home-header {
  position: sticky;
  top: 0;
  height: auto;
  padding: 0;
  display: block;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  z-index: 120;
}

.home-header-sticky-inner {
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: 1.1rem 1.4rem 0.9rem;
  transition: padding 0.3s ease, transform 0.3s ease;
}

.index-header-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.index-header-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-header-logo {
  width: 4.6rem;
  height: 4.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(124, 146, 255, 0.24));
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.index-header-copy {
  width: 100%;
  max-width: 62rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  color: rgba(224, 220, 208, 0.94);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.78), 0 0 18px rgba(117, 129, 255, 0.12), 0 0 34px rgba(117, 129, 255, 0.06);
}

.index-header-copy-line {
  font-family: "Dancing Script";
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  transform-origin: center center;
  transition: transform 0.32s ease, opacity 0.24s ease;
}

.index-header-copy-line--secondary {
  color: rgba(208, 204, 191, 0.88);
}

.index-header-divider {
  width: min(16rem, 58vw);
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, rgba(188, 176, 130, 0) 0%, #bcb082 50%, rgba(188, 176, 130, 0) 100%);
}

.index-header-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 1px;
  background: linear-gradient(180deg, rgb(201, 188, 145), rgb(122, 110, 77));
  box-shadow: 0 0 12px rgba(201, 188, 145, 0.22);
}

.index-header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
}

.home-header .header-left,
.home-header .header-right {
  gap: 0.95rem;
}

.home-header .header-content > a,
.home-header .header-content > .submenu-trigger {
  color: rgba(224, 220, 208, 0.94);
}

.home-header .header-content > a:hover,
.home-header .header-content > .submenu-trigger:hover {
  background: rgba(224, 220, 208, 0.08);
}

.home-header .submenu {
  background: rgba(0, 0, 0, 0.97);
}

.home-header.is-condensed .home-header-sticky-inner {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.home-header.is-condensed .index-header-copy {
  gap: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle .bar,
  .navigation,
  .submenu,
  .submenu li,
  .header-content > a,
  .header-content > .submenu-trigger,
  .header-content i,
  .home-header-sticky-inner,
  .index-header-logo,
  .index-header-copy-line,
  .index-header-nav-row {
    transition: none;
  }
  .submenu {
    filter: none;
  }
}
@media (max-width: 900px) {
  .header {
    height: 52px;
  }
  .home-header {
    height: auto;
  }
}
@media (max-width: 700px) {
  .header {
    height: 50px;
    padding: 0.2rem 1rem;
  }
  .header-left,
  .header-right {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .submenu {
    display: none;
  }
  .home-header {
    height: auto;
    padding: 0;
  }
  .home-header-sticky-inner {
    padding: 0.9rem 1rem 0.7rem;
  }
  .index-header-copy-line {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }
  .index-header-nav-row {
    justify-content: center;
    padding: 0;
  }
  .home-header .menu-toggle {
    display: flex;
    margin-left: 0;
  }
  .home-header .navigation {
    position: static;
    width: 100%;
    height: auto;
    background: transparent;
    transform: translateY(-10px);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    margin-top: 0;
    transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.28s ease, margin-top 0.28s ease;
  }
  .home-header .navigation.is-visible {
    transform: translateY(0);
    opacity: 1;
    max-height: 32rem;
    pointer-events: auto;
  }
  .home-header .navigation ul {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    padding: 0.85rem 0 0;
  }
  .home-header .navigation .header-content {
    margin-bottom: 0;
  }
  .home-header .navigation a,
  .home-header .navigation .submenu-trigger {
    width: 100%;
    font-size: 0.95rem;
    color: rgba(224, 220, 208, 0.94);
    background: rgba(224, 220, 208, 0.05);
    border-radius: 0;
  }
  .home-header .navigation .submenu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0;
    margin-top: 0.45rem;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    filter: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .home-header .navigation .header-content.is-open > .submenu {
    max-height: 12rem;
  }
  .home-header .navigation .submenu li {
    opacity: 1;
    transform: none;
  }
  .home-header .navigation .submenu a {
    background: rgba(224, 220, 208, 0.025);
    font-size: 0.88rem;
    padding-block: 0.65rem;
  }
  .home-header.is-condensed .index-header-logo {
    width: 3.55rem;
    height: 3.55rem;
  }
  .home-header.is-condensed .index-header-copy-line {
    transform: scale(0.88);
  }
}
footer {
  background-color: #02010A;
  color: #c9c9c9;
  display: flex;
  min-height: 8rem;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  padding: 2rem 14%;
  padding-bottom: 0;
  position: relative;
  z-index: 9;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  text-align: center;
  margin-top: -10rem;
}
.footer-left {
  text-align: left;
}
.footer-center {
  margin-top: -12rem;
}
.footer-right {
  text-align: right;
}
.footer-brand-image {
  display: block;
  margin: 2rem auto 1rem;
  height: 6rem;
  border-radius: 50%;
  opacity: 0.8;
}
.footer-paragraph, .footer-paragraph-bold, .footer-paragraph-small {
  font-family: "Merriweather", serif;
  color: #ddd;
}
.footer-paragraph {
  font-weight: 150;
}
.footer-paragraph-bold {
  font-weight: 500;
}
.footer-paragraph-small {
  font-weight: 150;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
}
.social-icons a {
  color: #ffffff;
  margin-left: 10px;
  font-size: 2rem;
  opacity: 0.8;
}

@media screen and (max-width: 800px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-center, .footer-right {
    margin-top: 0;
  }
  .footer-left {
    text-align: left;
    margin-bottom: 1rem;
  }
  .footer-center {
    margin-bottom: -1rem;
    margin-top: 0;
  }
  .footer-right {
    margin-bottom: 1rem;
  }
  .footer-paragraph {
    font-size: 12px;
  }
  .footer-paragraph-bold {
    font-size: 14px;
    text-align: center;
  }
  .footer-paragraph-small {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
}
.author-and-contact-section {
  background-image: url("../assets/images/sections/mountain.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 0em 20%;
  margin-top: -38.55vw;
  position: relative;
  z-index: 5;
}

.avatar {
  width: 18vw;
  background-size: cover;
  position: relative;
  left: 51%;
  top: 5vw;
  transform: translate(-50%, -50%);
  z-index: 0;
  display: none;
}

.author-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 17rem;
}

.author-text-box {
  color: #c3c3c3;
  font-family: "Merriweather", serif;
  width: calc(50% - 90px);
  margin: 20px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  position: relative;
  z-index: 1;
}
.author-text-box.right {
  text-align: right;
}
.author-text-box.left {
  text-align: left;
}
.author-text-box.center {
  width: 100%;
  text-align: center;
  order: 3;
}
.author-text-box h2 {
  margin: 0 0 10px 0;
}
.author-text-box p {
  margin: 0;
}

.author-text-paragraph {
  padding: 0.9rem;
  font-size: 18px;
}

.author-section-title {
  font-weight: 400;
  padding-bottom: 1rem;
}

.mail-box-image {
  width: calc(100% - 120px);
  height: auto;
  padding: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  padding-bottom: 24rem;
}

.contact-section {
  position: relative;
  width: 100%;
}

.contact-background {
  width: calc(100% - 120px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.contact-form textarea {
  margin: 0.5rem;
  padding: 0.5rem;
  width: 43vw;
  min-height: 6rem;
  border-radius: 0.9rem;
  border: 1px solid #c3c3c3;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 18px;
}
.contact-form button {
  background: #272463;
  color: #ffffff;
  width: 13rem;
  height: 3.2rem;
  border-radius: 0.9rem;
  font-size: 0.9375rem;
  line-height: normal;
  border: none;
  cursor: pointer;
  margin-top: 4.5rem;
  position: relative;
  z-index: 125;
  margin-bottom: 5rem;
}

.form-group {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -12rem;
}
.form-group input {
  width: 20vw;
  min-height: 1.7rem;
  padding: 0.5rem;
  border-radius: 0.9rem;
  border: 1px solid #c3c3c3;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin: 3.5rem 1rem 5rem;
  font-size: 16px;
}
.form-group input::-moz-placeholder {
  color: #ddd;
}
.form-group input::placeholder {
  color: #ddd;
}
.form-group textarea::-moz-placeholder {
  color: #ddd;
}
.form-group textarea::placeholder {
  color: #ddd;
}

.contact-form textarea::-moz-placeholder {
  color: #ddd;
}

.contact-form textarea::placeholder {
  color: #ddd;
}

.contact-me-paragraph {
  text-align: center;
  font-family: "Merriweather", serif;
  color: #ddd;
  font-weight: 400;
  margin-bottom: -4.9rem;
  margin-top: 8rem;
}

.contact-me-message-paragraph {
  text-align: center;
  font-family: "Merriweather", serif;
  color: #ddd;
  font-weight: 200;
  margin-bottom: 3rem;
  margin-top: -4rem;
}

@media screen and (max-width: 1350px) {
  .author-text-box {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  .author-text-box.right {
    text-align: center;
  }
  .author-text-box.left {
    text-align: center;
  }
  .author-text-paragraph {
    font-size: 14px;
  }
  .form-group {
    width: 100%;
    text-align: center;
  }
  .contact-me-message-paragraph {
    visibility: hidden;
  }
  .contact-form textarea {
    margin-top: auto;
    width: 49vw;
  }
  .contact-form input {
    width: 22vw;
  }
  .author-container {
    padding-top: 14rem;
    border-bottom: 1px solid rgba(129, 129, 130, 0.1647058824);
  }
  .author-and-contact-section {
    padding: 0 10%;
  }
  .mail-box-image {
    visibility: visible;
    opacity: 0.2;
  }
}
@media screen and (max-width: 800px) {
  .author-text-box p {
    margin: 0.5rem;
  }
  .contact-me-paragraph {
    margin-bottom: -4.5rem;
  }
  .author-container {
    margin-bottom: 5rem;
  }
  .form-group {
    flex-direction: column;
  }
  .form-group input,
  .form-group textarea {
    width: 47vw;
    margin: 0.5rem auto;
  }
  .form-container {
    padding: 1rem;
  }
  .contact-form button {
    padding: 0.5rem 1rem;
  }
  .contact-me-message-paragraph {
    visibility: hidden;
  }
  .contact-form textarea {
    margin-top: auto;
    margin-bottom: 0;
  }
  .author-container {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 740px) {
  .author-and-contact-section {
    padding: 0;
  }
  .form-group {
    margin-top: 0;
  }
  .mail-box-image {
    padding-bottom: 4rem;
    width: calc(100% - 10vw);
  }
}
@media screen and (max-width: 700px) {
  .avatar {
    display: none;
  }
  .author-container {
    padding-top: 10rem;
  }
  .contact-section {
    text-align: right;
    position: relative;
  }
  .mail-box-image {
    position: relative;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -30%);
  }
  .contact-me-paragraph {
    margin-bottom: 15%;
  }
  .form-container {
    width: auto;
    z-index: 2;
    position: absolute;
  }
  .form-group {
    flex-direction: column;
  }
  .form-group input,
  .contact-form textarea {
    width: 64vw;
  }
  .contact-form button {
    margin-top: 2.8rem;
  }
  .form-group input {
    position: relative;
    left: 48%;
    transform: translate(-50%, -50%);
  }
  .author-text-box {
    font-size: 12px;
  }
  .author-text-paragraph {
    font-size: 13px;
  }
}
@media screen and (max-width: 546px) {
  .mail-box-image {
    opacity: 0;
  }
  textarea {
    margin-top: 50px;
  }
  .contact-form button {
    width: 10rem;
  }
  .contact-me-paragraph {
    font-size: 20px;
    margin-bottom: 150px;
  }
  .author-container {
    margin-bottom: -3rem;
  }
}
@media screen and (max-width: 430px) {
  .contact-me-paragraph {
    margin-bottom: 220px;
  }
}
@media screen and (max-width: 315px) {
  .contact-me-paragraph {
    font-size: 16px;
    margin-bottom: 240px;
  }
}
@media screen and (max-width: 220px) {
  .contact-me-paragraph {
    visibility: hidden;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
.modal-header {
  padding: 2px 16px;
  background-color: #1d3e74;
  color: #ffffff;
}
.modal-footer {
  padding: 2px 16px;
  background-color: #1d3e74;
}
.modal-go-to-btn {
  position: absolute;
  margin: 1rem;
  right: 0;
  bottom: 0;
  background: #1d3e74;
  color: #ffffff;
  width: 10rem;
  height: 2.625rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9375rem;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.modal-go-to-btn:hover {
  background: #285b92;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.news-background-image {
  background-image: url("../assets/images/news/pe-small.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  width: auto;
  padding: 0.5rem;
}

.news-paragraph {
  font-size: 18px;
}

#myBtn {
  position: fixed;
  top: 10px;
  left: 0;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  background-color: #02010A;
  color: rgba(235, 231, 217, 0.7137254902);
  cursor: pointer;
  font-size: 18px;
  border-top: 3px solid rgba(97, 138, 176, 0.6039215686);
  border-right: 15px solid transparent;
  border-bottom: 3px solid rgba(97, 138, 176, 0.6039215686);
}
#myBtn .fas {
  color: rgba(235, 231, 217, 0.7137254902);
}

.audios {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  background-color: rgba(64, 224, 208, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-player {
  display: flex;
  align-items: center;
  width: 100%;
}

.play-pause {
  width: 30px;
  height: 30px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.play-pause::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
}
.play-pause.playing::before {
  content: "";
  display: block;
}
.play-pause.playing::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background-color: #ffffff;
  position: absolute;
  left: 16px;
  top: 10px;
}

.progress-container {
  flex: 1;
  height: 5px;
  background-color: rgba(216, 216, 216, 0.795);
  border-radius: 2.5px;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #1a1a1a;
  width: 0;
  border-radius: 2.5px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1300px) {
  .modal-content {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .news-background-image {
    height: auto;
    min-height: 300px;
  }
}
@media (max-width: 450px) {
  .news-background-image {
    background-image: url("../assets/images/news/pe-small.jpg");
    min-height: 470px;
  }
  .modal-header {
    background-color: #051220;
  }
  .modal-go-to-btn {
    background: #051220;
  }
  #myBtn {
    background-color: #02010A;
    color: #7c8286;
    cursor: pointer;
    font-size: 14px;
    border-top: 3px solid rgba(97, 138, 176, 0.2745098039);
    border-right: 15px solid transparent;
    border-bottom: 3px solid rgba(97, 138, 176, 0.2745098039);
  }
  #myBtn .fas {
    color: #7c8286;
  }
}
.main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.main-magic-particles,
.main-orbs,
.main-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* =========================
   MAGIC PARTICLES
   intense indigo / blue-violet
   ========================= */
.main-magic-particles {
  z-index: 1;
  overflow: hidden;
}
.main-magic-particles::before, .main-magic-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
}
.main-magic-particles::before {
  opacity: 0.95;
  background: radial-gradient(circle at 14% 86%, rgba(232, 220, 255, 0.98) 0 1.8px, rgba(175, 138, 255, 0.95) 3.6px, rgba(103, 82, 255, 0.42) 6.5px, transparent 11px), radial-gradient(circle at 26% 74%, rgba(224, 214, 255, 0.96) 0 1.8px, rgba(126, 116, 255, 0.9) 3.8px, rgba(76, 117, 255, 0.36) 6.8px, transparent 11.5px), radial-gradient(circle at 38% 90%, rgba(238, 228, 255, 0.98) 0 1.8px, rgba(120, 190, 255, 0.92) 3.6px, rgba(71, 148, 255, 0.42) 6.5px, transparent 11px), radial-gradient(circle at 52% 80%, rgba(220, 230, 255, 0.94) 0 1.8px, rgba(116, 150, 255, 0.88) 3.8px, rgba(74, 104, 255, 0.34) 6.8px, transparent 11.5px), radial-gradient(circle at 64% 92%, rgba(236, 224, 255, 0.98) 0 1.8px, rgba(128, 124, 255, 0.92) 3.6px, rgba(77, 77, 255, 0.4) 6.5px, transparent 11px), radial-gradient(circle at 78% 76%, rgba(220, 232, 255, 0.94) 0 1.8px, rgba(104, 152, 255, 0.88) 3.8px, rgba(64, 124, 255, 0.34) 6.8px, transparent 11.5px), radial-gradient(circle at 90% 88%, rgba(233, 220, 255, 0.96) 0 1.8px, rgba(120, 127, 255, 0.9) 3.6px, rgba(88, 84, 255, 0.38) 6.5px, transparent 11px);
  animation: magic-rise 20s linear infinite;
}
.main-magic-particles::after {
  opacity: 0.72;
  background: radial-gradient(circle at 20% 94%, rgba(184, 204, 255, 0.62) 0 2px, rgba(96, 109, 255, 0.28) 5px, transparent 13px), radial-gradient(circle at 46% 86%, rgba(174, 196, 255, 0.56) 0 2px, rgba(88, 126, 255, 0.24) 5px, transparent 13px), radial-gradient(circle at 70% 96%, rgba(189, 174, 255, 0.58) 0 2px, rgba(101, 90, 255, 0.26) 5px, transparent 13px), radial-gradient(circle at 86% 84%, rgba(172, 198, 255, 0.54) 0 2px, rgba(76, 124, 255, 0.22) 5px, transparent 13px);
  animation: magic-rise-soft 26s linear infinite;
}

/* =========================
   ORBS
   stronger visible glow effect
   no blur / no drop-shadow
   ========================= */
.main-orbs {
  z-index: 2;
  inset: -4%;
}
.main-orbs::before, .main-orbs::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
}
.main-orbs::before {
  opacity: 0.92;
  background: radial-gradient(circle at 16% 92%, rgb(242, 232, 255) 0 3px, rgba(150, 153, 255, 0.95) 5px, rgba(112, 88, 255, 0.5) 9px, transparent 18px), radial-gradient(circle at 34% 82%, rgba(232, 240, 255, 0.98) 0 3px, rgba(132, 170, 255, 0.92) 5px, rgba(70, 122, 255, 0.42) 9px, transparent 18px), radial-gradient(circle at 56% 94%, rgb(240, 228, 255) 0 3.5px, rgba(140, 136, 251, 0.95) 5.5px, rgba(106, 82, 255, 0.5) 10px, transparent 19px), radial-gradient(circle at 76% 80%, rgba(228, 240, 255, 0.98) 0 3px, rgba(120, 164, 255, 0.9) 5px, rgba(66, 120, 255, 0.42) 9px, transparent 18px), radial-gradient(circle at 88% 90%, rgba(236, 226, 255, 0.98) 0 3px, rgba(139, 126, 255, 0.92) 5px, rgba(96, 76, 255, 0.46) 9px, transparent 18px);
  animation: orb-rise 22s linear infinite;
}
.main-orbs::after {
  opacity: 0.68;
  background: radial-gradient(circle at 24% 96%, rgba(164, 167, 255, 0.54) 0 4px, rgba(110, 86, 255, 0.22) 8px, transparent 20px), radial-gradient(circle at 50% 88%, rgba(160, 196, 255, 0.5) 0 4px, rgba(72, 120, 255, 0.2) 8px, transparent 20px), radial-gradient(circle at 82% 94%, rgba(169, 160, 255, 0.52) 0 4px, rgba(106, 84, 255, 0.22) 8px, transparent 20px);
  animation: orb-rise-soft 28s linear infinite;
}

/* =========================
   SMOKE
   disabled for performance
   ========================= */
.main-smoke {
  display: none;
}

/* =========================
   DESKTOP/TABLET ANIMATIONS
   ========================= */
@keyframes magic-rise {
  0% {
    transform: translate3d(0, 115px, 0);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  34% {
    transform: translate3d(-8px, 44px, 0);
  }
  58% {
    transform: translate3d(10px, -34px, 0);
  }
  82% {
    opacity: 0.42;
  }
  100% {
    transform: translate3d(-6px, -138px, 0);
    opacity: 0;
  }
}
@keyframes magic-rise-soft {
  0% {
    transform: translate3d(0, 126px, 0);
    opacity: 0;
  }
  16% {
    opacity: 0.72;
  }
  42% {
    transform: translate3d(7px, 48px, 0);
  }
  70% {
    transform: translate3d(-9px, -40px, 0);
  }
  100% {
    transform: translate3d(6px, -148px, 0);
    opacity: 0;
  }
}
@keyframes orb-rise {
  0% {
    transform: translate3d(0, 145px, 0) scale(0.92);
    opacity: 0;
  }
  16% {
    opacity: 0.92;
  }
  38% {
    transform: translate3d(-11px, 64px, 0) scale(1);
  }
  68% {
    transform: translate3d(13px, -26px, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-8px, -156px, 0) scale(1.11);
    opacity: 0;
  }
}
@keyframes orb-rise-soft {
  0% {
    transform: translate3d(0, 156px, 0) scale(0.9);
    opacity: 0;
  }
  18% {
    opacity: 0.68;
  }
  44% {
    transform: translate3d(10px, 74px, 0) scale(0.98);
  }
  72% {
    transform: translate3d(-11px, -20px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(8px, -168px, 0) scale(1.08);
    opacity: 0;
  }
}
/* =========================
   MOBILE
   smoother, less side-to-side,
   starts sooner, fades higher
   ========================= */
@media screen and (max-width: 700px) {
  .main-magic-particles::before {
    opacity: 0.9;
    background: radial-gradient(circle at 18% 90%, rgba(236, 224, 255, 0.98) 0 1.4px, rgba(159, 138, 255, 0.9) 2.8px, rgba(103, 82, 255, 0.38) 5.4px, transparent 9px), radial-gradient(circle at 40% 84%, rgba(226, 236, 255, 0.96) 0 1.4px, rgba(124, 160, 255, 0.86) 2.8px, rgba(74, 116, 255, 0.32) 5.4px, transparent 9px), radial-gradient(circle at 64% 92%, rgba(235, 222, 255, 0.98) 0 1.4px, rgba(126, 132, 255, 0.9) 2.8px, rgba(98, 74, 255, 0.38) 5.4px, transparent 9px), radial-gradient(circle at 84% 84%, rgba(224, 236, 255, 0.96) 0 1.4px, rgba(116, 154, 255, 0.86) 2.8px, rgba(66, 120, 255, 0.32) 5.4px, transparent 9px);
    animation: magic-rise-mobile 20s linear infinite;
  }
  .main-magic-particles::after {
    opacity: 0.5;
    background: radial-gradient(circle at 30% 94%, rgba(182, 178, 255, 0.48) 0 1.6px, rgba(118, 90, 255, 0.18) 4px, transparent 10px), radial-gradient(circle at 74% 90%, rgba(170, 198, 255, 0.44) 0 1.6px, rgba(74, 122, 255, 0.16) 4px, transparent 10px);
    animation: magic-rise-soft-mobile 26s linear infinite;
  }
  .main-orbs {
    inset: 0;
  }
  .main-orbs::before {
    opacity: 0.72;
    background: radial-gradient(circle at 24% 92%, rgb(242, 232, 255) 0 2.5px, rgba(159, 144, 255, 0.9) 4px, rgba(112, 88, 255, 0.42) 7px, transparent 13px), radial-gradient(circle at 54% 88%, rgba(232, 240, 255, 0.98) 0 2.5px, rgba(126, 168, 255, 0.88) 4px, rgba(72, 122, 255, 0.34) 7px, transparent 13px), radial-gradient(circle at 80% 92%, rgba(226, 228, 255, 0.98) 0 2.5px, rgba(132, 130, 255, 0.9) 4px, rgba(100, 80, 255, 0.42) 7px, transparent 13px);
    animation: orb-rise-mobile 22s linear infinite;
  }
  .main-orbs::after {
    display: none;
  }
  .main-smoke {
    display: none;
  }
}
@keyframes magic-rise-mobile {
  0% {
    transform: translate3d(0, 72px, 0);
    opacity: 0.12;
  }
  8% {
    opacity: 0.86;
  }
  30% {
    transform: translate3d(-2px, 24px, 0);
  }
  58% {
    transform: translate3d(2px, -42px, 0);
  }
  82% {
    transform: translate3d(1px, -102px, 0);
    opacity: 0.28;
  }
  100% {
    transform: translate3d(0, -154px, 0);
    opacity: 0;
  }
}
@keyframes magic-rise-soft-mobile {
  0% {
    transform: translate3d(0, 80px, 0);
    opacity: 0.08;
  }
  10% {
    opacity: 0.46;
  }
  36% {
    transform: translate3d(2px, 28px, 0);
  }
  66% {
    transform: translate3d(-2px, -48px, 0);
  }
  86% {
    transform: translate3d(-1px, -108px, 0);
    opacity: 0.16;
  }
  100% {
    transform: translate3d(0, -160px, 0);
    opacity: 0;
  }
}
@keyframes orb-rise-mobile {
  0% {
    transform: translate3d(0, 84px, 0) scale(0.94);
    opacity: 0.14;
  }
  8% {
    opacity: 0.7;
  }
  34% {
    transform: translate3d(2px, 30px, 0) scale(0.99);
  }
  62% {
    transform: translate3d(-2px, -46px, 0) scale(1.04);
  }
  84% {
    transform: translate3d(-1px, -112px, 0) scale(1.07);
    opacity: 0.2;
  }
  100% {
    transform: translate3d(0, -170px, 0) scale(1.1);
    opacity: 0;
  }
}
/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .main-magic-particles::before,
  .main-magic-particles::after,
  .main-orbs::before,
  .main-orbs::after {
    animation: none;
    opacity: 0.24;
    transform: none;
  }
  .main-smoke {
    display: none;
  }
}
.main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #000 0, transparent clamp(220px, 55vw, 720px)), linear-gradient(to left, #000 0, transparent clamp(220px, 55vw, 720px));
}

.main {
  background-color: #02010A;
  background-image: url("../assets/images/sections/home-main.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.main-text-content {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(82%, 46rem);
  color: #272463;
  z-index: 2;
}
.main-text-content h2 {
  color: #272463;
  font-family: "Merriweather", serif;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  margin: -0.35rem 0 0;
  text-shadow: 0 0 3px #ffffff, 0 0 5px #ffffff;
}
.main-text-content h2 p {
  margin: 0;
}
.main-text-content h2 p + p {
  margin-top: 0.35rem;
}

.author-name {
  color: #272463;
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  margin: 0;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.7), 0 0 18px rgba(255, 255, 255, 0.5), 0 0 28px rgba(255, 255, 255, 0.3);
}

.first-intro p {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.7), 0 0 18px rgba(255, 255, 255, 0.5), 0 0 28px rgba(255, 255, 255, 0.3);
}

.home-section {
  background-color: #000000;
  background-image: url("../assets/images/sections/blue-fire.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  padding: 3.5rem 8% 4rem;
  overflow: visible;
}
.home-section .home-layout {
  width: min(100%, 78rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.home-section .home-cards-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10vw;
  position: relative;
  z-index: 2;
}
.home-section .side-box,
.home-section .main-box {
  background: rgba(23, 34, 45, 0.61);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 14%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(16, 22, 52, 0.4) 0%, rgba(10, 16, 38, 0.35) 45%, rgba(7, 12, 28, 0.4) 100%);
}
.home-section .side-box {
  width: min(100%, 15.5rem);
  border-bottom: 1px solid rgba(130, 129, 129, 0.4588235294);
  border-radius: 0.9375rem;
  padding: 1.5rem 1.15rem 1.8rem;
  overflow: visible;
  height: auto;
  z-index: 4;
}
.home-section .left-box {
  border-left: 1px solid rgba(130, 129, 129, 0.4588235294);
  order: 1;
}
.home-section .right-box {
  border-right: 1px solid rgba(130, 129, 129, 0.4588235294);
  order: 2;
}
.home-section .side-box-media {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 0.35rem 0 0.75rem;
  flex-shrink: 0;
  overflow: visible;
}
.home-section .side-box-text-group {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0.5rem 0 1.7rem;
}
.home-section .gif {
  width: 4.125rem;
  height: 4.125rem;
  border-radius: 50%;
  margin: 0 0 -1.85rem;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.home-section .image-from-side-box {
  width: 10.4375rem;
  height: 16.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: #272463;
  margin: 0;
  position: relative;
  z-index: 2;
  display: block;
  flex-shrink: 0;
}
.home-section .left-pattern,
.home-section .right-pattern {
  width: 19.5rem;
  height: auto;
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.92;
  pointer-events: none;
  margin: 0;
}
.home-section .right-pattern {
  transform: translateX(-50%) scaleX(-1);
}
.home-section .box-title {
  color: rgba(195, 195, 195, 0.96);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0.3rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  z-index: 4;
}
.home-section .box-text-title {
  color: rgba(224, 220, 208, 0.94);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
.home-section .box-text {
  color: rgba(195, 195, 195, 0.95);
  text-align: center;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  width: 100%;
  margin: 0;
}
.home-section .button {
  margin-top: auto;
}
.home-section .side-box > a {
  margin-top: auto;
  display: flex;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}

@media screen and (min-width: 901px) {
  .home-section .home-cards-row {
    align-items: stretch;
  }
  .home-section .side-box {
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }
}
@media screen and (max-width: 900px) {
  .main {
    background-image: url("../assets/images/sections/home-main-mobile.png");
    background-size: 100% auto;
    background-position: center top;
    aspect-ratio: 0.9935205184;
    min-height: 0;
  }
  .main-text-content {
    top: 18%;
    width: min(88%, 38rem);
  }
  .main::after {
    display: none;
  }
  .home-section {
    padding: 2.6rem 5% 3.5rem;
  }
  .home-section .home-layout {
    gap: 2.4rem;
  }
  .home-section .home-cards-row {
    gap: 2rem;
    align-items: stretch;
  }
  .home-section .side-box {
    width: min(100%, 15rem);
  }
  .home-section .side-box-media {
    height: 19rem;
  }
  .home-section .left-pattern,
  .home-section .right-pattern {
    width: 18rem;
  }
}
@media screen and (max-width: 700px) {
  .main-text-content {
    top: 18%;
    width: min(92%, 30rem);
  }
  .main-text-content h2 {
    font-size: 0.9rem;
  }
  .author-name {
    font-size: 2.15rem;
  }
  .home-section {
    padding: 2.25rem 2rem 3rem;
  }
  .home-section .home-layout {
    gap: 1.75rem;
  }
  .home-section .home-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
  }
  .home-section .side-box {
    width: min(100%, 24rem);
    height: auto;
    padding-bottom: 1.6rem;
  }
  .home-section .side-box-media {
    height: auto;
    margin-bottom: 0.9rem;
  }
  .home-section .side-box-text-group {
    padding: 0.15rem 0 1.25rem;
  }
  .home-section .gif {
    margin-bottom: -1.5rem;
  }
  .home-section .image-from-side-box {
    aspect-ratio: 167/258;
  }
  .home-section .left-pattern,
  .home-section .right-pattern {
    width: 18.5rem;
    top: 0.15rem;
  }
  .home-section .side-box > a {
    margin-top: 0;
  }
}
@media screen and (max-width: 545px) {
  .main-text-content h2 {
    font-size: 0.78rem;
  }
  .author-name {
    font-size: 1.85rem;
  }
  .home-section .side-box {
    width: 100%;
  }
  .home-section .left-pattern,
  .home-section .right-pattern {
    width: 17.5rem;
  }
}
.books-pumnalul-elementelor-main {
  background-image: url("../assets/images/world/book-cover.png");
  background-position: center;
  background-color: #000000;
  height: auto;
  background-size: cover;
  padding: 0 20%;
  display: grid;
  place-items: center;
  margin-top: -2rem;
  z-index: 3;
}

.book-container {
  display: flex;
  justify-content: space-between;
  padding-top: 10%;
}

.book-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.333% - 10px);
  margin: 5px;
}
.book-column.middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.book-column.middle .book-image {
  width: 100%;
  margin-bottom: 20px;
}

.book-title-pumnalul-elementelor {
  display: none;
}

.cart-icon-container {
  margin-bottom: 10px;
}

.cart-icon-left,
.cart-icon-right {
  opacity: 0.4;
  width: 100px;
  height: auto;
}

.cart-icon-right {
  transform: scaleX(-1);
}

.book-button-middle,
.book-button-world {
  text-decoration: none;
  text-align: center;
  border-radius: 7px;
  background: #02215d;
  color: #ffffff;
  font-size: 18px;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.book-button-middle:hover,
.book-button-world:hover {
  background: #042c7c;
}

.book-button-middle {
  padding: 15px 30px;
  width: 100%;
}

.book-button-world {
  padding: 20px 40px;
  margin: 5%;
  margin-bottom: 35%;
  position: relative;
  z-index: 3;
}

.book-button-right,
.book-button-left {
  text-decoration: none;
  text-align: center;
  border-radius: 15px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.897);
  font-size: 16px;
  cursor: pointer;
  outline: none;
  min-width: 150px;
}

.book-button-right {
  border-top: 2px solid rgba(128, 8, 8, 0.7411764706);
  border-right: 2px solid rgba(8, 56, 128, 0.7411764706);
  border-left: 2px solid rgba(128, 8, 8, 0.7411764706);
  border-bottom: 2px solid rgba(8, 56, 128, 0.7411764706);
  padding: 20px 35px;
}
.book-button-right:hover {
  background: linear-gradient(to bottom right, rgba(128, 8, 8, 0.7411764706), rgba(8, 56, 128, 0.7411764706));
}
.book-button-right.uk {
  border: 2px solid rgba(8, 56, 128, 0.7411764706);
  background-color: rgba(8, 56, 128, 0.3882352941);
  font-size: 13px;
}
.book-button-right.uk:hover {
  background: #042c7c;
}

.book-button-left {
  border: 2px solid rgba(4, 80, 43, 0.8235294118);
  padding: 20px 30px;
}
.book-button-left:hover {
  background: rgba(76, 196, 138, 0.4862745098);
}
.book-button-left.libris {
  border: 2px solid rgba(8, 56, 128, 0.7411764706);
  background-color: rgba(8, 56, 128, 0.3882352941);
}
.book-button-left.libris:hover {
  background-color: #042c7c;
}

.align-bottom {
  align-self: flex-end;
}

.book-gif {
  width: 33%;
  flex-shrink: 0;
  border-radius: 50%;
  margin-bottom: -15%;
  z-index: 3;
}

.pumnalul-elementelor-image {
  width: 70%;
  margin: 10%;
  margin-bottom: 4%;
}

.book-resume,
.book-resume-part-2 {
  color: rgba(195, 195, 195, 0.95);
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  padding: 0 8%;
}

.book-resume {
  margin-bottom: 5%;
}

.book-resume-part-2 {
  margin: 0;
  position: relative;
  z-index: 3;
}

.goodreads-link {
  color: #f4f1ea;
  position: relative;
  z-index: 4;
}

.uk-link {
  color: rgba(195, 195, 195, 0.95);
  margin-top: 1rem;
  font-size: 20px;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 1290px) {
  .books-pumnalul-elementelor-main {
    background-attachment: fixed;
    background-position: center center;
    margin-top: 2rem;
    padding: 0 2%;
  }
}
@media screen and (max-width: 1110px) {
  .book-button-left,
  .book-button-right {
    font-size: 13px;
    border-radius: 15px;
    padding: 16px 35px;
  }
  .book-button-middle,
  .book-button-world {
    font-size: 14px;
    border-radius: 15px;
  }
  .pumnalul-elementelor-image {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .book-column {
    width: 100%;
    order: 2;
  }
  .book-column.middle {
    order: 1;
  }
  .book-column.middle .book-image {
    width: 60%;
  }
  .book-column.left, .book-column.right {
    order: 3;
  }
  .goodreads-link {
    font-size: 18px;
  }
  .book-gif {
    width: 23%;
    flex-shrink: 0;
    border-radius: 50%;
    margin-bottom: -10%;
    z-index: 3;
  }
  .book-button-middle {
    width: 60%;
  }
  .book-resume,
  .book-resume-part-2 {
    font-size: 14px;
  }
  .book-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 300px) {
  .book-button-middle {
    font-size: 10px;
  }
}
* {
  box-sizing: border-box;
}

.world-main {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  z-index: 1;
  background-color: #000000;
  margin-top: 5rem;
}
.world-main::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/sections/runes.png");
  opacity: 0.15;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  z-index: -1;
}

.main-title-text,
.main-title-alphabet,
.characters-title-text {
  color: rgba(195, 195, 195, 0.82);
  font-family: "Dancing Script";
  font-optical-sizing: auto;
  flex-shrink: 0;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-title-alphabet {
  margin-top: 5rem;
}

.characters-title-text {
  margin-top: 30px;
}

.slideshow-container,
.slideshow-container-characters {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.slideshow-container::before,
.slideshow-container-characters::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.slideshow-container {
  overflow: hidden;
}

.slideshow-container-characters {
  background-color: #000000;
  background-image: url("../assets/images/world/book-cover.png");
  background-repeat: no-repeat;
  background-size: 95%;
  background-position: 1rem -10.5rem;
}

.mySlides {
  display: none;
}

.mySlides,
.mySlidesCharacters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.mySlidesCharacters img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 32%;
  border-right: 2px solid rgba(14, 82, 86, 0.6352941176);
  border-left: 2px solid rgba(14, 82, 86, 0.6352941176);
  border-top: 3px solid rgba(14, 82, 86, 0.6705882353);
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  box-shadow: 0 -3px 0 -3px #0e5256, 0 -6px 0 -6px #0e5256;
  background-clip: padding-box;
}

.next,
.nextC {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-shadow: 0 0 3px #105c61, 0 0 5px #0b0b13;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.prev,
.next,
.prevC,
.nextC {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15;
}
.prev:hover,
.next:hover,
.prevC:hover,
.nextC:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dot,
.characters-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.centered-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-href {
  display: inline-block;
  background-color: #105c61;
  color: #ffffff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 50%;
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-family: "Dancing Script";
  font-optical-sizing: auto;
  flex-shrink: 0;
  font-size: 30px;
}
.book-href:hover, .book-href:focus {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

.glosar-section {
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 0em 20%;
  position: relative;
  z-index: 5;
}
.glosar-section .glosar-container {
  color: rgba(195, 195, 195, 0.82);
  position: relative;
  z-index: 5;
  padding: 0 8%;
}

.empty-section {
  background-size: cover;
  position: relative;
  height: 350px;
  z-index: 0;
}

.glosar-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(36, 70, 99, 0.35) 69.5%);
  border: 1px solid rgba(130, 129, 129, 0.4588235294);
  border-radius: 0.9375rem;
  padding: 5%;
}

.glosar-box-text {
  color: rgba(195, 195, 195, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  flex-shrink: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ava-alphabet {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(130, 129, 129, 0.4588235294);
  border-radius: 0.9375rem;
  border-color: rgba(129, 129, 130, 0.5);
  margin-bottom: 3rem;
}

.alphabet-runes {
  flex-shrink: 0;
  width: 100%;
  max-width: 350px;
  height: auto;
  opacity: 0.7;
}

.columns {
  margin: 20px;
  display: flex;
  justify-content: space-between;
}

.column p {
  margin: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 33px;
  padding: 14px 16px;
}

.songs {
  margin-top: 1.5rem;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audios-name {
  color: #105c61;
  font-family: "Dancing Script";
  font-optical-sizing: auto;
  flex-shrink: 0;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.audios {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 5px;
  background-color: #000000;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-player {
  display: flex;
  align-items: center;
  width: 100%;
}

.play-pause {
  width: 30px;
  height: 30px;
  background-color: #105c61;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.play-pause::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
}
.play-pause.playing::before {
  content: "";
  display: block;
}
.play-pause.playing::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background-color: #ffffff;
  position: absolute;
  left: 16px;
  top: 10px;
}

.progress-container {
  flex: 1;
  height: 5px;
  background-color: rgba(216, 216, 216, 0.795);
  border-radius: 2.5px;
  margin-left: 10px;
  cursor: pointer;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #105c61;
  width: 0;
  border-radius: 2.5px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 1280px) {
  .ava-alphabet {
    border: none;
  }
  .glosar-section {
    padding: 0 5%;
  }
}
@media screen and (max-width: 750px) {
  .world-main {
    background-attachment: scroll;
  }
  .empty-section {
    height: 100px;
  }
  .ava-alphabet {
    border: 1px solid rgba(130, 129, 129, 0.4588235294);
    border-radius: 0.9375rem;
    border-color: rgba(129, 129, 130, 0.5);
  }
  .book-href {
    width: 80%;
    font-size: 20px;
  }
  .glosar-box-text {
    font-size: 12px;
  }
  .glosar-section .glosar-container {
    padding: 0;
  }
  .alphabet-runes {
    margin: 10px;
    max-width: 180px;
  }
  .column p {
    font-size: 21px;
    padding: 5px 7px;
  }
  .columns {
    margin: 10px;
  }
  .columns::before {
    height: 335px;
    margin-top: 66.5px;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(130, 129, 129, 0.4588235294);
    opacity: 0.3;
  }
}
@media screen and (max-width: 500px) {
  .book-href {
    width: auto;
  }
}
@media screen and (max-width: 400px) {
  .alphabet-runes {
    max-width: 50%;
    margin: 15px;
  }
  .column p {
    font-size: 16px;
  }
  .columns {
    justify-content: normal;
  }
  .columns::before {
    height: 310px;
    margin-top: 67px;
  }
}
@media screen and (max-width: 363px) {
  .ava-alphabet {
    display: block;
  }
  .alphabet-runes {
    max-width: 60%;
    margin: 15px;
    margin-left: 20%;
  }
  .column p {
    font-size: 18px;
  }
  .columns {
    justify-content: normal;
    margin-left: 20%;
  }
  .columns::before {
    opacity: 0;
  }
}
.main-terms {
  color: rgba(195, 195, 195, 0.82);
  font-family: "Dancing Script";
  font-optical-sizing: auto;
  flex-shrink: 0;
  text-align: left;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 8rem 0;
  padding: 0 20%;
  position: relative;
  z-index: 3;
}

.main-paragraph {
  font-family: "Merriweather", serif;
  font-size: 1rem;
}

@media screen and (max-width: 700px) {
  .main-terms {
    padding: 0 5%;
    font-size: 18px;
  }
  .main-paragraph {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */