@charset "UTF-8";
/* src/pages/uweb.microsite/fireclub/app.scss */
/* 1) 가장 먼저: @use (Sass 규칙) */
/* base 레이어: 토큰/믹스인/글로벌 기본값 */
/* 2) 레이어 우선순위 선언 */
@layer reset{

/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
}
@layer reset{

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */

:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center / 1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */

:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */

:where([type="color" i], [type="range" i]) {
  border-width: 0;
  padding: 0;
}
}
@layer components{
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
}
@layer components{

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
}
@layer components{
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
}
@layer components{
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
}
@layer base {
  :root {
    --brand: #0d47a7;
    --radius: 12px;
  }
  html,
  body,
  #root {
    height: 100%;
  }
  body {
    margin: 0;
    font-family: "NanumSquareNeo", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
  }
}
/* base/utilities.scss */
@layer utilities {
  /* 데스크탑에서만 감춤 */
  .br-hide-desktop {
    display: inline;
  }
  @media only screen and (min-width: 1440px) {
    .br-hide-desktop {
      display: none;
    }
  }
  /* 태블릿↑에서 감춤 */
  .br-hide-tablet {
    display: inline;
  }
  @media only screen and (min-width: 768px) {
    .br-hide-tablet {
      display: none;
    }
  }
  /* 태블릿에서만 보임 (모바일/데스크탑은 숨김) */
  .br-only-tablet {
    display: none; /* mobile: 숨김 */
  }
  @media only screen and (min-width: 768px) {
    .br-only-tablet {
      display: inline; /* tablet: 보임 */
    }
  }
  @media only screen and (min-width: 1440px) {
    .br-only-tablet {
      display: none; /* desktop: 다시 숨김 */
    }
  }
  /* 데스크탑에서만 보임 */
  .br-only-desktop {
    display: none;
  }
  @media only screen and (min-width: 1440px) {
    .br-only-desktop {
      display: inline;
    }
  }
  /* 모바일: 보임 → 태블릿: 숨김 → 데스크탑: 다시 보임 */
  .br-hide-tablet-only {
    display: inline;
  }
  @media only screen and (min-width: 768px) {
    .br-hide-tablet-only {
      display: none;
    }
  }
  @media only screen and (min-width: 1440px) {
    .br-hide-tablet-only {
      display: inline;
    }
  }
  /* 320~359px 에서만 보이기 */
  .br-only-mobile-small {
    display: none;
  }
  @media only screen and (width < 360px) {
    .br-only-mobile-small {
      display: inline;
    }
  }
}
/* components(섹션) 레이어 */
@layer components {
  #section1 {
    background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_keyvisual_mobile.jpg");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 60px;
  }
  @media only screen and (min-width: 768px) {
    #section1 {
      padding-bottom: 92px;
      background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_keyvisual_tablet.jpg");
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 {
      padding-bottom: 59px;
      background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_keyvisual_desktop.jpg");
    }
  }
  #section1 .logo_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .logo_wrapper {
      margin-left: 20px;
      justify-content: flex-start;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .logo_wrapper {
      margin: 0 auto;
      max-width: 1200px;
    }
  }
  #section1 .logo_wrapper .divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
  }
  #section1 .logo_wrapper a {
    display: block;
  }
  #section1 .title_wrapper {
    margin-top: 60px;
    text-align: center;
  }
  @media only screen and (min-width: 768px) {
    #section1 .title_wrapper {
      margin-top: 106px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .title_wrapper {
      margin-top: 54px;
    }
  }
  #section1 .title_wrapper span:nth-of-type(1) {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .title_wrapper span:nth-of-type(1) {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .title_wrapper span:nth-of-type(1) {
      font-size: 22px;
      letter-spacing: -0.66px;
    }
  }
  #section1 .title_wrapper h1 {
    margin: 0;
    margin-top: 22px;
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    line-height: 140%; /* 70px */
    letter-spacing: -1.5px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .title_wrapper h1 {
      font-size: 80px;
      letter-spacing: -2.4px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .title_wrapper h1 {
      margin-top: 12px;
      font-size: 70px;
      letter-spacing: -2.1px;
    }
  }
  #section1 .title_wrapper span:nth-of-type(2) {
    display: block;
    margin-top: 34px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 120%; /* 31.2px */
    letter-spacing: -0.78px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .title_wrapper span:nth-of-type(2) {
      font-size: 34px;
      letter-spacing: -1.02px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .title_wrapper span:nth-of-type(2) {
      margin-top: 30px;
      font-size: 30px;
      line-height: 100%; /* 30px */
      letter-spacing: -0.9px;
    }
  }
  #section1 .button_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .button_wrapper {
      margin-top: 91px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .button_wrapper {
      margin-top: 54px;
    }
  }
  #section1 .button_wrapper .primary_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    width: 319px;
    background: #fe6807;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 100%; /* 28.8px */
    letter-spacing: -0.72px;
    text-decoration: none;
  }
  @media only screen and (min-width: 768px) {
    #section1 .button_wrapper .primary_button {
      padding: 13px 0;
      width: 402px;
      font-size: 30px;
      letter-spacing: -0.9px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .button_wrapper .primary_button {
      padding: 16px 0;
      width: 358px;
      color: #fff;
      font-size: 26px;
      line-height: 100%; /* 26px */
      letter-spacing: -0.78px;
    }
  }
  #section1 .button_wrapper .primary_button:hover {
    background: rgba(254, 104, 7, 0.8);
  }
  #section1 .button_wrapper .primary_button.rounded_full {
    border-radius: 999px;
  }
  #section1 .button_wrapper .primary_button img {
    display: block;
    width: 24px;
    height: 24px;
  }
  @media only screen and (min-width: 768px) {
    #section1 .button_wrapper .primary_button img {
      width: 36px;
      height: 36px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section1 .button_wrapper .primary_button img {
      width: 26px;
      height: 26px;
    }
  }
}
@layer components {
  #section2 .highlight {
    --hl: #ddff00;
    --thickness: 10px; /* 기본 두께 */
    --y: -2px; /* 아래에서 위로 살짝 올리고 싶을 때(+값) */
    --bleed-x: 0.1em; /* 좌우 번짐(패딩 느낌) */
    padding: 0 2px 2px;
    background: linear-gradient(var(--hl), var(--hl)) 0 calc(100% - var(--y))/calc(100% + var(--bleed-x) * 2) var(--thickness) no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  #section2 .highlight.highlight_small {
    --thickness: 10px;
  }
  #section2 .highlight.highlight_large {
    --thickness: 22px;
  }
  #section2 .banner_wrapper {
    width: 100%;
    background: #fe6807;
  }
  #section2 .banner_wrapper > div {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    max-width: 360px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .banner_wrapper > div {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 74px;
      padding: 30px;
      max-width: 768px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .banner_wrapper > div {
      gap: 30px;
    }
  }
  #section2 .banner_wrapper > div > div .count {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 100%; /* 22px */
    letter-spacing: -0.66px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .banner_wrapper > div > div .count {
      font-size: 24px;
      letter-spacing: -0.72px;
    }
  }
  #section2 .banner_wrapper > div > div .count strong {
    font-size: 50px;
    font-weight: 900;
    line-height: 100%; /* 50px */
    letter-spacing: -1.5px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .banner_wrapper > div > div .count strong {
      font-size: 60px;
      letter-spacing: -1.8px;
    }
  }
  #section2 .banner_wrapper > div > div .text {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
  }
  #section2 .banner_wrapper .divider {
    display: none;
  }
  @media only screen and (min-width: 768px) {
    #section2 .banner_wrapper .divider {
      display: block;
      width: 1px;
      height: 106px;
      background: rgba(255, 255, 255, 0.6);
    }
  }
  #section2 .content_wrapper {
    overflow: hidden;
    margin: 0 auto;
    padding: 80px 0 23px;
    width: 100%;
    text-align: right;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper {
      padding: 80px 0 26px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper {
      max-width: 1200px;
      padding: 100px 0 26px;
    }
  }
  #section2 .content_wrapper p {
    display: block;
    margin: 0;
    text-align: center;
  }
  #section2 .content_wrapper > h2 {
    margin: 0;
    margin-bottom: 60px;
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    line-height: 160%; /* 48px */
    letter-spacing: -0.9px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > h2 {
      margin-bottom: 70px;
      font-size: 42px;
      line-height: 180%; /* 75.6px */
      letter-spacing: -1.26px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > h2 {
      margin-bottom: 60px;
      font-size: 40px;
      line-height: 180%; /* 72px */
      letter-spacing: -1.2px;
    }
  }
  #section2 .content_wrapper > p:nth-of-type(1) {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 170%; /* 30.6px */
    letter-spacing: -0.54px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > p:nth-of-type(1) {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > p:nth-of-type(1) {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.72px;
    }
  }
  #section2 .content_wrapper > p:nth-of-type(1) strong {
    font-weight: 900;
  }
  #section2 .content_wrapper > p:nth-of-type(2) {
    margin-bottom: 44px;
  }
  #section2 .content_wrapper > p:nth-of-type(2) strong {
    color: #000;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 150%; /* 39px */
    letter-spacing: -0.78px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > p:nth-of-type(2) strong {
      font-size: 38px;
      line-height: 170%; /* 64.6px */
      letter-spacing: -1.14px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > p:nth-of-type(2) strong {
      font-size: 36px;
      letter-spacing: -1.08px;
    }
  }
  #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(1) {
    display: inline;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.6px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(1) {
      font-size: 28px;
      line-height: 170%;
      letter-spacing: -0.84px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(1) {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(2) {
    display: block;
    margin-top: 8px;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%; /* 28px */
    letter-spacing: -0.6px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(2) {
      margin-top: 0;
      font-size: 28px;
      line-height: 170%;
      letter-spacing: -0.84px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > p:nth-of-type(2) span:nth-of-type(2) {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  #section2 .content_wrapper .divider {
    margin: 48px auto 45px;
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: #c9c9c9;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper .divider {
      margin: 65px auto 55px;
      width: 378px;
      max-width: 378px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper .divider {
      margin: 44px auto 36px;
    }
  }
  #section2 .content_wrapper > span {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    padding-right: 16px;
    width: 100%;
    max-width: 360px;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%; /* 12px */
    letter-spacing: -0.36px;
  }
  @media only screen and (min-width: 768px) {
    #section2 .content_wrapper > span {
      max-width: 768px;
      font-size: 14px;
      letter-spacing: -0.42px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section2 .content_wrapper > span {
      padding-right: 0;
      max-width: 1200px;
    }
  }
}
@layer components {
  #section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: #fff2e1;
  }
  @media only screen and (min-width: 768px) {
    #section3 {
      padding: 80px 52px 80px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 {
      padding: 100px 0 100px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 > div {
      display: flex;
      gap: 53px;
    }
  }
  #section3 > div h2 {
    margin: 0;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    line-height: 160%; /* 48px */
    letter-spacing: -0.9px;
  }
  @media only screen and (min-width: 768px) {
    #section3 > div h2 {
      margin-bottom: 64px;
      font-size: 40px;
      font-weight: 900;
      line-height: 170%; /* 68px */
      letter-spacing: -1.2px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 > div h2 {
      text-align: left;
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -1.08px;
    }
  }
  #section3 > div ul {
    margin: 0;
    margin-bottom: 60px;
    padding: 0;
    width: 100%;
    max-width: 360px;
  }
  @media only screen and (min-width: 768px) {
    #section3 > div ul {
      margin-bottom: 80px;
      max-width: 768px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 > div ul {
      flex: 1;
    }
  }
  #section3 > div ul li {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 8px;
    padding-left: 38px;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    line-height: 170%; /* 34px */
    letter-spacing: -0.6px;
    list-style: none;
  }
  @media only screen and (min-width: 768px) {
    #section3 > div ul li {
      padding-left: 56px;
      margin-top: 20px;
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 > div ul li {
      margin-top: 16px;
      height: 48px;
      font-size: 24px;
      font-weight: 800;
      line-height: 100%; /* 24px */
      letter-spacing: -0.72px;
    }
  }
  #section3 > div ul li:first-child {
    margin-top: 0;
  }
  #section3 > div ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/icon_check.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  @media only screen and (min-width: 768px) {
    #section3 > div ul li::before {
      width: 48px;
      height: 48px;
    }
  }
  #section3 p {
    margin: 0;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    line-height: 160%; /* 51.2px */
    letter-spacing: -0.96px;
  }
  @media only screen and (min-width: 768px) {
    #section3 p {
      font-size: 44px;
      line-height: 170%; /* 74.8px */
      letter-spacing: -1.32px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section3 p {
      font-size: 40px;
      line-height: 100%; /* 40px */
      letter-spacing: -1.2px;
    }
  }
}
@layer components {
  #section4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 16px;
    background: #191923;
  }
  @media only screen and (min-width: 768px) {
    #section4 {
      padding: 100px 20px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section4 {
      padding: 120px 20px;
    }
  }
  #section4 h2 {
    margin: 0;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    line-height: 170%; /* 54.4px */
    letter-spacing: -0.96px;
  }
  @media only screen and (min-width: 768px) {
    #section4 h2 {
      font-size: 48px;
      letter-spacing: -1.44px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section4 h2 {
      font-size: 46px;
      line-height: 100%; /* 46px */
      letter-spacing: -1.38px;
    }
  }
  #section4 p {
    margin: 0;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 170%; /* 34px */
    letter-spacing: -0.6px;
  }
  @media only screen and (min-width: 768px) {
    #section4 p {
      margin-bottom: 80px;
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section4 p {
      font-size: 24px;
      line-height: 100%; /* 24px */
      letter-spacing: -0.72px;
    }
  }
  #section4 > ul {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 360px;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul {
      max-width: 768px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section4 > ul {
      max-width: 790px;
    }
  }
  #section4 > ul > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    border-radius: 20px;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li {
      flex-direction: row;
      margin-bottom: 40px;
      height: 396px;
    }
  }
  #section4 > ul > li:last-child {
    margin-bottom: 0;
  }
  #section4 > ul > li > span {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 328/272;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > span {
      aspect-ratio: auto;
    }
  }
  #section4 > ul > li > span picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  #section4 > ul > li > span picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #section4 > ul > li > div {
    flex: 1;
    padding: 20px 17px;
    width: 100%;
    background: #3d3d48;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > div {
      flex: none;
      padding: 24px 32px;
      width: calc(100% - 282px);
    }
  }
  @media only screen and (min-width: 1440px) {
    #section4 > ul > li > div {
      width: calc(100% - 276px);
    }
  }
  #section4 > ul > li > div ul {
    margin: 0;
    margin-bottom: 57px;
    padding: 0;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > div ul {
      margin-bottom: 69px;
    }
  }
  #section4 > ul > li > div ul li {
    position: relative;
    padding-left: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%; /* 27.2px */
    letter-spacing: -0.48px;
    list-style: none;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > div ul li {
      font-size: 18px;
      letter-spacing: -0.54px;
    }
  }
  #section4 > ul > li > div ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > div ul li::before {
      top: 13px;
    }
  }
  #section4 > ul > li > div .expert_wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
  }
  @media only screen and (min-width: 768px) {
    #section4 > ul > li > div .expert_wrapper {
      margin-bottom: 16px;
    }
  }
  #section4 > ul > li > div .expert_wrapper strong {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 100%; /* 32px */
    letter-spacing: -0.96px;
  }
  #section4 > ul > li > div .expert_wrapper span {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%; /* 20px */
    letter-spacing: -0.6px;
  }
  #section4 > ul > li > div > span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.54px;
  }
  #section4 .divider {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  #section4 .button_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  @media only screen and (min-width: 768px) {
    #section4 .button_wrapper {
      flex-direction: row;
      gap: 12px;
    }
  }
  #section4 .button_wrapper a,
  #section4 .button_wrapper button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 100%; /* 16px */
    letter-spacing: -0.48px;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  @media only screen and (min-width: 768px) {
    #section4 .button_wrapper a,
    #section4 .button_wrapper button {
      padding: 0;
      height: 48px;
    }
  }
  #section4 .button_wrapper a.primary_button,
  #section4 .button_wrapper button.primary_button {
    background: #fe6807;
  }
  #section4 .button_wrapper a.primary_button:hover,
  #section4 .button_wrapper button.primary_button:hover {
    background: rgba(254, 104, 7, 0.8);
  }
  #section4 .button_wrapper a.secondary_button,
  #section4 .button_wrapper button.secondary_button {
    background: #191923;
  }
  #section4 .button_wrapper a.secondary_button:hover,
  #section4 .button_wrapper button.secondary_button:hover {
    background: rgba(25, 25, 35, 0.8);
  }
  #section4 .button_wrapper a.rounded_full,
  #section4 .button_wrapper button.rounded_full {
    border-radius: 999px;
  }
}
@layer components {
  #section5 {
    padding: 80px 0;
    background: #fff;
  }
  #section5 .highlight {
    --hl: #ddff00;
    --thickness: 10px; /* 기본 두께 */
    --y: -2px; /* 아래에서 위로 살짝 올리고 싶을 때(+값) */
    --bleed-x: 0.1em; /* 좌우 번짐(패딩 느낌) */
    padding: 0 2px 2px;
    background: linear-gradient(var(--hl), var(--hl)) 0 calc(100% - var(--y))/calc(100% + var(--bleed-x) * 2) var(--thickness) no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  #section5 .highlight.highlight_small {
    --thickness: 10px;
  }
  #section5 .highlight.highlight_large {
    --thickness: 22px;
  }
  @media only screen and (min-width: 768px) {
    #section5 {
      padding: 100px 0;
    }
  }
  @media only screen and (min-width: 768px) {
    #section5 {
      padding: 117px 0 120px;
    }
  }
  #section5 h2 {
    margin: 0;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    line-height: 170%; /* 54.4px */
    letter-spacing: -0.96px;
  }
  @media only screen and (min-width: 768px) {
    #section5 h2 {
      font-size: 48px;
      letter-spacing: -1.44px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section5 h2 {
      font-size: 46px;
      line-height: 100%; /* 46px */
      letter-spacing: -1.38px;
    }
  }
  #section5 > p {
    margin: 0;
    margin-bottom: 86px;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 170%; /* 34px */
    letter-spacing: -0.6px;
  }
  #section5 > p strong {
    font-weight: 900;
  }
  @media only screen and (min-width: 768px) {
    #section5 > p {
      margin-bottom: 71px;
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section5 > p {
      margin-bottom: 78px;
      font-size: 24px;
      line-height: 100%; /* 24px */
      letter-spacing: -0.72px;
    }
  }
  .event_wrapper {
    position: relative;
    margin: 0 auto 88px;
    max-width: 360px;
  }
  @media only screen and (width < 360px) {
    .event_wrapper {
      margin-bottom: 40px;
    }
  }
  @media only screen and (min-width: 768px) {
    .event_wrapper {
      max-width: 768px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper {
      max-width: 994px;
    }
  }
  .event_wrapper .badge {
    position: absolute;
    display: inline-flex;
    transform: rotate(-11.532deg);
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    color: #252424;
    font-size: 16px;
    font-weight: 900;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.48px;
    z-index: 10;
  }
  @media only screen and (min-width: 768px) {
    .event_wrapper .badge {
      font-size: 26px;
      line-height: 170%; /* 44.2px */
      letter-spacing: -0.78px;
    }
  }
  .event_wrapper .badge.primary_badge {
    top: -24px;
    left: 11px;
    background: rgba(0, 255, 166, 0.8);
  }
  @media only screen and (min-width: 768px) {
    .event_wrapper .badge.primary_badge {
      top: -19px;
      left: 20px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper .badge.primary_badge {
      top: -31px;
      left: -100px;
    }
  }
  .event_wrapper .badge.secondary_badge {
    right: 11px;
    bottom: 33px;
    background: rgba(189, 208, 255, 0.8);
  }
  @media only screen and (min-width: 768px) {
    .event_wrapper .badge.secondary_badge {
      right: 20px;
      bottom: -45px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper .badge.secondary_badge {
      right: -95px;
      bottom: -36px;
    }
  }
  .event_wrapper .swiper {
    padding-bottom: 33px;
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper .swiper {
      padding-bottom: 26px;
    }
  }
  .event_wrapper .swiper .swiper-slide {
    overflow: hidden;
  }
  .event_wrapper .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .event_wrapper .swiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper .swiper .swiper-pagination {
      gap: 8px;
    }
  }
  .event_wrapper .swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    width: 12px;
    height: 12px;
    background: #cccccc;
  }
  @media only screen and (min-width: 1440px) {
    .event_wrapper .swiper .swiper-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
    }
  }
  .event_wrapper .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #666666;
  }
  .comment_wrapper .title_wrapper {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
  }
  @media only screen and (min-width: 768px) {
    .comment_wrapper .title_wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 43px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .comment_wrapper .title_wrapper {
      margin-bottom: 45px;
    }
  }
  .comment_wrapper .title_wrapper > div {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .comment_wrapper .title_wrapper > div > p {
    position: relative;
    margin: 0;
    padding-left: 119px;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.72px;
  }
  @media only screen and (width < 360px) {
    .comment_wrapper .title_wrapper > div > p {
      padding-left: 0;
      padding-top: 90px;
    }
  }
  .comment_wrapper .title_wrapper > div > p strong {
    font-weight: 900;
  }
  .comment_wrapper .title_wrapper > div > p::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 144px;
    height: 75px;
    background: url("https://menu.mt.co.kr/microweb/static/fireclub/icon_youtube_comment.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  @media only screen and (width < 360px) {
    .comment_wrapper .title_wrapper > div > p::before {
      top: 0;
      left: calc(50% + 18px);
      transform: translateX(-50%);
    }
  }
  @media only screen and (min-width: 768px) {
    .comment_wrapper .title_wrapper > div > p {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .comment_wrapper .title_wrapper > div > p {
      font-size: 24px;
      letter-spacing: -0.72px;
    }
  }
  .comment_wrapper .title_wrapper span {
    display: block;
    margin-top: 15px;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%; /* 24px */
    letter-spacing: -0.72px;
  }
  @media only screen and (min-width: 768px) {
    .comment_wrapper .title_wrapper span {
      margin-top: 0;
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .comment_wrapper .title_wrapper span {
      font-size: 24px;
      letter-spacing: -0.72px;
    }
  }
  .comment_wrapper ul {
    margin: 0;
    padding: 0;
    margin: 0 auto 14px;
    padding: 24px 16px 8px;
    max-width: 360px;
    background: #f5f5f5;
    list-style: none;
  }
  @media only screen and (min-width: 361px) {
    .comment_wrapper ul {
      border-radius: 20px;
    }
  }
  @media only screen and (min-width: 768px) {
    .comment_wrapper ul {
      padding: 24px 24px 8px;
      max-width: 728px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .comment_wrapper ul {
      max-width: 994px;
    }
  }
  .comment_wrapper ul li {
    margin-bottom: 14px;
    border-bottom: 1px solid #ccc;
  }
  .comment_wrapper ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .comment_wrapper ul li span {
    display: flex;
    position: relative;
    margin-bottom: 12px;
    padding-left: 46px;
    height: 40px;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-weight: 800;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
  }
  .comment_wrapper ul li span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/icon_singlefire.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .comment_wrapper ul li p {
    margin: 0;
    margin-bottom: 16px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: -0.48px;
  }
  .comment_wrapper > span {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    padding-right: 16px;
    max-width: 360px;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%; /* 12px */
    letter-spacing: -0.36px;
  }
  @media only screen and (min-width: 768px) {
    .comment_wrapper > span {
      padding-right: 0;
      max-width: 728px;
      font-size: 14px;
      letter-spacing: -0.42px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .comment_wrapper > span {
      max-width: 994px;
    }
  }
}
@layer components {
  #section6 {
    padding: 80px 0;
    background: #2c2c33;
  }
  #section6 .highlight {
    --hl: #ddff00;
    --thickness: 10px; /* 기본 두께 */
    --y: -2px; /* 아래에서 위로 살짝 올리고 싶을 때(+값) */
    --bleed-x: 0.1em; /* 좌우 번짐(패딩 느낌) */
    padding: 0 2px 2px;
    background: linear-gradient(var(--hl), var(--hl)) 0 calc(100% - var(--y))/calc(100% + var(--bleed-x) * 2) var(--thickness) no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  #section6 .highlight.highlight_small {
    --thickness: 10px;
  }
  #section6 .highlight.highlight_large {
    --thickness: 22px;
  }
  @media only screen and (min-width: 768px) {
    #section6 {
      padding: 100px 0 110px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 {
      padding: 120px 0 160px;
    }
  }
  #section6 .title_wrap h2 {
    margin: 0;
    margin-bottom: 8px;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    line-height: 170%; /* 61.2px */
    letter-spacing: -1.08px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .title_wrap h2 {
      font-size: 46px;
      letter-spacing: -1.38px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .title_wrap h2 {
      margin-bottom: 48px;
    }
  }
  #section6 .title_wrap p {
    margin: 0;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 190%; /* 38px */
    letter-spacing: -0.38px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .title_wrap p {
      font-size: 24px;
      letter-spacing: -0.456px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .title_wrap p {
      font-size: 24px;
      letter-spacing: -0.456px;
    }
  }
  #section6 > ul {
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  @media only screen and (min-width: 768px) {
    #section6 > ul {
      margin-bottom: 60px;
    }
  }
  #section6 > ul li {
    display: flex;
    width: 100%;
    max-width: 328px;
    padding: 18px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #191923;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    line-height: 100%; /* 22px */
    letter-spacing: -0.66px;
  }
  @media only screen and (min-width: 768px) {
    #section6 > ul li {
      max-width: 584px;
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  #section6 .content_wrap {
    margin: 0 auto 30px;
    max-width: 328px;
  }
  #section6 .content_wrap:last-child {
    margin-bottom: 0;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap {
      max-width: 728px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .content_wrap {
      display: flex;
      max-width: 994px;
    }
  }
  #section6 .content_wrap .info_wrap {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
  }
  #section6 .content_wrap .info_wrap .profile_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap .profile_wrap {
      margin-bottom: 30px;
    }
  }
  #section6 .content_wrap .info_wrap .profile_wrap img {
    display: block;
    width: 50px;
    height: 50px;
  }
  #section6 .content_wrap .info_wrap .profile_wrap span {
    color: #000;
    font-size: 22px;
    font-weight: 800;
    line-height: 100%; /* 22px */
    letter-spacing: -0.66px;
  }
  #section6 .content_wrap .info_wrap > ul {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 4px;
  }
  #section6 .content_wrap .info_wrap > ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #fe6807;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 100%; /* 12px */
    letter-spacing: -0.36px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap > ul li {
      font-size: 14px;
      letter-spacing: -0.42px;
    }
  }
  #section6 .content_wrap .info_wrap > p {
    margin: 0;
    color: #000;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.72px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap > p {
      font-size: 30px;
      line-height: 100%; /* 30px */
      letter-spacing: -0.9px;
    }
  }
  #section6 .content_wrap .info_wrap .divider {
    margin: 20px 0;
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap .divider {
      margin: 24px 0;
    }
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap .detail_wrap {
      display: flex;
      gap: 24px;
    }
  }
  #section6 .content_wrap .info_wrap .detail_wrap > div {
    margin-bottom: 24px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .info_wrap .detail_wrap > div {
      width: 50%;
    }
  }
  #section6 .content_wrap .info_wrap .detail_wrap > div span {
    display: block;
    margin-bottom: 12px;
    color: #000;
    font-size: 18px;
    font-weight: 800;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
  }
  #section6 .content_wrap .info_wrap .detail_wrap > div ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #section6 .content_wrap .info_wrap .detail_wrap > div ul li {
    position: relative;
    padding-left: 8px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 170%; /* 27.2px */
    letter-spacing: -0.48px;
  }
  #section6 .content_wrap .info_wrap .detail_wrap > div ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0px;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 999px;
  }
  #section6 .content_wrap .price_wrap {
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
  }
  #section6 .content_wrap .price_wrap::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_divider_dashed_mobile.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap::before {
      background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_divider_dashed_tablet.svg");
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .content_wrap .price_wrap::before {
      top: 50%;
      left: -2px;
      transform: translateY(-50%);
      width: 4px;
      height: calc(100% - 16px);
      background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/bg_divider_dashed_desktop.svg");
    }
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap {
      margin-bottom: 0;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .content_wrap .price_wrap {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  }
  #section6 .content_wrap .price_wrap > div > span {
    display: block;
    margin-bottom: 30px;
    color: #000;
    font-size: 18px;
    font-weight: 800;
    line-height: 100%; /* 18px */
    letter-spacing: -0.54px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap > div > span {
      font-size: 21px;
      letter-spacing: -0.63px;
    }
  }
  #section6 .content_wrap .price_wrap > div div:nth-of-type(1) {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 40px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap > div div:nth-of-type(1) {
      flex-direction: column;
      margin-bottom: 0;
      width: 205px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .content_wrap .price_wrap > div div:nth-of-type(1) {
      width: 100%;
    }
  }
  #section6 .content_wrap .price_wrap > div div:nth-of-type(1) strong {
    display: block;
    padding-bottom: 11px;
    color: #000;
    font-size: 30px;
    font-weight: 900;
    line-height: 100%; /* 30px */
    letter-spacing: -0.9px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap > div div:nth-of-type(1) strong {
      padding-bottom: 5px;
      font-size: 36px;
      letter-spacing: -1.08px;
    }
  }
  #section6 .content_wrap .price_wrap > div div:nth-of-type(1) span {
    color: #a1a1a1;
    font-size: 16px;
    font-weight: 800;
    line-height: 100%; /* 16px */
    letter-spacing: -0.48px;
    text-decoration-line: line-through;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap > div div:nth-of-type(1) span {
      font-size: 18px;
      letter-spacing: -0.54px;
    }
  }
  #section6 .content_wrap .price_wrap .button_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap .button_wrap {
      position: absolute;
      right: 24px;
      bottom: 24px;
    }
  }
  @media only screen and (min-width: 1440px) {
    #section6 .content_wrap .price_wrap .button_wrap {
      position: relative;
      right: unset;
      bottom: unset;
    }
  }
  #section6 .content_wrap .price_wrap .button_wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    width: 100%;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 170%; /* 30.6px */
    letter-spacing: -0.54px;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  @media only screen and (min-width: 768px) {
    #section6 .content_wrap .price_wrap .button_wrap a {
      width: 236px;
    }
  }
  #section6 .content_wrap .price_wrap .button_wrap a.primary_button {
    background: #fe6807;
  }
  #section6 .content_wrap .price_wrap .button_wrap a.primary_button:hover {
    background: rgba(254, 104, 7, 0.8);
  }
  #section6 .content_wrap .price_wrap .button_wrap a.secondary_button {
    background: #191923;
  }
  #section6 .content_wrap .price_wrap .button_wrap a.secondary_button:hover {
    background: rgba(25, 25, 35, 0.8);
  }
}
@layer components {
  .sticky-container {
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fe6807;
    color: #fff;
    z-index: 10;
  }
  .sticky-container > div {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
    padding: 21px 16px 16px;
    max-width: 360px;
  }
  @media only screen and (min-width: 768px) {
    .sticky-container > div {
      flex-direction: row;
      gap: 22px;
      align-items: center;
      justify-content: center;
      padding: 16px 0;
      max-width: 768px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .sticky-container > div {
      gap: 33px;
      max-width: 994px;
    }
  }
  .sticky-container > div span {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 100%; /* 13px */
    letter-spacing: -0.39px;
  }
  @media only screen and (width < 360px) {
    .sticky-container > div span {
      text-align: center;
      font-size: 11px;
      letter-spacing: -0.33px;
    }
  }
  @media only screen and (min-width: 768px) {
    .sticky-container > div span {
      font-size: 20px;
      letter-spacing: -0.6px;
    }
  }
  @media only screen and (min-width: 1440px) {
    .sticky-container > div span {
      font-size: 26px;
      letter-spacing: -0.78px;
    }
  }
  .sticky-container > div a,
  .sticky-container > div button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 46px;
    background: #fff;
    border-radius: 6px;
    border: none;
    color: #fe6807;
    font-size: 16px;
    font-weight: 800;
    line-height: 100%; /* 16px */
    letter-spacing: -0.48px;
    text-decoration: none;
    cursor: pointer;
  }
  @media only screen and (min-width: 768px) {
    .sticky-container > div a,
    .sticky-container > div button {
      width: 207px;
    }
  }
  .sticky-container > div a:hover,
  .sticky-container > div button:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}
