/* _reset.scss */
html {
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  margin: 0; }

/* Typography defaults */
p, ul, ol, figure, blockquote, dl, dd {
  margin: 0; }

/* Lists */
ul,
ol {
  padding-left: 1.25rem; }

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding-left: 0; }

/* Images and media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

th,
td {
  text-align: left;
  font-weight: normal; }

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  margin: 0; }

textarea {
  resize: vertical; }

fieldset {
  border: none;
  margin: 0;
  padding: 0; }

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer; }

/* Anchors */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none; }

/* Smooth scroll on anchor */
:target {
  scroll-margin-top: 4rem; }

/* iOS fix */
@media screen and (max-width: 768px) {
  html {
    -webkit-text-size-adjust: none; } }
/* _root.scss */
/* CSS Custom Properties untuk global design token */
:root {
  /* ===== Brand Colors ===== */
  --color-primary: #E61B23;
  --color-primary-dark: #C3161D;
  --color-primary-light: #F28B8E;
  --color-secondary: #040707;
  --color-secondary-dark: #000000;
  --color-secondary-light: #222426;
  /* ===== Base Colors ===== */
  --color-black: #040707;
  --color-white: #ffffff;
  /* ===== Grayscale ===== */
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #cccccc;
  --color-gray-500: #888888;
  --color-gray-700: #444444;
  --color-gray-900: #111111;
  /* ===== Typography ===== */
  --font-sans: 'Lato', sans-serif;
  --font-serif: 'Lora', serif;
  --font-display: 'Abhaya Libre', serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  /* ===== Spacing Scale ===== */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  /* ===== Border Radius ===== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  /* ===== Z-Index Layering ===== */
  --z-header: 100;
  --z-modal: 200;
  --z-dropdown: 300;
  --z-overlay: 999;
  /* ===== Breakpoints (for JS use or utility classes) ===== */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px; }

/* Optional: HTML level style to apply variables */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  color: var(--color-black);
  background-color: var(--color-white); }

/* _typography.scss */
/* Global typography rules for consistency */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.75;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-black); }

h1 {
  font-size: var(--font-size-3xl); }

h2 {
  font-size: var(--font-size-2xl); }

h3 {
  font-size: var(--font-size-xl); }

h4 {
  font-size: var(--font-size-lg); }

h5 {
  font-size: var(--font-size-md); }

h6 {
  font-size: var(--font-size-sm); }

/* Paragraph */
p {
  margin-bottom: var(--space-md);
  font-family: var(--font-serif);
  font-size: var(--font-size-base); }

/* Abhaya Libre for article summary (optional override) */
.article-summary {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  line-height: 1.8;
  color: var(--color-gray-700); }

/* Lists */
ul,
ol {
  padding-left: 1.25rem;
  margin-bottom: var(--space-md);
  line-height: 1.6; }

li {
  margin-bottom: var(--space-xs); }

/* Blockquote */
blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  color: var(--color-gray-700); }

/* Code blocks */
code {
  font-family: monospace;
  background-color: var(--color-gray-100);
  padding: 0.25em 0.5em;
  border-radius: var(--radius-sm);
  font-size: 90%; }

/* Small text */
small {
  font-size: 80%;
  color: var(--color-gray-500); }

