@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing */
/*
  content-edge：內容版心與瀏覽器邊界的預設距離
  section-py：section 上下留白
  如果不需要上下 padding，可用 .section-py--mobile-0 等類別局部去除。
*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* Text Block Padding */
/* =========================================
  📐 Spacing Layout System v2

  規則：
  - .section-py       = section 上下留白，貼在 <section>
  - .section-pt       = section 上方留白，貼在 <section>
  - .section-pb       = section 下方留白，貼在 <section>
  - .container        = 置中內容最大寬度
  - .content-px       = 非 container 內容的左右安全距離
  - .content-ps       = 左側對齊版心，右側可貼邊
  - .content-pe       = 右側對齊版心，左側可貼邊
  - .txt-p*           = 文字區塊內距，用於圖文版型的圖文距離
  - *--mobile-0       = 手機歸零，桌機恢復

  手機滿版用法：
  <section class="section-py">
    <img>
    <div class="content-px">文字</div>
  </section>
========================================= */
/* ─── Root Tokens ────────────────────────────────────────── */
:root {
  --content-edge: calc(25 * var(--vw-base));
  --container-max-width: 100%;
  --section-py: calc(62 * var(--vw-base));
  --txt-px: calc(33 * var(--vw-base));
  --txt-py: calc(39 * var(--vw-base));
}

@media (min-width: 992px) {
  :root {
    --content-edge: calc(124 * var(--vw-base));
    --container-max-width: calc(1600 * var(--vw-base));
    --section-py: calc(95 * var(--vw-base));
    --txt-px: calc(47 * var(--vw-base));
    --txt-py: calc(47 * var(--vw-base));
  }
}
/* ─── Content Width ──────────────────────────────────────── */
.container {
  width: var(--container-max-width, 100%);
  max-width: none;
  padding-inline: 0;
}

.content-px {
  padding-inline: var(--content-edge);
}

.content-px--mobile-0 {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .content-px--mobile-0 {
    padding-inline: var(--content-edge);
  }
}

.content-ps {
  padding-inline-start: var(--content-edge);
}

.content-ps--mobile-0 {
  padding-inline-start: 0;
}
@media (min-width: 992px) {
  .content-ps--mobile-0 {
    padding-inline-start: var(--content-edge);
  }
}

.content-pe {
  padding-inline-end: var(--content-edge);
}

.content-pe--mobile-0 {
  padding-inline-end: 0;
}
@media (min-width: 992px) {
  .content-pe--mobile-0 {
    padding-inline-end: var(--content-edge);
  }
}

/* ─── Text Block Padding ─────────────────────────────────── */
.txt-px {
  padding-inline: var(--txt-px);
}

.txt-py {
  padding-block: var(--txt-py);
}

.txt-ps {
  padding-inline-start: var(--txt-px);
}

.txt-pe {
  padding-inline-end: var(--txt-px);
}

.txt-pt {
  padding-block-start: var(--txt-py);
}

.txt-pb {
  padding-block-end: var(--txt-py);
}