@layer components {
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    background: #000;
  }
  footer p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: -0.36px;
  }
  @media only screen and (min-width: 768px) {
    footer p {
      font-size: 15px;
      letter-spacing: -0.285px;
    }
  }
  @media only screen and (min-width: 1440px) {
    footer p {
      font-size: 15px;
      line-height: 100%; /* 15px */
      letter-spacing: -0.45px;
    }
  }
}
/* scss/components/_video-modal.scss */
@layer components {
  .video-modal[hidden] {
    display: none !important;
  }
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
  }
  .video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: saturate(120%) blur(4px);
  }
  .video-modal__dialog {
    position: relative;
    width: min(960px, 92vw);
    outline: none;
  }
  .video-modal__close {
    position: absolute;
    top: -30px;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/icon_close.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
  }
  @media only screen and (min-width: 768px) {
    .video-modal__close {
      top: -50px;
      width: 30px;
      height: 30px;
      background-image: url("https://menu.mt.co.kr/microweb/static/fireclub/icon_close.svg");
    }
  }
  /* 16:9 비율 박스 */
  .video-modal__frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
  }
  .video-modal__frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }
}
@layer reset, base, components;
/* 3) 외부 초기화 CSS (reset 레이어) */
/* AOS (스크롤 애니메이션) */
/* 4) (선택) Swiper CSS도 전역에서 한 번만 */