/* plus-jakarta-sans-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-200.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-200.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-300.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-300.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-regular.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-italic.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-italic.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-500.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-600.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-600.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-700.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-800.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v11-latin-800.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* _colors.scss */
/* SCSS map dan variabel untuk sistem warna */
/* _fonts.scss */
/* Default mapping */
/* _breakpoints.scss */
/* _spacing.scss */
@use '../variables/breakpoints' as *;
@use '../variables/spacing' as *;
@use './media' as *;
/* Container default */
/* Grid system (simple flex grid) */
@use '../variables/fonts' as *;
/* Flex center */
/* Truncate single line */
/* Truncate multiline */
/* Smooth font */
/* Transition */
/* Aspect ratio */
:root {
  --color-background: #F6F6F6;
  --color-text: #000000;
  --color-light: #DF9538;
  --color-border: #000000; }

[data-theme="dark"] {
  --color-background: #1C1D21;
  --color-text: #FFFFFF;
  --color-light: #DF9538;
  --color-border: #FFFFFF;
  transition: background-color 0.5s ease, color 0.5s ease; }

html, body {
  scroll-behavior: smooth;
  background-color: var(--color-background);
  transition: background-color 0.8s ease, color 0.8s ease; }

.masbox-toolbar-action.reset {
  display: none !important; }

.lx-share {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
  transition: all .5s ease; }
  .lx-share-wrapper {
    position: fixed;
    top: unset;
    left: 0;
    right: 0;
    bottom: -100%;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -4px 7px;
    box-sizing: border-box;
    overflow-y: scroll;
    z-index: -1;
    transition: all 1s ease; }
    @media (min-width: 1025px) {
      .lx-share-wrapper {
        top: 50%;
        left: 50%;
        max-width: 560px;
        height: fit-content;
        border-radius: 8px;
        transform: translate(-50%, -50%); } }
  .lx-share.active {
    visibility: visible;
    opacity: 1;
    z-index: 1000000110; }
    .lx-share.active .lx-share-wrapper {
      bottom: -2px; }
  .lx-share-header {
    padding: 20px; }
    .lx-share-header__text h1 {
      color: var(--color-text);
      font-family: "Plus Jakarta Sans";
      font-size: 20px;
      font-weight: 600;
      line-height: normal; }
    .lx-share-header__text p {
      margin-top: 10px;
      font-family: "Plus Jakarta Sans";
      font-size: 14px;
      line-height: normal;
      color: var(--color-text); }
    .lx-share-header__action {
      position: absolute;
      right: 20px;
      top: 20px; }
      .lx-share-header__action button {
        background: transparent;
        border: none;
        padding: 0;
        line-height: 0;
        width: fit-content;
        height: fit-content; }
  .lx-share-content {
    padding: 10px 20px; }
  .lx-share-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5; }
    .lx-share-item:first-child {
      padding-top: 0; }
    .lx-share-item:last-child {
      border-bottom: unset; }
    .lx-share-item__icon {
      width: 35px;
      height: 35px;
      border: 1px solid #E5E5E5;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .lx-share-item__icon i {
        font-size: 18px;
        color: var(--color-text); }
    .lx-share-item__text span {
      font-family: "Plus Jakarta Sans";
      font-size: 16px;
      color: var(--color-text); }

.mt-40 {
  margin-top: 40px; }

.mx-10 {
  margin-left: 0; }
  @media (min-width: 1025px) {
    .mx-10 {
      margin-left: 10%; } }

.mx-30 {
  margin-left: 30%; }

.mx-custom {
  margin: 0 auto; }
  @media (min-width: 1025px) {
    .mx-custom {
      margin: 0; } }

.lx-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }
  @media (min-width: 768px) {
    .lx-container {
      max-width: 100%; } }
  @media (min-width: 1025px) {
    .lx-container {
      max-width: 960px;
      padding-left: 16px;
      padding-right: 16px; } }
  @media (min-width: 1280px) {
    .lx-container {
      max-width: 1400px; } }
  @media (min-width: 1440px) {
    .lx-container {
      max-width: 1400px; } }