@media (min-width: 992px) {
  .txt-lg-ps {
    padding-inline-start: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-px {
    padding-inline: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-py {
    padding-block: var(--txt-py);
  }
}

@media (min-width: 992px) {
  .txt-lg-pe {
    padding-inline-end: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-pt {
    padding-block-start: var(--txt-py);
  }
}

@media (min-width: 992px) {
  .txt-lg-pb {
    padding-block-end: var(--txt-py);
  }
}

/* ─── Section Padding ────────────────────────────────────── */
.section-py {
  padding-block: var(--section-py);
}

.section-pt {
  padding-top: var(--section-py);
}

.section-pb {
  padding-bottom: var(--section-py);
}

.section-py--mobile-0 {
  padding-block: 0;
}
@media (min-width: 992px) {
  .section-py--mobile-0 {
    padding-block: var(--section-py);
  }
}

.section-pt--mobile-0 {
  padding-top: 0;
}
@media (min-width: 992px) {
  .section-pt--mobile-0 {
    padding-top: var(--section-py);
  }
}

.section-pb--mobile-0 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-pb--mobile-0 {
    padding-bottom: var(--section-py);
  }
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.66;
  letter-spacing: 0.04em;
  font-size: calc(16 * var(--vw-base));
}
@media (max-width: 991px) {
  body {
    font-size: calc(14.4 * var(--vw-base));
  }
}

/* ========================
  🏷 Page Typography Patterns
  語意標題 class — 全站共用標題組合樣式
  修改此處即可全站同步，不需逐一改 section
  需要差異化時，在 style.scss 內的 pageXX 局部覆蓋
======================== */
/* 英文裝飾大標（LOCATION / CONCEPT 等）
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-en-title {
  font-size: calc(72 * var(--vw-base));
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 991px) {
  .page-en-title {
    font-size: calc(45.3 * var(--vw-base));
  }
}
.page-en-title__gradient {
  background: linear-gradient(312deg, #000000 0%, #2ca6e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 中文主標題
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-zh-title {
  font-size: calc(32 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  line-height: 1.8;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .page-zh-title {
    font-size: calc(22.5 * var(--vw-base));
  }
}
.page-zh-title__gradient {
  background: linear-gradient(312deg, #000000 0%, #2ca6e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 中文次標題（Optional）modifier: --primary */
.page-zh-subtitle {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: calc(40 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-zh-subtitle {
    font-size: calc(23.8 * var(--vw-base));
  }
}

/* 英文次標題（Optional）modifier: --primary */
.page-en-subtitle {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: calc(24 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-en-subtitle {
    font-size: calc(19.3 * var(--vw-base));
  }
}

/* 中文小標籤（Optional）modifier: --primary */
.page-zh-label {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  font-size: calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-zh-label {
    font-size: calc(10.8 * var(--vw-base));
  }
}

/* 英文小標籤（Optional）modifier: --primary */
.page-en-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-en-label {
    font-size: calc(10.8 * var(--vw-base));
  }
}

/* 圖說 / 註解（Optional）
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-caption {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  font-size: calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-caption {
    font-size: calc(10.8 * var(--vw-base));
  }
}

/* ========================
  📢 Slogan（廣告標語系統）
  用於 Banner / Footer 品牌訴求語
  字體切換：直接加 .font-* class
======================== */
/* 廣告標語容器：無預設對齊，搭配 .text-spread 啟用字元均分 */
.slogan-wrap {
  max-width: 100%;
  margin-inline: auto;
}

/* 標語字級一（最大） modifier: --primary */
.page-slogan-heading1 {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  letter-spacing: 0.3rem;
  line-height: 1.8;
  font-size: calc(48 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-slogan-heading1 {
    font-size: calc(30.2 * var(--vw-base));
  }
}

/* 標語字級二（次大） modifier: --primary */
.page-slogan-heading2 {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(38.4 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-slogan-heading2 {
    font-size: calc(23.2 * var(--vw-base));
  }
}

/* 標語字級三（中） modifier: --primary */
.page-slogan-heading3 {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: calc(28.8 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-slogan-heading3 {
    font-size: calc(17.6 * var(--vw-base));
  }
}

/* 標語小標籤（小） modifier: --primary */
.page-slogan-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  color: #2ca6e0;
  font-size: calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .page-slogan-label {
    font-size: calc(10.8 * var(--vw-base));
  }
}

/* ========================
  ✨ Text Decoration Utilities
======================== */
/* 字元均分
  1. 加在 .slogan-wrap 上 → 所有子行統一均分：<div class="slogan-wrap text-spread">
  2. 單一元素獨立使用 → <h2 class="page-slogan-heading1 text-spread">
   兩者都需在 style.scss 設定 width */
.text-spread {
  max-width: 100%;
  margin-inline: auto;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}

/* 文字左右對齊*/
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify !important;
    text-justify: inter-ideograph;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* 最後一行對齊，搭配 .text-justify / .text-lg-justify 使用 */
.text-last-start {
  -moz-text-align-last: start;
       text-align-last: start;
}

.text-last-center {
  -moz-text-align-last: center;
       text-align-last: center;
}

.text-last-end {
  -moz-text-align-last: end;
       text-align-last: end;
}

.text-last-justify {
  -moz-text-align-last: justify;
       text-align-last: justify;
}

@media (min-width: 992px) {
  .text-last-lg-start {
    -moz-text-align-last: start;
         text-align-last: start;
  }
}

@media (min-width: 992px) {
  .text-last-lg-center {
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

@media (min-width: 992px) {
  .text-last-lg-end {
    -moz-text-align-last: end;
         text-align-last: end;
  }
}

@media (min-width: 992px) {
  .text-last-lg-justify {
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
}

/* 線條夾文字
  顏色繼承父層，深色背景自動變白：<p class="title-lined text-white">
   用法：<p class="title-lined page-slogan-heading3"> */
.title-lined {
  display: flex;
  align-items: center;
}
.title-lined::before, .title-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.title-lined::before {
  margin-right: 1.5rem;
}
.title-lined::after {
  margin-left: 1.5rem;
}

/* ========================
  🔤 Font System
======================== */
.font-zh-sans {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.font-zh-serif {
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.font-en-sans {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.font-en-serif {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/*
  .txt-wrap 標準結構：
  .txt-wrap
    ├── .txt-title    → 標題群組（label / title / subtitle）
    ├── .txt-body     → 段落內文（<p> 自動套用對齊規則）
    └── small.page-caption
*/
@media (max-width: 991px) {
  .txt-title.text-center .page-en-title,
  .txt-title.text-center .page-zh-title,
  .txt-title.text-center .page-zh-subtitle {
    display: flex;
    justify-content: center;
  }
  .txt-title.text-center .page-en-title span,
  .txt-title.text-center .page-zh-title span,
  .txt-title.text-center .page-zh-subtitle span {
    display: inline-block;
    white-space: nowrap;
  }
}
/* ========================
  🎞 Plugins
======================== */
/* fancybox */
.fancybox-navigation {
  height: 100vh;
}

/* swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #2ca6e0;
}

.swiper-pagination-bullet-active {
  background: #2ca6e0;
}

.swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  background: #2ca6e0;
}

/* ========================
  📐 Section Layout
======================== */
/* --- 高度 ---
  手機 / 平板直向：min-height: 100svh
  桌機橫向（≥1200px）：aspect-ratio: 16/9
  加 .is-fullscreen 可強制所有裝置皆 100svh
*/
section {
  width: 100%;
}

@media (min-width: 992px) {
  .section-screen {
    min-height: unset;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-screen.is-fullscreen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen.is-fullscreen {
    aspect-ratio: unset;
    min-height: 100svh;
  }
}

/* --- 垂直對齊（需搭配高度 class 或自訂高度才有效果） --- */
.section-v-center {
  display: flex;
}
@media (min-width: 992px) {
  .section-v-center {
    align-items: center;
  }
}

.section-v-end {
  display: flex;
}
@media (min-width: 992px) {
  .section-v-end {
    align-items: flex-end;
  }
}

.section-v-between {
  display: flex;
  align-items: stretch;
}
.section-v-between > .container,
.section-v-between > .container-fluid {
  flex: 1 1 auto;
}

/* ========================
  🖼 Image
======================== */
/*
  .img-wrap 支援兩種內部結構：

  舊版（background-image）：
  <div class="img-wrap">
    <div class="img-ratio">
      <div class="img-bg" style="background-image: url(xxx.jpg);"></div>
    </div>
    <div class="img-caption">說明</div>
  </div>

  新版（<img> + aspect-ratio）：
  <div class="img-wrap">
    <img class="img-cover" style="aspect-ratio: 10/7;"
        src="xxx.jpg" alt="..." loading="lazy">
    <div class="img-caption">說明</div>
  </div>
*/
.img-wrap {
  position: relative;
}
.img-wrap a {
  display: block;
}
.img-wrap .img-ratio {
  position: relative;
  width: 100%;
  padding-top: 70%;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-wrap .img-ratio {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}
.img-wrap .img-ratio .img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.img-wrap.img-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 23/5;
  background: linear-gradient(123deg, rgba(0, 0, 0, 0) 32.84%, rgb(0, 0, 0) 100%);
  mask: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
}
.img-wrap.img-gradient .img-caption {
  z-index: 2;
}

.img-cover {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: var(--ratio, 3/2);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio, 3/2));
  }
}

.img-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  text-align: right;
  padding: 3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.678);
  font-size: calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .img-caption {
    font-size: calc(10.8 * var(--vw-base));
  }
}

/* ========================
  🗺 google Map Embed 
======================== */
.map-embed iframe {
  display: block;
  width: 100% !important;
  height: clamp(300px, 50vh, 700px) !important;
  border: none;
}

/* ========================
  🎭 Stage / Layer（分層進場）
======================== */
.stage-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage,
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ========================
  🎬 Video Components
======================== */
.bg-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bg-video-wrap > div {
  position: absolute;
  inset: 0;
}
.bg-video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-ctrl-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 9999;
  pointer-events: auto;
}

.btn-music {
  font-size: 2rem;
  color: #E0DFC6;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1.5vw;
  line-height: 1;
}

.btn-sound {
  display: none;
}

.video-wrap {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
}
.video-wrap > div {
  width: 100%;
  font-size: 0;
  position: relative;
}
.video-wrap > div video {
  display: block;
  width: 100%;
}
.video-wrap .video-controls {
  width: 100%;
}

.youtube-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1680/954;
  border: none;
}

.youtube-thumb {
  overflow: hidden;
  padding: 5% 10%;
}
.youtube-thumb a {
  display: block;
}
.youtube-thumb a .Img .img-ratio {
  padding-top: 56%;
}
.youtube-thumb a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 5rem;
  transition: all 0.5s;
}
.youtube-thumb a:hover i {
  font-size: 6rem;
  transition: all 0.5s;
}

/* ========================
  🧭 Fixed Nav Offset
======================== */
@media (max-width: 991px) {
  body:has(.site-nav) {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }
}

.site-nav {
  padding: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(252, 252, 252, 0.571);
  backdrop-filter: saturate(180%) blur(20px);
  color: #000;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.site-nav .navbar-brand {
  padding-inline: 2%;
  display: flex;
  align-items: center;
}
.site-nav .navbar-brand img {
  height: 2.7rem;
}
.site-nav .navbar-Link {
  display: flex;
}
.site-nav .navbar-Link .btn {
  flex: 1;
  font-size: 1.1rem;
  min-width: 130px;
  color: #333;
  padding: 14px 0;
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.site-nav .navbar-Link .btn:hover, .site-nav .navbar-Link .btn:active {
  border-color: transparent;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6666666667);
}
.site-nav .navbar-Link .btn i {
  display: none;
}
.site-nav .navbar-Link .btn b {
  display: block;
  font-weight: normal;
}
.site-nav .navbar-Link .btn span {
  display: block;
  font-size: 1rem;
}
.site-nav {
  /* Sticky */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s;
  pointer-events: none;
}
.site-nav.Sticky {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
  pointer-events: all;
}
@media (max-width: 991px) {
  .site-nav {
    box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: auto;
  }
  .site-nav .navbar-brand {
    display: none;
  }
  .site-nav .navbar-Link {
    width: 100%;
  }
  .site-nav .navbar-Link .btn {
    min-width: auto;
    font-size: 14px;
    padding: 10px 0;
    padding-bottom: 20px;
  }
  .site-nav .navbar-Link .btn i {
    display: inline-block;
  }
  .site-nav .navbar-Link .btn span {
    display: none;
  }
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background-color: #f6f1eb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.site-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.site-loader__logo {
  width: 240px;
  height: auto;
}

.site-loader__logo path {
  fill: transparent;
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  stroke-width: 1.2;
}

.site-loader__logo path.st0 {
  stroke: #4D4D4D;
  animation: logo-reveal-dark 2.4s ease-in-out forwards;
}

.site-loader__logo path.st1 {
  stroke: #C8C9CA;
  animation: logo-reveal-light 2.4s ease-in-out forwards;
}

@keyframes logo-reveal-dark {
  0% {
    stroke-dashoffset: var(--len, 2000);
    fill: transparent;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  65% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #4D4D4D;
    opacity: 1;
  }
}
@keyframes logo-reveal-light {
  0% {
    stroke-dashoffset: var(--len, 2000);
    fill: transparent;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  65% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #C8C9CA;
    opacity: 1;
  }
}
.site-loader__spinner {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(44, 166, 224, 0.25);
  border-top-color: #2ca6e0;
  border-radius: 50%;
  animation: site-loader-spin 0.7s linear infinite;
  will-change: transform;
}

@keyframes site-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-loader {
    transition: none;
  }
  .site-loader__logo path.st0 {
    animation: none;
    stroke-dashoffset: 0;
    fill: #4D4D4D;
    opacity: 1;
  }
  .site-loader__logo path.st1 {
    animation: none;
    stroke-dashoffset: 0;
    fill: #C8C9CA;
    opacity: 1;
  }
  .site-loader__spinner {
    animation: none;
    will-change: auto;
  }
}
.icon, .icon-cat, .icon-phone {
  --icon-size: 1.35em;
  vertical-align: -0.22em;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  flex: 0 0 auto;
}

.icon-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.icon-phone {
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42a18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E");
}

.icon-cat {
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  --svg: url("data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxZW0nIGhlaWdodD0nMWVtJyB2aWV3Qm94PScwIDAgMjQgMjQnPjxwYXRoIGQ9J00wIDBoMjR2MjRIMHonIGZpbGw9J25vbmUnIC8+PGcgZmlsbD0nbm9uZScgc3Ryb2tlPSdjdXJyZW50Q29sb3InIHN0cm9rZS13aWR0aD0nMS41Jz48cGF0aCBzdHJva2UtbGluZWNhcD0ncm91bmQnIGQ9J00xOS4xIDEwLjY2YzEuMTExIDEuMzE0Ljg4IDIuOTIyLjg4IDQuMzRjMCAzLjkwNi01LjI2NyA1LTcuOTggNXMtNy45OC0xLjA5NC03Ljk4LTVjMC0xLjQxOC0uMjMxLTMuMDI2Ljg4LTQuMzRtMTQuMiAwYy0uMTk1LS4yMy0uNDMtLjQ1LS43MTYtLjY2bS43MTUuNjZjLjcuNDAzLjg4LTEuMTA1Ljg4MS0xLjU5OFY3LjE4OEMxOS45OCA1LjU2MyAxOC44NjMgNSAxNy45MDUgNWMtLjk1NyAwLTIuODczIDEuNTYzLTMuNTExIDEuNTYzYy0uNzY2IDAtLjkxNC0uMTU3LTIuMzk0LS4xNTdzLTEuNjI4LjE1Ny0yLjM5NC4xNTdDOC45NjggNi41NjMgNy4wNTIgNSA2LjA5NSA1UzQuMDIgNS41NjMgNC4wMiA3LjE4OHYxLjg3NWMuMDAyLjQ5Mi4xOCAyIC44OCAxLjU5N20wIDBjLjE5NS0uMjMuNDMtLjQ1LjcxNi0uNjYnIC8+PHBhdGggZD0nTTEyLjgyNiAxNmMwIC4xNzMtLjM2MS4zMTMtLjgwNy4zMTNjLS40NDUgMC0uODA2LS4xNC0uODA2LS4zMTNzLjM2MS0uMzEyLjgwNi0uMzEycy44MDcuMTQuODA3LjMxMlptMi42NzQtMi40MDZjMCAuNDMxLS4yMTcuNzgxLS40ODQuNzgxcy0uNDg0LS4zNS0uNDg0LS43ODFzLjIxNy0uNzgxLjQ4NC0uNzgxcy40ODQuMzUuNDg0Ljc4Wm0tNiAwYzAgLjQzMS0uMjE3Ljc4MS0uNDg0Ljc4MXMtLjQ4NC0uMzUtLjQ4NC0uNzgxcy4yMTctLjc4MS40ODQtLjc4MXMuNDg0LjM1LjQ4NC43OFonIC8+PHBhdGggc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBkPSdNMjIgMTUuNDY5Yy0uNDgzLS4zMTMtMi41OC0xLjA5NC0zLjM4Ny0xLjA5NG0xLjc3NCAzLjU5NGMtLjQ4NC0uMzEzLTEuNjEzLTEuMDk0LTIuNDItMS4wOTRNMiAxNS40NjljLjQ4NC0uMzEzIDIuNTgtMS4wOTQgMy4zODctMS4wOTRtLTEuNzc0IDMuNTk0Yy40ODQtLjMxMyAxLjYxMy0xLjA5NCAyLjQyLTEuMDk0JyAvPjwvZz48L3N2Zz4g");
}

.icon-logo-utmost {
  --logo-height: 1em;
  display: inline-block;
  width: auto;
  height: var(--logo-height);
  aspect-ratio: 253/61.7;
  background-color: currentColor;
  -webkit-mask-image: url("../images/logo-utmost.svg");
  mask-image: url("../images/logo-utmost.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.aerial-bg {
  --aerial-bg: #2285de;
  background-color: var(--aerial-bg);
}

.aerial-anchor {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
.aerial-anchor .aerial-anchor-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 3px 10px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  backdrop-filter: blur(4px);
}
.aerial-anchor::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
  margin: 0 auto;
}
.aerial-anchor::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35), 0 0 14px 4px rgba(255, 255, 255, 0.5);
  margin: 4px auto 0;
}

.aerial-map-wrap {
  position: relative;
  --aerial-h: 80vh;
  --aerial-min-h: 100vh;
}
.aerial-map-wrap::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  padding-top: 20%;
  background: linear-gradient(to bottom, var(--aerial-bg) 0%, transparent 100%);
}
@media (max-width: 991px) {
  .aerial-map-wrap {
    height: var(--aerial-h);
    min-height: var(--aerial-min-h);
    overflow: hidden;
  }
}
.aerial-map-wrap .aerial-txt-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.aerial-map-wrap .aerial-txt-overlay > * {
  pointer-events: auto;
}
.aerial-map-wrap .aerial-txt-overlay .txt-wrap {
  text-align: center;
}
.aerial-map-wrap .aerial-txt-overlay .txt-wrap > small {
  display: block;
  letter-spacing: 0.3em;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .aerial-map-wrap .aerial-map-scroll {
    position: absolute;
    inset: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
  }
  .aerial-map-wrap .aerial-map-scroll:active {
    cursor: grabbing;
  }
  .aerial-map-wrap .aerial-map-scroll::-webkit-scrollbar {
    display: none;
  }
}
.aerial-map-wrap .aerial-map-inner {
  position: relative;
}
@media (min-width: 992px) {
  .aerial-map-wrap .aerial-map-inner img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .aerial-map-wrap .aerial-map-inner {
    display: inline-block;
    height: var(--aerial-h);
    min-height: var(--aerial-min-h);
  }
  .aerial-map-wrap .aerial-map-inner img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
  }
}
.aerial-map-wrap .aerial-hint {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 5;
  animation: aerial-hint-flick 2s ease-in-out infinite alternate;
}
.aerial-map-wrap .aerial-hint--icon {
  left: 50%;
  bottom: 10vw;
  transform: translateX(-50%);
  animation: none;
}

.txt-wrap .aerial-hint--icon {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
}

.aerial-hint {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.aerial-hint--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.aerial-hint--icon .bi {
  display: block;
  animation: aerial-hint-swipe 0.9s ease-in-out infinite alternate;
}
.aerial-hint--icon small {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

@keyframes aerial-hint-flick {
  0% {
    letter-spacing: 0.02em;
  }
  100% {
    letter-spacing: 0.16em;
  }
}
@keyframes aerial-hint-swipe {
  from {
    transform: translateX(-12px);
  }
  to {
    transform: translateX(12px);
  }
}
html.is-draft {
  --draft-line-width: 2px;
  --draft-bootstrap-color: rgba(255, 193, 7, .28);
  --draft-bootstrap-border: rgba(255, 193, 7, .85);
  --draft-content-padding-color: rgba(0, 132, 255, .18);
  --draft-content-padding-border: rgba(0, 132, 255, .75);
  --draft-txt-padding-color: rgba(255, 0, 180, .16);
  --draft-txt-padding-border: rgba(255, 0, 180, .75);
}
@media (min-width: 992px) {
  html.is-draft {
    --draft-line-width: 1px;
  }
}
html.is-draft body {
  position: relative;
}
html.is-draft body::after {
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0% 21.5%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  border: 2px solid blue;
  opacity: 0.2;
}
@media (min-width: 992px) {
  html.is-draft body::after {
    background-position: 0% 0%;
  }
}
html.is-draft body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 32' preserveAspectRatio='none'%3E%3Cg font-family='Arial,sans-serif' font-size='18' font-weight='700' text-anchor='middle' dominant-baseline='middle' fill='red' stroke='white' stroke-width='4' paint-order='stroke'%3E%3Ctext x='50' y='16'%3E1%3C/text%3E%3Ctext x='150' y='16'%3E2%3C/text%3E%3Ctext x='250' y='16'%3E3%3C/text%3E%3Ctext x='350' y='16'%3E4%3C/text%3E%3Ctext x='450' y='16'%3E5%3C/text%3E%3Ctext x='550' y='16'%3E6%3C/text%3E%3Ctext x='650' y='16'%3E7%3C/text%3E%3Ctext x='750' y='16'%3E8%3C/text%3E%3Ctext x='850' y='16'%3E9%3C/text%3E%3Ctext x='950' y='16'%3E10%3C/text%3E%3Ctext x='1050' y='16'%3E11%3C/text%3E%3Ctext x='1150' y='16'%3E12%3C/text%3E%3C/g%3E%3C/svg%3E"), repeating-linear-gradient(90deg, transparent 0, transparent calc(8.3333333333% - var(--draft-line-width)), red calc(8.3333333333% - var(--draft-line-width)), red 8.3333333333%);
  background-repeat: no-repeat, repeat;
  background-size: 100% 32px, auto;
  background-position: center, 0 0;
}
html.is-draft .container {
  border: var(--draft-line-width) solid rgb(0, 26, 255);
}
html.is-draft .container > .row {
  position: relative;
}
html.is-draft .container > .row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  border: var(--draft-line-width) solid rgb(0, 255, 51);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 32' preserveAspectRatio='none'%3E%3Cg font-family='Arial,sans-serif' font-size='18' font-weight='700' text-anchor='middle' dominant-baseline='middle' fill='rgb(0,255,51)' stroke='white' stroke-width='4' paint-order='stroke'%3E%3Ctext x='50' y='16'%3E1%3C/text%3E%3Ctext x='150' y='16'%3E2%3C/text%3E%3Ctext x='250' y='16'%3E3%3C/text%3E%3Ctext x='350' y='16'%3E4%3C/text%3E%3Ctext x='450' y='16'%3E5%3C/text%3E%3Ctext x='550' y='16'%3E6%3C/text%3E%3Ctext x='650' y='16'%3E7%3C/text%3E%3Ctext x='750' y='16'%3E8%3C/text%3E%3Ctext x='850' y='16'%3E9%3C/text%3E%3Ctext x='950' y='16'%3E10%3C/text%3E%3Ctext x='1050' y='16'%3E11%3C/text%3E%3Ctext x='1150' y='16'%3E12%3C/text%3E%3C/g%3E%3C/svg%3E"), linear-gradient(to right, rgba(123, 255, 0, 0.1) 0, rgba(123, 255, 0, 0.1) calc(100% - var(--draft-line-width)), rgb(0, 255, 51) calc(100% - var(--draft-line-width)), rgb(0, 255, 51) 100%);
  background-repeat: no-repeat, repeat;
  background-size: 100% 32px, 8.3333333333% 100%;
  background-position: center, 0 0;
}
html.is-draft .container > .row::after {
  content: "";
  position: absolute;
  inset-block: calc(var(--bs-gutter-y) / -2);
  inset-inline: 0;
  z-index: 998;
  pointer-events: none;
  border-block: 1px dashed var(--draft-bootstrap-border);
}
html.is-draft .container > .row > [class^=col],
html.is-draft .container > .row > [class*=" col"] {
  position: relative;
  outline: 1px dashed var(--draft-bootstrap-border);
  outline-offset: calc(var(--draft-line-width) * -1);
}
html.is-draft .container > .row > [class^=col]::before,
html.is-draft .container > .row > [class*=" col"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background-image: linear-gradient(90deg, var(--draft-bootstrap-color) 0, var(--draft-bootstrap-color) calc(var(--bs-gutter-x) / 2), transparent calc(var(--bs-gutter-x) / 2), transparent calc(100% - var(--bs-gutter-x) / 2), var(--draft-bootstrap-color) calc(100% - var(--bs-gutter-x) / 2), var(--draft-bootstrap-color) 100%);
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0,
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  --draft-content-ps: 0px;
  --draft-content-pe: 0px;
  --draft-txt-ps: 0px;
  --draft-txt-pe: 0px;
  --draft-txt-pt: 0px;
  --draft-txt-pb: 0px;
  outline-offset: calc(var(--draft-line-width) * -1);
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0 {
  outline: 1px dashed var(--draft-content-padding-border);
}
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  outline: 1px dashed var(--draft-txt-padding-border);
}
html.is-draft .content-px {
  --draft-content-ps: var(--content-edge);
  --draft-content-pe: var(--content-edge);
}
html.is-draft .content-ps {
  --draft-content-ps: var(--content-edge);
}
html.is-draft .content-pe {
  --draft-content-pe: var(--content-edge);
}
@media (min-width: 992px) {
  html.is-draft .content-px--mobile-0 {
    --draft-content-ps: var(--content-edge);
    --draft-content-pe: var(--content-edge);
  }
  html.is-draft .content-ps--mobile-0 {
    --draft-content-ps: var(--content-edge);
  }
  html.is-draft .content-pe--mobile-0 {
    --draft-content-pe: var(--content-edge);
  }
  html.is-draft .ps-lg-0 {
    --draft-content-ps: 0px;
    --draft-txt-ps: 0px;
  }
  html.is-draft .pe-lg-0 {
    --draft-content-pe: 0px;
    --draft-txt-pe: 0px;
  }
  html.is-draft .pt-lg-0 {
    --draft-txt-pt: 0px;
  }
  html.is-draft .pb-lg-0 {
    --draft-txt-pb: 0px;
  }
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0 {
  box-shadow: inset var(--draft-content-ps) 0 0 var(--draft-content-padding-color), inset calc(var(--draft-content-pe) * -1) 0 0 var(--draft-content-padding-color);
}
html.is-draft .txt-px {
  --draft-txt-ps: var(--txt-px);
  --draft-txt-pe: var(--txt-px);
}
html.is-draft .txt-py {
  --draft-txt-pt: var(--txt-py);
  --draft-txt-pb: var(--txt-py);
}
html.is-draft .txt-ps {
  --draft-txt-ps: var(--txt-px);
}
html.is-draft .txt-pe {
  --draft-txt-pe: var(--txt-px);
}
html.is-draft .txt-pt {
  --draft-txt-pt: var(--txt-py);
}
html.is-draft .txt-pb {
  --draft-txt-pb: var(--txt-py);
}
@media (min-width: 992px) {
  html.is-draft .txt-lg-px {
    --draft-txt-ps: var(--txt-px);
    --draft-txt-pe: var(--txt-px);
  }
  html.is-draft .txt-lg-py {
    --draft-txt-pt: var(--txt-py);
    --draft-txt-pb: var(--txt-py);
  }
  html.is-draft .txt-lg-ps {
    --draft-txt-ps: var(--txt-px);
  }
  html.is-draft .txt-lg-pe {
    --draft-txt-pe: var(--txt-px);
  }
  html.is-draft .txt-lg-pt {
    --draft-txt-pt: var(--txt-py);
  }
  html.is-draft .txt-lg-pb {
    --draft-txt-pb: var(--txt-py);
  }
}
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  box-shadow: inset var(--draft-txt-ps) 0 0 var(--draft-txt-padding-color), inset calc(var(--draft-txt-pe) * -1) 0 0 var(--draft-txt-padding-color), inset 0 var(--draft-txt-pt) 0 var(--draft-txt-padding-color), inset 0 calc(var(--draft-txt-pb) * -1) 0 var(--draft-txt-padding-color);
}