.lx-header {
  padding: 20px 0;
  background: var(--color-background);
  position: sticky;
  top: 0;
  z-index: 999999; }
  @media (min-width: 1025px) and (max-height: 650px) {
    .lx-header {
      padding: 20px; } }
  @media (min-width: 1025px) and (max-height: 768px) {
    .lx-header {
      padding-top: 25px; } }
  .lx-header-wrapper {
    display: flex;
    align-items: center; }
  .lx-header-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 1025px) {
      .lx-header-left {
        width: 450px;
        justify-content: center; } }
  .lx-header-right {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media (min-width: 1025px) {
      .lx-header-right {
        width: 100%;
        justify-content: flex-start; } }
  .lx-header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px; }
    .lx-header-logo span {
      color: var(--color-text);
      font-family: "Plus Jakarta Sans";
      font-size: 15.432px;
      font-style: normal;
      font-weight: 700;
      line-height: normal; }
      @media (min-width: 380px) {
        .lx-header-logo span {
          font-size: 18.432px; } }
  .lx-header-action {
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 20px; }
  .lx-header-btn {
    display: block;
    cursor: pointer; }
    @media (min-width: 1025px) {
      .lx-header-btn {
        display: none; } }
  .lx-header-menu {
    padding: 0 70px;
    margin: 0;
    width: 100%;
    position: fixed;
    top: 60px;
    left: auto;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 70px;
    background: var(--color-background);
    z-index: 9999;
    transition: all 1s ease; }
    .lx-header-menu.is-active {
      right: 0; }
    @media (min-width: 1025px) {
      .lx-header-menu {
        position: relative;
        padding: 0;
        top: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        background: transparent; } }
    .lx-header-menu__item {
      display: inline;
      margin: 0; }
      .lx-header-menu__item h1 {
        margin: 0;
        color: var(--color-text);
        font-family: "Plus Jakarta Sans";
        font-size: 21px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 4.2px;
        text-transform: uppercase; }
        @media (min-width: 1025px) {
          .lx-header-menu__item h1 {
            font-size: 16px;
            font-style: normal;
            font-weight: 300;
            text-transform: capitalize;
            text-align: right;
            letter-spacing: normal; }
            .lx-header-menu__item h1:hover {
              text-decoration: underline; } }
      .lx-header-menu__item span {
        display: block;
        color: var(--color-text);
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; }
        .lx-header-menu__item span div {
          display: inline;
          color: var(--color-light); }
        @media (min-width: 1025px) {
          .lx-header-menu__item span {
            display: none; } }
      .lx-header-menu__item a {
        color: var(--color-text);
        text-decoration: none; }
        .lx-header-menu__item a:active, .lx-header-menu__item a:focus {
          border: none;
          text-decoration: none;
          outline: none; }

.lx-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
  height: calc(100vh); }
  @media (min-width: 350px) {
    .lx-intro {
      padding-top: 110px; } }
  @media (min-width: 380px) {
    .lx-intro {
      height: calc(100vh - 100px);
      padding-top: 110px; } }
  @media (min-width: 768px) {
    .lx-intro {
      height: 80vh; } }
  @media (min-width: 1025px) {
    .lx-intro {
      padding-top: 50px;
      justify-content: center;
      height: auto; } }
  @media (min-width: 1280px) {
    .lx-intro {
      padding-bottom: 200px; } }
  @media (min-width: 1025px) and (max-height: 650px) {
    .lx-intro {
      padding-top: 0; } }
  @media (min-width: 1025px) and (max-height: 768px) {
    .lx-intro {
      padding-top: 10px; } }
  @media (max-width: 1024px) and (max-height: 768px) {
    .lx-intro {
      padding-top: 50px;
      height: 100vh; } }
  @media (min-width: 1500px) {
    .lx-intro .lx-container {
      max-width: 1500px; } }
  .lx-intro-item {
    display: flex;
    align-items: center;
    position: unset; }
    @media (min-width: 1025px) {
      .lx-intro-item {
        position: relative; } }
    @media (min-width: 1025px) and (max-height: 650px) {
      .lx-intro-item {
        align-items: flex-end; } }
    @media (min-width: 1025px) and (max-height: 768px) {
      .lx-intro-item {
        align-items: flex-end; } }
    .lx-intro-item:nth-child(1) {
      display: flex;
      justify-content: space-between; }
      .lx-intro-item:nth-child(1) .lx-intro-item__img {
        right: 30px;
        width: 120px;
        height: 168px;
        top: calc(230px + 137px + 86px + 92px + 60px); }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(1) .lx-intro-item__img {
            height: 178px;
            top: calc(320px + 137px + 86px + 92px + 60px); } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(1) .lx-intro-item__img {
            width: 105px;
            height: 148px;
            right: 35px;
            top: calc(240px + 115px + 86px + 92px + 60px); } }
        @media (min-width: 1025px) {
          .lx-intro-item:nth-child(1) .lx-intro-item__img {
            margin-left: 200px; } }
    .lx-intro-item:nth-child(2) {
      display: flex;
      justify-content: space-between; }
    .lx-intro-item:nth-child(3) {
      display: flex;
      justify-content: space-between; }
      @media (min-width: 1025px) {
        .lx-intro-item:nth-child(3) .lx-intro-item__txt {
          margin-left: -100px; } }
      .lx-intro-item:nth-child(3) .lx-intro-item__img:nth-child(1) {
        width: 92px;
        height: 137px;
        top: 230px;
        right: 30px; }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(3) .lx-intro-item__img:nth-child(1) {
            height: 120px;
            top: 337px; } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(3) .lx-intro-item__img:nth-child(1) {
            top: 260px;
            width: 82px;
            height: 115px; } }
        @media (min-width: 1025px) {
          .lx-intro-item:nth-child(3) .lx-intro-item__img:nth-child(1) {
            margin-left: 200px; } }
      .lx-intro-item:nth-child(3) .lx-intro-item__img:last-child {
        width: 62px;
        height: 92px;
        right: 60px;
        top: calc(230px + 137px + 86px); }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(3) .lx-intro-item__img:last-child {
            top: calc(320px + 137px + 86px); } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(3) .lx-intro-item__img:last-child {
            right: 50px;
            top: calc(260px + 115px + 86px); } }
    .lx-intro-item:nth-child(4) {
      display: flex;
      justify-content: space-between; }
      .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(1) {
        width: 93px;
        height: 138px;
        right: calc(60px + 62px + 28px);
        top: calc(230px + 137px + 86px + 15px); }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(1) {
            top: calc(320px + 137px + 86px + 15px); } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(1) {
            width: 83px;
            height: 118px;
            right: calc(50px + 62px + 28px);
            top: calc(260px + 115px + 86px + 15px); } }
      .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(2) {
        width: 60px;
        height: 89px;
        right: 0;
        top: calc(70px); }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(2) {
            top: calc(125px + 40px); } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(2) {
            height: 79px;
            top: calc(95px); } }
        @media (min-width: 1025px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(2) {
            top: auto;
            right: unset;
            margin-bottom: -180px; } }
        @media (min-width: 1280px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:nth-child(2) {
            margin-bottom: -100px; } }
      .lx-intro-item:nth-child(4) .lx-intro-item__img:last-child {
        width: 58px;
        height: 86px;
        right: calc(30px + 92px);
        top: calc(230px + 137px); }
        @media (min-width: 350px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:last-child {
            top: calc(320px + 137px); } }
        @media (max-width: 1024px) and (max-height: 768px) {
          .lx-intro-item:nth-child(4) .lx-intro-item__img:last-child {
            right: calc(30px + 82px);
            top: calc(260px + 115px); } }
    .lx-intro-item__txt {
      margin: 0;
      color: var(--color-text);
      font-family: "Plus Jakarta Sans";
      font-size: 50px;
      font-style: normal;
      font-weight: 800;
      line-height: 50px;
      text-transform: uppercase;
      box-sizing: border-box; }
      @media (min-width: 350px) {
        .lx-intro-item__txt {
          font-size: 55px;
          line-height: 55px; } }
      @media (min-width: 380px) {
        .lx-intro-item__txt {
          font-size: 65px;
          line-height: 65px; } }
      @media (min-width: 1025px) {
        .lx-intro-item__txt {
          font-size: 187px;
          line-height: 150px;
          letter-spacing: 18.7px; } }
      @media (min-width: 1500px) {
        .lx-intro-item__txt {
          font-size: 200px;
          line-height: 170px; } }
      @media (min-width: 1025px) and (max-height: 650px) {
        .lx-intro-item__txt {
          font-size: 150px;
          line-height: 120px;
          letter-spacing: 18.7px; } }
      @media screen and (min-width: 390px) and (max-width: 400px) {
        .lx-intro-item__txt {
          font-size: 62px;
          line-height: 62px; } }
    @media (min-width: 1500px) {
      .lx-intro-item {
        align-items: flex-end; } }
    .lx-intro-item__img {
      cursor: pointer;
      transition: transform 0.3s ease;
      position: absolute; }
      @media (min-width: 1025px) {
        .lx-intro-item__img {
          position: relative;
          top: unset !important;
          left: unset !important;
          right: unset !important;
          bottom: unset !important;
          width: 96px !important;
          height: 140px !important; } }
      @media (min-width: 1500px) {
        .lx-intro-item__img {
          width: 106px !important;
          height: 150px !important; } }
      @media (min-width: 1025px) and (max-height: 650px) {
        .lx-intro-item__img {
          width: 76px !important;
          height: 110px !important; } }
      .lx-intro-item__img:hover {
        animation: shake 3s infinite ease-in-out; }
      .lx-intro-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
@keyframes shake {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(2deg); }
  50% {
    transform: rotate(-2deg); }
  75% {
    transform: rotate(2deg); }
  100% {
    transform: rotate(0deg); } }
.lx-section {
  padding: 50px 0;
  max-height: 7000px;
  transition: max-height 1s ease;
  overflow: hidden; }
  @media (min-width: 1025px) {
    .lx-section {
      overflow: unset;
      max-height: 5400px; } }
  .lx-section .lx-teaser {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; }
  .lx-section .lx-content {
    position: relative;
    z-index: 1; }
  .lx-section .lx-action img {
    transition: transform 0.3s ease;
    transform: rotate(-180deg); }
  .lx-section-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px; }
    @media (min-width: 1025px) {
      .lx-section-wrapper {
        display: grid;
        grid-template-columns: 1fr 30%;
        gap: 0; } }
  .lx-section-right {
    padding-top: 20px; }
  .lx-section.is-collapsed {
    max-height: 550px;
    overflow: hidden; }
    .lx-section.is-collapsed .lx-teaser .lx-image {
      height: 460px;
      overflow: hidden; }
      .lx-section.is-collapsed .lx-teaser .lx-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
        filter: grayscale(1); }
      .lx-section.is-collapsed .lx-teaser .lx-image:hover img {
        filter: grayscale(0); }
    .lx-section.is-collapsed .lx-action img {
      transform: rotate(0deg); }
    .lx-section.is-collapsed .lx-detail {
      top: 60px; }
      @media (min-width: 1025px) {
        .lx-section.is-collapsed .lx-detail {
          top: 20px; } }
      .lx-section.is-collapsed .lx-detail.is-sticky {
        position: fixed;
        top: 100px;
        right: 20px;
        left: auto;
        z-index: 99; }
  .lx-section.is-collapsed .lx-teaser .lx-image {
    width: 100%; }
    @media (min-width: 1025px) {
      .lx-section.is-collapsed .lx-teaser .lx-image {
        width: 65%; } }
  .lx-section .lx-teaser {
    margin-right: -20px; }
    @media (min-width: 1025px) {
      .lx-section .lx-teaser {
        margin-right: 0; } }
    .lx-section .lx-teaser .lx-image {
      width: 100%;
      height: auto;
      transition: all 1s ease; }
  .lx-section--1 .lx-teaser .lx-image {
    width: 100%;
    height: 530px; }
    @media (min-width: 1025px) {
      .lx-section--1 .lx-teaser .lx-image {
        width: 65%;
        height: 880px; } }
  .lx-section--4 {
    margin-bottom: 100px; }
    @media (min-width: 1025px) {
      .lx-section--4 {
        margin-bottom: 0; } }

.lx-item {
  display: flex; }
  .lx-item.d-column {
    flex-direction: column; }
  .lx-item.f-end {
    justify-content: flex-end; }
    .lx-item.f-end.m-f-start {
      justify-content: flex-start; }
      @media (min-width: 1025px) {
        .lx-item.f-end.m-f-start {
          justify-content: flex-end; } }
    .lx-item.f-end.m-f-center {
      justify-content: center; }
      @media (min-width: 1025px) {
        .lx-item.f-end.m-f-center {
          justify-content: flex-end; } }
  .lx-item.f-start {
    justify-content: flex-start; }
  .lx-item.f-center {
    justify-content: center; }
    .lx-item.f-center.m-f-start {
      justify-content: flex-start; }
      @media (min-width: 1025px) {
        .lx-item.f-center.m-f-start {
          justify-content: center; } }
  .lx-item.f-between {
    justify-content: space-between; }
    .lx-item.f-between.m-f-column {
      flex-direction: column;
      align-items: flex-start; }
      .lx-item.f-between.m-f-column .lx-image {
        float: left; }
      @media (min-width: 1025px) {
        .lx-item.f-between.m-f-column {
          flex-direction: row; } }
  .lx-item.a-center {
    align-items: center; }
  .lx-item.a-end {
    align-items: flex-end; }
  .lx-item.g-auto {
    gap: 40px; }
    @media (min-width: 1025px) {
      .lx-item.g-auto {
        gap: 80px; } }
  .lx-item.mb-40 {
    margin-bottom: 40px; }
  .lx-item.mb-100 {
    margin-bottom: 80px; }
    @media (min-width: 1025px) {
      .lx-item.mb-100 {
        margin-bottom: 100px; } }
  .lx-item.mb-200 {
    margin-bottom: 120px; }
    @media (min-width: 1025px) {
      .lx-item.mb-200 {
        margin-bottom: 200px; } }

.lx-image {
  width: 65%;
  height: auto; }
  .lx-image.w-full {
    width: calc(100% + 40px);
    margin-right: -40px; }
    @media (min-width: 1025px) {
      .lx-image.w-full {
        width: 100%;
        margin-right: 0; } }
  .lx-image.w-half {
    width: 100%; }
    @media (min-width: 1025px) {
      .lx-image.w-half {
        width: 65%; } }
    .lx-image.w-half.m-w-half {
      width: 70%; }
      @media (min-width: 1025px) {
        .lx-image.w-half.m-w-half {
          width: 65%; } }
  .lx-image.w-small {
    width: 65%; }
    .lx-image.w-small.m-w-small {
      width: 30%; }
    @media (min-width: 1025px) {
      .lx-image.w-small {
        width: 30%; } }

.lx-text.w-half {
  width: 70%; }
  @media (min-width: 1025px) {
    .lx-text.w-half {
      width: 65%; } }
.lx-text.w-small {
  width: 55%; }
  @media (min-width: 1025px) {
    .lx-text.w-small {
      width: 30%; } }
  .lx-text.w-small.m-w-half {
    width: 70%; }
    @media (min-width: 1025px) {
      .lx-text.w-small.m-w-half {
        width: 30%; } }
.lx-text.w-medium {
  width: 60%; }
  @media (min-width: 1025px) {
    .lx-text.w-medium {
      width: 45%; } }
.lx-text h1 {
  color: var(--color-text);
  font-family: "Plus Jakarta Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 123.077% */
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .lx-text h1 {
      font-size: 26px; } }
.lx-text p {
  color: var(--color-text);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */ }
  @media (min-width: 1025px) {
    .lx-text p {
      font-size: 16px; } }

.lx-detail {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: sticky;
  top: 100px;
  box-shadow: 0px -30px 80px 50px var(--color-background);
  background: var(--color-background);
  z-index: 9999; }
  @media (min-width: 1025px) {
    .lx-detail {
      box-shadow: none;
      background: none; } }
  .lx-detail.is-fixed {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 99;
    padding-top: 30px;
    padding-right: 20px;
    background-color: var(--color-background);
    box-shadow: 0px 30px 80px 50px var(--color-background); }

.lx-title {
  cursor: pointer;
  color: var(--color-text);
  text-align: right;
  font-family: "Plus Jakarta Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal; }
  .lx-title span {
    display: block; }
    .lx-title span div {
      display: inline;
      color: var(--color-light); }

.lx-author {
  cursor: pointer;
  position: relative;
  width: fit-content;
  color: var(--color-text);
  text-align: right;
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding-left: 20px; }
  .lx-author::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--color-text); }

.masbox-has-icon {
  position: unset;
  display: unset; }

.lx-action {
  display: flex;
  align-items: center;
  color: var(--color-text);
  text-align: right;
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px; }

.lx-share-sticky {
  position: relative;
  width: fit-content;
  height: fit-content; }
  .lx-share-sticky__action {
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.01);
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 900px) {
      .lx-share-sticky__action {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center; } }
    .lx-share-sticky__action i {
      font-size: 20px;
      color: var(--color-text); }
      @media screen and (max-width: 900px) {
        .lx-share-sticky__action i {
          margin-right: 0; } }
    @media screen and (max-width: 900px) {
      .lx-share-sticky__action span {
        margin-right: 0; } }
    .lx-share-sticky__action.with-text {
      width: fit-content;
      padding: 0 20px; }
      @media screen and (max-width: 900px) {
        .lx-share-sticky__action.with-text {
          padding: 0;
          width: 45px; } }
      .lx-share-sticky__action.with-text i, .lx-share-sticky__action.with-text svg {
        margin-right: 10px; }
        @media screen and (max-width: 900px) {
          .lx-share-sticky__action.with-text i, .lx-share-sticky__action.with-text svg {
            margin-right: 0; } }
      @media screen and (max-width: 900px) {
        .lx-share-sticky__action.with-text span {
          display: none; } }
  .lx-share-sticky__content {
    display: none;
    position: absolute;
    top: 65px;
    left: -20px;
    padding: 20px;
    min-width: 280px;
    width: fit-content;
    height: fit-content;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    z-index: 10; }
    .lx-share-sticky__content::after {
      content: '';
      height: 15px;
      width: 15px;
      position: absolute;
      background-color: #ffffff;
      top: -8px;
      left: 35px;
      border-top: rgba(0, 0, 0, 0.1) solid 1px;
      border-left: rgba(0, 0, 0, 0.1) solid 1px;
      transform: rotate(45deg); }
    .lx-share-sticky__content-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 20px; }
      .lx-share-sticky__content-head-title {
        color: #000;
        font-family: "Plus Jakarta Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-top: 0; }
      .lx-share-sticky__content-head-number {
        color: #6B6B6A;
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; }
        .lx-share-sticky__content-head-number .current {
          color: #000;
          font-size: 16px; }
    .lx-share-sticky__content-text {
      color: #000000;
      font-family: "Plus Jakarta Sans";
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
      /* 150% */
      margin-bottom: 20px; }
    .lx-share-sticky__content-auth {
      display: flex;
      align-items: center;
      gap: 20px; }
      .lx-share-sticky__content-auth button {
        position: relative;
        padding: 0;
        margin: 0;
        width: fit-content;
        height: fit-content;
        border: none;
        background: transparent;
        font-family: "Plus Jakarta Sans";
        color: #000000;
        font-weight: 600;
        text-decoration: underline; }
        .lx-share-sticky__content-auth button:nth-child(2)::before {
          content: "";
          position: absolute;
          left: -10px;
          top: 50%;
          transform: translateY(-50%);
          width: 1px;
          height: 16px;
          background: #000000; }
    .lx-share-sticky__content-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px; }
      .lx-share-sticky__content-list.flex {
        display: flex;
        align-items: center;
        justify-content: center; }
      .lx-share-sticky__content-list-item {
        display: flex;
        align-items: center;
        justify-content: center; }
      .lx-share-sticky__content-list-btn {
        width: 100%;
        height: auto;
        background: transparent;
        border: 1px solid #6B6B6A;
        border-radius: 50px;
        padding: 4px 15px 4px 5px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 6px; }
        .lx-share-sticky__content-list-btn .icon {
          width: 25px;
          height: 25px;
          border: none;
          border-radius: 50px;
          display: flex;
          align-items: center;
          justify-content: center; }
          .lx-share-sticky__content-list-btn .icon i {
            font-size: 16px;
            color: #000000; }
        .lx-share-sticky__content-list-btn.text {
          background: transparent;
          border: 1px solid #6B6B6A;
          color: #000000;
          width: 45px;
          height: 45px;
          padding: 0;
          margin: 0;
          display: flex;
          align-items: center;
          justify-content: center; }
          .lx-share-sticky__content-list-btn.text.active {
            color: #ffffff;
            background-color: #6B6B6A; }
        .lx-share-sticky__content-list-btn.text-small {
          font-size: 14px; }
        .lx-share-sticky__content-list-btn.text-medium {
          font-size: 18px; }
        .lx-share-sticky__content-list-btn.text-large {
          font-size: 22px; }
    .lx-share-sticky__content-link {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2px 2px 2px 10px;
      border-radius: 50px;
      border: 1px solid #CECECE;
      background: #F2F2F2;
      user-select: none;
      /* Prevent text selection */
      -webkit-user-select: none;
      /* Safari */
      -moz-user-select: none;
      /* Firefox */
      -ms-user-select: none;
      /* Internet Explorer/Edge */ }
      .lx-share-sticky__content-link span {
        display: block;
        width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        user-select: none;
        /* Prevent text selection */
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        color: #000000;
        font-family: "Plus Jakarta Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; }
      .lx-share-sticky__content-link button {
        cursor: pointer;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        margin-left: 5px;
        color: #ffffff;
        white-space: nowrap;
        border: 1px solid #CECECE;
        border-radius: 50px;
        background-color: #2E3442; }
        .lx-share-sticky__content-link button i {
          font-size: 18px;
          color: #ffffff; }
  .lx-share-sticky.active .lx-share-sticky__content {
    display: block; }

/*# sourceMappingURL=main.css.map */