/* ========================
  🔧 Base
======================== */
*,
*::before,
*::after {
  position: relative;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

footer {
  margin-top: auto;
}

/* ========================
  🎨 Color System
======================== */
:root {
  --design-width: 1920;
  --vw-base: calc(100vw / var(--design-width));
  --color-primary: #2ca6e0;
  --color-primary-hover: #238aba;
  --color-secondary: #bea850;
  --color-secondary-hover: #a68915;
  --color-gray: #888888;
  --color-gray-hover: #656565;
  --bs-primary: #2ca6e0;
  --bs-primary-rgb: 44, 166, 224;
  --bs-secondary: #bea850;
  --bs-secondary-rgb: 190, 168, 80;
  --bs-link-color: #2ca6e0;
  --bs-link-hover-color: #238aba;
  --bs-body-font-size: calc(16 * var(--vw-base));
  --bs-border-radius: calc(6 * var(--vw-base));
  --bs-border-radius-sm: calc(4 * var(--vw-base));
  --bs-border-radius-lg: calc(8 * var(--vw-base));
  --bs-border-radius-xl: calc(12 * var(--vw-base));
  --bs-border-radius-xxl: calc(16 * var(--vw-base));
  --bs-focus-ring-width: calc(4 * var(--vw-base));
}

@media (max-width: 991px) {
  :root {
    --design-width: 610;
    --bs-body-font-size: calc(14.4 * var(--vw-base));
    --bs-border-radius: calc(6 * var(--vw-base));
    --bs-border-radius-sm: calc(4 * var(--vw-base));
    --bs-border-radius-lg: calc(8 * var(--vw-base));
    --bs-border-radius-xl: calc(12 * var(--vw-base));
    --bs-border-radius-xxl: calc(16 * var(--vw-base));
  }
}
.text-gray {
  color: #888888 !important;
}

.bg-gray {
  background-color: #888888 !important;
}

.border-gray {
  border-color: #888888 !important;
}

/* ========================
  🧩 Bootstrap Overrides
  Bootstrap 保留結構與狀態，視覺尺寸接設計稿比例。
======================== */
.row {
  --bs-gutter-x: calc(24 * var(--vw-base));
  --bs-gutter-y: calc(24 * var(--vw-base));
}
@media (max-width: 991px) {
  .row {
    --bs-gutter-x: calc(16 * var(--vw-base));
    --bs-gutter-y: calc(16 * var(--vw-base));
  }
}

.btn {
  --bs-btn-padding-x: calc(32 * var(--vw-base));
  --bs-btn-padding-y: calc(12 * var(--vw-base));
  --bs-btn-font-size: calc(16 * var(--vw-base));
  --bs-btn-border-radius: 0;
  --bs-btn-border-width: 1px;
  --bs-btn-line-height: 1.5;
}
@media (max-width: 991px) {
  .btn {
    --bs-btn-padding-x: calc(24 * var(--vw-base));
    --bs-btn-padding-y: calc(10 * var(--vw-base));
    --bs-btn-font-size: calc(14 * var(--vw-base));
  }
}

.btn-sm {
  --bs-btn-padding-x: calc(16 * var(--vw-base));
  --bs-btn-padding-y: calc(6 * var(--vw-base));
  --bs-btn-font-size: calc(14 * var(--vw-base));
}
@media (max-width: 991px) {
  .btn-sm {
    --bs-btn-padding-x: calc(14 * var(--vw-base));
    --bs-btn-padding-y: calc(6 * var(--vw-base));
    --bs-btn-font-size: calc(12 * var(--vw-base));
  }
}

.btn-lg {
  --bs-btn-padding-x: calc(40 * var(--vw-base));
  --bs-btn-padding-y: calc(16 * var(--vw-base));
  --bs-btn-font-size: calc(20 * var(--vw-base));
}
@media (max-width: 991px) {
  .btn-lg {
    --bs-btn-padding-x: calc(28 * var(--vw-base));
    --bs-btn-padding-y: calc(12 * var(--vw-base));
    --bs-btn-font-size: calc(16 * var(--vw-base));
  }
}

.form-control,
.form-select {
  font-size: calc(16 * var(--vw-base));
  padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  border-radius: 0;
}
@media (max-width: 991px) {
  .form-control,
  .form-select {
    font-size: calc(14 * var(--vw-base));
    padding: calc(10 * var(--vw-base)) calc(14 * var(--vw-base));
  }
}

.form-control-sm,
.form-select-sm {
  font-size: calc(14 * var(--vw-base));
  padding: calc(8 * var(--vw-base)) calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-control-sm,
  .form-select-sm {
    font-size: calc(12 * var(--vw-base));
    padding: calc(7 * var(--vw-base)) calc(10 * var(--vw-base));
  }
}

.form-control-lg,
.form-select-lg {
  font-size: calc(20 * var(--vw-base));
  padding: calc(16 * var(--vw-base)) calc(20 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-control-lg,
  .form-select-lg {
    font-size: calc(16 * var(--vw-base));
    padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  }
}

.input-group-text {
  font-size: calc(16 * var(--vw-base));
  padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  border-radius: 0;
}
@media (max-width: 991px) {
  .input-group-text {
    font-size: calc(14 * var(--vw-base));
    padding: calc(10 * var(--vw-base)) calc(14 * var(--vw-base));
  }
}

.form-check-input {
  width: calc(16 * var(--vw-base));
  height: calc(16 * var(--vw-base));
  margin-top: calc(4 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-check-input {
    width: calc(14 * var(--vw-base));
    height: calc(14 * var(--vw-base));
    margin-top: calc(4 * var(--vw-base));
  }
}

.alert {
  --bs-alert-padding-x: calc(24 * var(--vw-base));
  --bs-alert-padding-y: calc(16 * var(--vw-base));
  --bs-alert-border-radius: calc(6 * var(--vw-base));
}
@media (max-width: 991px) {
  .alert {
    --bs-alert-padding-x: calc(16 * var(--vw-base));
    --bs-alert-padding-y: calc(12 * var(--vw-base));
    --bs-alert-border-radius: calc(6 * var(--vw-base));
  }
}

.card {
  --bs-card-spacer-x: calc(24 * var(--vw-base));
  --bs-card-spacer-y: calc(24 * var(--vw-base));
  --bs-card-title-spacer-y: calc(8 * var(--vw-base));
  --bs-card-border-radius: calc(8 * var(--vw-base));
  --bs-card-inner-border-radius: calc(calc(8 * var(--vw-base)) - var(--bs-card-border-width));
}
@media (max-width: 991px) {
  .card {
    --bs-card-spacer-x: calc(16 * var(--vw-base));
    --bs-card-spacer-y: calc(16 * var(--vw-base));
    --bs-card-title-spacer-y: calc(8 * var(--vw-base));
    --bs-card-border-radius: calc(8 * var(--vw-base));
    --bs-card-inner-border-radius: calc(calc(8 * var(--vw-base)) - var(--bs-card-border-width));
  }
}

.modal {
  --bs-modal-padding: calc(24 * var(--vw-base));
  --bs-modal-margin: calc(24 * var(--vw-base));
  --bs-modal-border-radius: calc(8 * var(--vw-base));
  --bs-modal-header-padding-x: calc(24 * var(--vw-base));
  --bs-modal-header-padding-y: calc(16 * var(--vw-base));
  --bs-modal-footer-gap: calc(8 * var(--vw-base));
}
@media (max-width: 991px) {
  .modal {
    --bs-modal-padding: calc(16 * var(--vw-base));
    --bs-modal-margin: calc(16 * var(--vw-base));
    --bs-modal-border-radius: calc(8 * var(--vw-base));
    --bs-modal-header-padding-x: calc(16 * var(--vw-base));
    --bs-modal-header-padding-y: calc(12 * var(--vw-base));
    --bs-modal-footer-gap: calc(8 * var(--vw-base));
  }
}

.dropdown-menu {
  --bs-dropdown-font-size: calc(16 * var(--vw-base));
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: calc(8 * var(--vw-base));
  --bs-dropdown-item-padding-x: calc(16 * var(--vw-base));
  --bs-dropdown-item-padding-y: calc(8 * var(--vw-base));
  --bs-dropdown-border-radius: calc(6 * var(--vw-base));
}
@media (max-width: 991px) {
  .dropdown-menu {
    --bs-dropdown-font-size: calc(14 * var(--vw-base));
    --bs-dropdown-padding-y: calc(6 * var(--vw-base));
    --bs-dropdown-item-padding-x: calc(14 * var(--vw-base));
    --bs-dropdown-item-padding-y: calc(7 * var(--vw-base));
    --bs-dropdown-border-radius: calc(6 * var(--vw-base));
  }
}

.nav-link {
  --bs-nav-link-font-size: calc(16 * var(--vw-base));
  --bs-nav-link-padding-x: calc(16 * var(--vw-base));
  --bs-nav-link-padding-y: calc(8 * var(--vw-base));
}
@media (max-width: 991px) {
  .nav-link {
    --bs-nav-link-font-size: calc(14 * var(--vw-base));
    --bs-nav-link-padding-x: calc(12 * var(--vw-base));
    --bs-nav-link-padding-y: calc(8 * var(--vw-base));
  }
}

.form-check-input:checked {
  background-color: #2ca6e0 !important;
  border-color: #2ca6e0 !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2ca6e0;
  --bs-btn-border-color: #2ca6e0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #238aba;
  --bs-btn-hover-border-color: #238aba;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #238aba;
  --bs-btn-active-border-color:#238aba;
  --bs-btn-focus-shadow-rgb: 44, 166, 224;
}

.btn-outline-primary {
  --bs-btn-color: #2ca6e0;
  --bs-btn-border-color: #2ca6e0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2ca6e0;
  --bs-btn-hover-border-color: #2ca6e0;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #238aba;
  --bs-btn-active-border-color:#238aba;
  --bs-btn-focus-shadow-rgb: 44, 166, 224;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a68915;
  --bs-btn-hover-border-color: #a68915;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-outline-secondary {
  --bs-btn-color: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bea850;
  --bs-btn-hover-border-color: #bea850;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #656565;
  --bs-btn-hover-border-color: #656565;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

.btn-outline-gray {
  --bs-btn-color: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #888888;
  --bs-btn-hover-border-color: #888888;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

/* ========================
  🎭 form
======================== */
.form-control {
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.596);
}
.form-control:focus {
  color: #333333;
  background-color: #fff;
  border-color: #2ca6e0;
  outline: 0;
  box-shadow: 0 0 10px 3px rgba(44, 166, 224, 0.44);
}

/* ========================
  🔗 Link / Button
======================== */
a,
.btn {
  text-decoration: none;
  border-radius: 0;
}
a:hover,
.btn:hover {
  text-decoration: none;
}

a:focus,
button:focus {
  outline: none !important;
}

p {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */