@charset "utf-8";

/* =========================================
           0. RESET & GLOBAL UTILS
           ========================================= */
* {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', sans-serif;
  box-sizing: border-box;
}

:root {
  --color-primary: #10488e;
  --color-primary-dark: #123e80;
  --color-accent: #73bb2e;
  --color-navy: #1a1f3c;
  --color-dark: #1a1f3c;
  --color-text-body: #475569;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  --color-border: #e2e8f0;
  --max-width: 1280px;
  --section-spacing: 140px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 40px -10px rgba(35, 48, 117, 0.08);
  --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

body {
  /* [MERGED by cleanup 2026-04-25] 구 L5802 body 블록(min/max-width, margin, padding)을 여기로 통합 */
  min-width: 100%;
  max-width: 1760px;
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.6;
  color: #334155;
  word-break: keep-all;
  overflow-x: hidden;
}

li,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

/* =========================================
   [MERGED] layout.css contents
   ========================================= */
#contents {
  width: 100%;
  min-height: 750px;
  margin: 0 auto;
}

#contents .page {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

#contents .contents {
  width: 1200px;
  min-height: 750px;
  margin: 0 auto;
}

#visual {
  position: relative;
  width: 100%;
  height: 980px;
  letter-spacing: -1px;
}

#visual .swiper-container {
  width: 100%;
  height: 100%;
}

#visual .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

#visual .swiper-slide::before {
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  pointer-events: none;
  inset: 0;
}

#visual .wrap {
  position: relative;
  z-index: 10;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  letter-spacing: -1px;
}

#visual .wraps {
  position: absolute;
  top: 295px;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  opacity: 0;
  transform: translateY(30px);
}

#visual .swiper-slide-active .wraps {
  opacity: 1;
  transform: translateY(0);
}

#visual .wraps h1 {
  padding: 0 0 25px 0;
  font-size: 52px;
  letter-spacing: -1px;
}

#visual .wraps h2 {
  padding: 0;
  font-family: 's-core-dream-regular';
  font-size: 52px;
  letter-spacing: -2px;
}

#visual .wraps h2 span {
  font-family: 's-core-dream-bold';
  color: #20ffe8;
}

#visual .wraps h2 span b {
  color: #0ffee7;
}

#visual .wraps h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 42px;
  color: #fff;
  margin-top: 30px;
}

#visual .wraps h4 {
  margin-top: 50px;
}

#board {
  width: 100%;
  height: auto;
  padding: 170px 0;
  background: url("/img/banner/board_bg.jpg") no-repeat 50% 0;
  box-sizing: border-box;
}

#board .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}

.reservation-rolling {
  display: flex;
  flex-direction: column;
  width: 705px;
  height: 402px;
  padding: 25px 40px;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  background: #fff;
  box-sizing: border-box;
}

.rolling-title {
  margin-bottom: 21px;
}

.rolling-title h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 31px;
  color: #111;
  letter-spacing: -1px;
}

.rolling-list-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#reservationList {
  width: 100%;
  transition: margin-top 0.5s ease-in-out;
}

#reservationList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  border-bottom: 1px solid #f5f5f5;
}

#reservationList li:last-child {
  border-bottom: none;
}

.r-cat {
  width: 85px;
  padding: 5px 0;
  border-radius: 20px;
  background: #f0f0f0;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-align: center;
  letter-spacing: -0.5px;
}

.r-txt {
  flex: 1;
  padding: 0 15px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: left;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.r-loc {
  width: 120px;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  text-align: center;
}

.r-state {
  width: 80px;
  padding: 6px 0;
  border-radius: 20px;
  background: #1968d9;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.5px;
}

#customer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 463px;
  height: 402px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(26, 80, 161, 0.2);
  background: linear-gradient(135deg, #1a50a1 0, #0d2e63 100%);
  text-align: left;
  letter-spacing: -0.5px;
  box-sizing: border-box;
}

#customer .cs-top h1 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  margin-top: 0;
}

#customer .cs-top h2 {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -1px;
}

#customer .cs-top p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

#customer .cs-bottom {
  margin-top: 35px;
}

#customer .cs-sns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#customer .cs-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: transform 0.2s;
}

#customer .cs-sns a:hover {
  transform: translateY(-3px);
}

#customer .cs-sns a i {
  font-size: 20px;
  margin-right: 8px;
}

#customer .cs-sns .kakao-btn {
  background: #fae100;
  color: #3a2929;
}

#customer .cs-sns .blog-btn {
  background: #03c75a;
  color: #fff;
}

#customer .email {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

#customer .email span {
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 800;
  margin-right: 8px;
}

#online {
  position: relative;
  width: 100%;
  height: auto;
  padding: 115px 0;
  background: url("/img/banner/online_bg.jpg") no-repeat 50% 0;
  background-size: cover;
  text-align: center;
  box-sizing: border-box;
}

#online::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: '';
}

#online .online-inner {
  position: relative;
  z-index: 2;
  width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

#online > h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

#online > h2 {
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  margin-bottom: 40px;
}

.form-container {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  padding-top: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 20px 24px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

.form-row textarea {
  height: 70px;
  resize: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #999;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #0056b3;
}

.form-agreement {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

.form-agreement label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-agreement input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  margin-right: 10px;
  accent-color: #0056b3;
}

.form-agreement .chk-text {
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-submit {
  width: 100%;
  text-align: center;
}

.form-submit .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 40px;
  border: none;
  border-radius: 12px;
  background: #0056b3;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: background 0.3s;
  cursor: pointer;
}

.form-submit .btn-submit:hover {
  background: #004494;
}

@media (max-width: 1200px) {

  #board .wrap,
  #chart ul,
  #gallery,
  #visual .wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  #visual .wraps {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

@media (max-width: 1024px) {
  #visual {
    height: 750px;
  }

  #visual .wraps {
    top: 250px;
  }

  #visual .wraps h1 {
    font-size: 42px;
    padding-bottom: 15px;
  }

  #visual .wraps h1 img {
    width: 80%;
    margin: 0 auto;
  }

  #visual .wraps h2 {
    font-size: 38px;
  }

  #visual .wraps h3 {
    font-size: 22px;
    line-height: 32px;
  }

  #chart {
    height: auto;
    padding-bottom: 80px;
  }

  #chart ul {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
  }

  #chart ul li {
    width: 45%;
    margin-top: 20px;
  }

  #chart ul.count-premium-grid li {
    flex-direction: column;
    width: calc(50% - 15px);
    padding: 30px 20px;
    text-align: center;
  }

  #chart ul.count-premium-grid .count-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  #chart ul.count-premium-grid .count-info {
    text-align: center;
  }

  #md {
    padding: 60px 0;
  }

  #md ul {
    width: 80%;
    padding: 40px 20px;
  }

  #board {
    padding: 80px 0;
  }

  #board .wrap {
    gap: 40px;
    flex-direction: column;
  }

  #customer,
  .reservation-rolling {
    width: 100%;
    height: auto;
    padding: 30px;
    box-sizing: border-box;
  }

  #online .online-inner {
    width: 100%;
  }

  .form-container {
    height: 550px;
  }

  .ch-work-grid.five-grid li {
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .form-row {
    gap: 15px;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .form-row input,
  .form-row textarea {
    padding: 15px;
    font-size: 15px;
  }

  #online h1 {
    font-size: 30px;
  }

  #online h2 {
    font-size: 18px;
  }

  #visual {
    height: 600px;
  }

  #visual .wraps {
    top: 160px;
  }

  #visual .wraps h1 {
    padding-bottom: 10px;
  }

  #visual .wraps h1 img {
    display: none;
  }

  #visual .wraps h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  #visual .wraps h3 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }

  #visual .wraps h4 {
    margin-top: 30px;
  }

  #visual .wraps h4 img {
    width: 180px;
    margin: 0 auto;
  }

  #chart {
    padding-top: 60px;
  }

  #chart>h2 {
    padding: 10px 20px;
    font-size: 32px;
    line-height: 1.2;
    word-break: keep-all;
  }

  #chart>h3 {
    padding: 0 20px;
    font-size: 16px;
    word-break: keep-all;
  }

  #chart ul li {
    width: 100%;
    margin-top: 20px;
  }

  #chart ul li>h2 {
    font-size: 46px;
  }

  #chart ul.count-premium-grid li {
    flex-direction: row;
    width: 100%;
    text-align: left;
  }

  #chart ul.count-premium-grid .count-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }

  #chart ul.count-premium-grid .count-info {
    text-align: left;
  }

  #md ul {
    width: 92%;
    padding: 30px 15px;
  }

  #md ul>h1 {
    font-size: 20px;
    word-break: keep-all;
  }

  #md ul>h2 {
    width: 100%;
    font-size: 28px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  #md ul li {
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
  }

  #md ul li i {
    font-size: 22px;
    margin-top: 2px;
  }

  #md ul li h1 {
    gap: 4px;
    font-size: 20px;
  }

  #md ul li h1 span {
    font-size: 15px;
  }

  #gallery {
    height: auto;
  }

  #gallery>.idx-gallery-head {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  #gallery>.idx-gallery-head h1 {
    font-size: 24px;
  }

  #gallery>.idx-gallery-head h1 span {
    font-size: 13px;
    margin-bottom: 4px;
  }

  #board {
    padding: 50px 0;
  }

  #customer,
  .reservation-rolling {
    padding: 20px;
  }

  #customer .cs-top h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-top: 5px;
  }

  #customer .cs-top p {
    font-size: 14px;
    margin-top: 10px;
  }

  #customer .cs-bottom {
    margin-top: 25px;
  }

  #customer .email {
    display: block;
    font-size: 14px;
    word-break: break-all;
    margin-top: 10px;
  }

  #online h1 {
    font-size: 26px;
    line-height: 1.3;
    word-break: keep-all;
  }

  #online h2 {
    font-size: 15px;
    line-height: 1.4;
    word-break: keep-all;
    margin-bottom: 25px;
  }

  /* 모바일 실시간 예약현황 글자 겹침 방지 최적화 */
  .r-loc {
    display: none;
  }

  .r-cat {
    width: 75px;
    font-size: 13px;
  }

  .r-state {
    width: 70px;
    font-size: 13px;
  }

  .r-txt {
    padding: 0 10px;
    font-size: 14px;
  }

  .ch-work-grid.five-grid li {
    width: 100%;
  }
}

/* ========================================= */

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  /* [MERGED by cleanup 2026-04-25] 구 하단 button 블록의 outline:none 병합 */
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* P Tag Reset (To use as div alternative if needed, but per guide mainly div/span used) */
p {
  margin: 0;
  padding: 0;
}

.inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Line Break Utility */
.pc_br {
  display: inline;
}

.m_br {
  display: none;
}

@media (max-width: 1024px) {
  .pc_br {
    display: none;
  }

  .m_br {
    display: inline;
  }
}

/* Animation */
.fade-up {
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Unified Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tag-sm {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 100px;
  background: rgba(26, 80, 161, 0.1);
  font-size: 18px;
  font-weight: 700;
  color: #00d2ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header .tag-sm.blue {
  background: rgba(26, 80, 161, 0.1);
  color: #1a50a1;
}

.section-header .tag-sm.white {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-header .title_main {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section-header .desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #64748b;
}

@media (max-width: 768px) {
  .section-header .title_main {
    font-size: 24px;
    line-height: 1.4;
  }
}

/* =========================================
           2. 헤더 (Header)
           ========================================= */


.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 250px;
  z-index: 999999;
  background: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-wrap.scrolled {
  height: 80px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.98);
}

/* GNB 호버 시 헤더 배경 전환 */
.header-wrap.menu-hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom-color: transparent;
}

.header-wrap.menu-hover .gnb-pc>li>a {
  color: #222;
}

.header-wrap.menu-hover .gnb-pc>li:hover>a {
  color: #17489d;
}

@media (max-width: 1224px) {
  .header-wrap {
    height: 70px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header-wrap.scrolled {
    height: 70px;
  }
}

.header-logo {
  width: auto;
  height: 50px;
}

.header-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* GNB PC */
.gnb-pc {
  display: flex;
  gap: 40px;
  height: 100%;
}

.gnb-pc>li {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.gnb-pc>li>a {
  padding: 10px 0;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}

.header-wrap.scrolled .gnb-pc>li>a {
  color: #222;
}

.gnb-pc>li:hover>a {
  color: #17489d;
}

/* Mega Menu Background Panel */
.mega-menu-bg {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.98);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;

}

.header-wrap:hover .mega-menu-bg,
.mega-menu-bg.active {
  height: 270px;
}

/* Mega Menu Submenu Layout */
.gnb-pc .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  min-width: 160px;
  visibility: hidden;
  padding: 25px 0 15px;
  background: transparent;
  text-align: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  transform: translateX(-50%);
  opacity: 0;
}

/* Show ALL submenus when Mega Menu is active (hover on header) */
.header-wrap:hover .gnb-pc .submenu {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}

.gnb-pc .submenu li a {
  display: block;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 400;
  color: #1d1d1d;
  transition: all 0.2s;
}

.gnb-pc .submenu li a:hover {
  background: transparent;
  color: #17489d;
}

@media (max-width: 1024px) {
  .gnb-pc {
    display: none;
  }

  .mega-menu-bg {
    display: none !important;
  }
}

/* Header Util Btns */
.header-util {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-consult {
  padding: 10px 24px;
  border-radius: 30px;
  background: #17489d;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: background 0.3s;
}

.btn-consult:hover {
  background: #123e80;
}

@media (max-width: 1024px) {
  .btn-consult {
    display: none;
  }
}

.btn-mo-open {
  display: none;
  font-size: 28px;
  color: #222;
}

@media (max-width: 1024px) {
  .btn-mo-open {
    display: block;
    color: #fff;
    /* White on transparent background */
  }

  .header-wrap.scrolled .btn-mo-open {
    color: #222;
    /* Black on white sticky header */
  }
}

/* Mobile Nav (Full Screen Dark Theme) */
.gnb-mo-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index:999999;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background: #0f172a;
  /* Dark Navy Background */
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
}

.gnb-mo-wrap.active {
  visibility: visible;
  opacity: 1;
}

.gnb-mo-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 30px 24px 80px;
  background: transparent;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

}

.mo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.mo-header h2 img {
  height: 40px;
  filter: brightness(0) invert(1);
  /* Ensure logo is white */
}

.btn-mo-close {
  padding: 10px;
  font-size: 32px;
  color: #fff;
}

.gnb-mo-list {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.gnb-mo-list>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gnb-mo-list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.gnb-mo-list>li>a i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}

.gnb-mo-list>li.on>a i {
  color: #fff;
  /* Changed from active to on based on header.js */
  transform: rotate(180deg);
}

.gnb-mo-sub {
  display: none;
  padding: 5px 0 25px 15px;
}

.gnb-mo-sub li a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.gnb-mo-sub li a:hover {
  color: #fff;
}

.gnb-mo-list>li.on .gnb-mo-sub {
  display: block;
  animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
           3. HERO SECTION (Dynamic)
           ========================================= */
/* 1. HERO SECTION */
.hero-sec {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-pagination {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}

.hero-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-bullet.active {
  width: 40px;
  border-radius: 6px;
  background: #fff;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  animation: moveBg 10s infinite alternate;
  transition: opacity 1.2s ease-in-out;
  opacity: 0;
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
}

/* Hero Background Images */
.hero-slide.slide-1 {
  background-image: url("/img/main_slide/m1.jpg");
  background-position: 50% 20%;
}

.hero-slide.slide-2 {
  background-image: url("/img/main_slide/m2.jpg");
  background-position: 50% 20%;
}

.hero-slide.slide-3 {
  background-image: url("/img/main_slide/m3.jpg");
  background-position: 50% 20%;
}

.hero-slide.slide-4 {
  background-image: url("/img/main_slide/m4.jpg");
  background-position: 50% 20%;
}

/* Mobile Hero Background Images Override */
@media (max-width: 768px) {
  .hero-slide.slide-1 {
    background-image: url("/img/main_slide/mm1.jpg");
  }

  .hero-slide.slide-2 {
    background-image: url("/img/main_slide/mm2.jpg");
  }

  .hero-slide.slide-3 {
    background-image: url("/img/main_slide/mm3.jpg");
  }

  .hero-slide.slide-4 {
    background-image: url("/img/main_slide/mm4.jpg");
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
}

@keyframes moveBg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: left;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.ht-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #32bff9;
  text-align: left;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: 0.8s ease-out;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-txt.active .ht-meta {
  opacity: 1;
  transform: translateY(0);
}

.hero-txt {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}

.hero-title.ht-main {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
  transition: 0.8s 0.15s ease-out;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-txt.active .hero-title.ht-main {
  opacity: 1;
  transform: translateY(0);
}

.ht-bottom {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.8s 0.3s ease-out;
  border-left: none;
  padding-left: 0;
  opacity: 0;
  transform: translateY(30px);
}

.hero-txt.active .ht-bottom {
  opacity: 1;
  transform: translateY(0);
}

.hero-desc {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-btn {
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .hero-title.ht-main {
    font-size: 46px;
    word-break: keep-all;
  }

  .ht-meta {
    font-size: 18px;
  }

  .ht-bottom {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    top: 45%;
    padding: 0 20px;
  }

  .hero-title.ht-main {
    font-size: 32px;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -1px;
    word-break: keep-all;
    margin-bottom: 20px;
  }

  .ht-meta {
    justify-content: flex-start;
    font-size: 15px;
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    word-break: keep-all;
  }

  .ht-bottom {
    gap: 15px;
    align-items: flex-start;
  }

  .hero-btn a {
    padding: 10px 22px;
    font-size: 14px;
  }

  .hero-pagination {
    bottom: 25px;
  }
}

.hero-btn a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-btn a i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.hero-btn a:hover {
  background: #fff;
  color: #1180c3;
  border-color: #fff;
}

.hero-btn a:hover i {
  transform: translateX(5px);
}

/* Enhanced Quote Form */
.quote-form {
  display: inline-flex;
  gap: 10px;
  align-items: flex-end;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.q-field {
  text-align: left;
}

.q-label {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  padding-left: 5px;
}

.q-input,
.q-select {
  width: 180px;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.q-input:focus,
.q-select:focus {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--color-primary);
}

.btn-submit {
  height: 50px;
  padding: 0 35px;
  border-radius: 8px;
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #123e80;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 0;
    margin-top: 0;
  }

  .hero-txt {
    width: 100%;
    min-height: auto;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 18px;
  }

  /* Show in single line or allow wrap */
  .hero-btn a {
    font-size: 14px;
  }

  .quote-form {
    align-items: stretch;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
  }

  .q-input,
  .q-select {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 28px;
    word-break: keep-all;
    /* Prevent awkward breaks */
  }

  .hero-desc {
    font-size: 16px;
    word-break: keep-all;
    margin-bottom: 30px;
  }

  .quote-form {
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
  }
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/* 타이포그래피 */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .sub-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a50a1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header .main-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 16px;
  /* Reduced from 20px */
}

.section-header .desc {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 1024px) {
  .section-header .main-title {
    font-size: 32px;
  }

  .section-header .desc {
    padding: 0 20px;
    /* Add padding for better reading */
    font-size: 18px;
    word-break: keep-all;
  }
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 40px;
  }

  .section-header .main-title {
    font-size: 26px;
  }

  .section-header .desc {
    font-size: 18px;
  }
}

/* =========================================
           3. WHY US & SERVICES (Standard)
           ========================================= */
.srv-sec,
.why-sec {
  padding: var(--section-spacing) 0;
}

.why-sec {
  position: relative;
  padding: var(--section-spacing) 0;
  overflow: hidden;
  background: url('/img/why_bg.png') no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}

.why-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: '';
}

.why-sec .inner {
  position: relative;
  z-index: 1;
}

/* Why Section Header Overrides */
.why-sec .section-header .tag-sm {
  background: rgba(255, 255, 255, 0.1);
}

.why-sec .section-header .title_main {
  color: #fff;
}

.why-sec .section-header .desc {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transition: 0.4s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.why-card:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(0, 64, 155, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: rgba(0, 64, 155, 0.2);
  margin-bottom: 24px;
}

.why-icon i {
  font-size: 38px;
  color: #fff;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.srv-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.srv-card {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.srv-bg {
  position: absolute;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s;
  inset: 0;
}

.srv-overlay {
  position: absolute;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  inset: 0;
}

.srv-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 40px 30px;
  color: #fff;
}

.srv-icon {
  display: block;
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.srv-tit {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.srv-desc {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.srv-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.srv-card:hover .srv-bg {
  transform: scale(1.1);
}

@media (max-width: 1024px) {

  .srv-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .srv-grid,
  .why-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .srv-card,
  .why-card {
    height: auto;
    min-height: 300px;
  }
}

/* =========================================
           3. SERVICES SECTION (.srv-sec)
           ========================================= */
.srv-sec {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 0;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 1024px) {
  .srv-sec {
    padding: 100px 24px;
  }
}

@media (max-width: 768px) {
  .srv-sec {
    padding: 80px 24px;
  }
}

.srv-sec .head-area {
  text-align: center;
  margin-bottom: 50px;
  /* Reduced from 60px */
}

.srv-sec .tag-sm {
  display: inline-block;
  padding: 6px 26px;
  border-radius: 100px;
  background: rgba(14, 165, 233, 0.1);
  font-size: 18px;
  font-weight: 700;
  color: #0ea5e9;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.srv-sec .tag-sm.blue {
  background: rgba(26, 80, 161, 0.1);
  color: #1a50a1;
}

.srv-sec .title_main {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  /* Reduced from 20px */
}

@media (max-width: 1024px) {
  .srv-sec .title_main {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .srv-sec .title_main {
    font-size: 24px;
  }
}

.srv-sec .desc-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  /* 본문 기준 */
  color: #64748b;
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
  .srv-sec .desc-sub {
    font-size: 18px;
  }
}

/* Grid */
.srv-sec .grid-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .srv-sec .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .srv-sec .grid-wrap {
    grid-template-columns: 1fr;
  }
}

.srv-sec .card-item {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

/* Background Images via Classes */
.srv-sec .bg-1 {
  background: url('/img/banner_01.png') no-repeat 50% 50%;
  background-size: cover;
}

.srv-sec .bg-2 {
  background: url('/img/banner_02.png') no-repeat 50% 50%;
  background-size: cover;
}

.srv-sec .bg-3 {
  background: url('/img/banner_03.png') no-repeat 50% 50%;
  background-size: cover;
}

.srv-sec .bg-4 {
  background: url('/img/banner_04.png') no-repeat 50% 50%;
  background-size: cover;
}

.srv-sec .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}

.srv-sec .card-item:hover .card-bg {
  transform: scale(1.1);
}

.srv-sec .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 90%);
  transition: 0.4s;
}

.srv-sec .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 40px 30px;
  color: #fff;
  transition: 0.4s;
  transform: translateY(0);
}

.srv-sec .card-item:hover .txt-box {
  transform: translateY(-10px);
}

.srv-sec .icon-lg {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.srv-sec .card-tit {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .srv-sec .card-tit {
    font-size: 18px;
  }

  .srv-sec .card-item {
    height: 300px;
  }
}

.srv-sec .card-desc {
  max-height: 100px;
  /* Visible by default */
  overflow: hidden;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.4s;
  opacity: 1;
  /* Visible by default */
  margin-bottom: 10px;
}

.srv-sec .card-item:hover .card-desc {
  /* Hover state remains same or slightly enhanced */
  opacity: 1;
}

.srv-sec .link-more {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #38bdf8;
  transition: 0.4s;
  margin-top: 20px;
  opacity: 1;
  /* Visible by default */
  transform: translateY(0);
  /* Visible by default */
}

.srv-sec .card-item:hover .link-more {
  opacity: 1;
  transform: translateY(0);
}

.tech-sec {
  padding: var(--section-spacing) 0;
  background: var(--color-bg-light);
}

.tech-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.tech-card {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  height: 300px;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background: #0f172a;
  transition: 0.3s;
}

.tech-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-8px);
}

.tech-bg {
  position: absolute;
  background-position: center;
  background-size: cover;
  transition: 0.5s;
  inset: 0;
  opacity: 0.9;
}

.tech-card:hover .tech-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.tech-bg-1 {
  background-image: url('/img/icon_01.png');
}

.tech-bg-2 {
  background-image: url('/img/icon_02.jpg');
}

.tech-bg-3 {
  background-image: url('/img/icon_03.png');
}

.tech-bg-4 {
  background-image: url('/img/icon_04.png');
}

.tech-overlay {
  position: absolute;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.1) 100%);
  inset: 0;
}

.tech-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.tech-tag {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #00d2ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.tech-tit {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.tech-desc {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.tech-icon-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  color: #fff;
  backdrop-filter: blur(5px);
}

@media (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           5. GALLERY
           ========================================= */
.gal-sec {
  padding: var(--section-spacing) 0;
  overflow: hidden;
  background: #fff;
}

.marquee-wrap {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 20px 0;
  animation: scrollLeft 40s linear infinite;
}

.marquee-wrap:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
    /* 1/3 of total width (one set) */
  }
}

.gal-item {
  width: 400px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: #fff;
}

.gal-img {
  height: 240px;
  overflow: hidden;
}

.gal-img img {
  transition: 0.5s;
}

.gal-item:hover .gal-img img {
  transform: scale(1.1);
}

.gal-info {
  padding: 24px;
}

.gal-cat {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gal-tit {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.gal-loc {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 18px;
  color: #94a3b8;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .gal-item {
    width: 300px;
  }
}

/* =========================================
           6. LIVE BOOKING STATUS (New Design: Professional Schedule)
           ========================================= */
.live-sec {
  padding: var(--section-spacing) 0;
  background: #f8fafc;
}

/* New Style: Clean White Board, not Dark Command Center */
/* New 2-Col Layout for Live Section */
.live-content-wrap {
  display: flex;
  gap: 30px;
  flex-direction: column;
  max-width: 1200px;
  /* 전체 너비를 줄여서 가운데로 집중 */
  margin: 0 auto;
}

.live-links {
  display: flex;
  gap: 15px;
  flex-direction: row;
}

.quick-link-card {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: 0.3s;
}

.quick-link-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(10px);
  border-color: var(--color-primary);
}

.quick-link-card .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f9ff;
  font-size: 24px;
  color: var(--color-primary);
  margin-right: 20px;
}

.quick-link-card .ql-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.quick-link-card .ql-text p {
  font-size: 18px;
  color: #64748b;
}

.quick-link-card .arrow {
  font-size: 18px;
  color: #cbd5e1;
  margin-left: auto;
}

/* Booking Board Adjustments */
.booking-board {
  height: 100%;
  margin: 0;
  padding: 60px 90px;
  /* 기존 40px 대신 좌우 여백을 줄이고 상하 좌우 균형을 맞춥니다 */
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: #fff;
  box-sizing: border-box;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 0 solid #f1f5f9;
}

.booking-title {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  /* Bolder for emphasis */
  color: #1a1f3c;
  /* Darker navy for contrast */
  letter-spacing: -0.02em;
}

.booking-title span {
  position: relative;
  z-index: 1;
}

/* Add a subtle highlight behind the title text */
.booking-title span::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  /* Theme blue with transparency */
  z-index: -1;
  width: 100%;
  height: 10px;
  border-radius: 2px;
  background: rgba(26, 80, 161, 0.1);
  content: '';
}

.booking-info {
  font-size: 18px;
  color: #64748b;
}

.list-container {
  position: relative;
  height: 350px;
  /* Add padding to top and bottom to prevent cropping of extreme items */
  padding: 10px 0;
  overflow: hidden;
  /* Use a mask to soften top/bottom edges (optional but recommended for rolling lists) */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.list-track {
  position: relative;
  /* Ensure no margin/padding interference on track itself */
  margin: 0;
  padding: 0;
}

.list-row {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  transition: 0.2s;
  border-bottom: 1px solid #f1f5f9;
}

.list-row:hover {
  background: #f8fafc;
}

.bk-date {
  display: none;
  /* Hide Date Column */
}

.bk-region {
  width: 18%;
  font-size: 17px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

.bk-service {
  width: 42%;
  font-size: 17px;
  color: #475569;
  word-break: keep-all;
  padding-right: 15px;
}

.bk-user {
  width: 20%;
  font-size: 17px;
  color: #64748b;
  text-align: center;
  white-space: nowrap;
}

.bk-status {
  display: flex;
  justify-content: flex-end;
  width: 20%;
}

.status-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 6px 0;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
}

.status-badge.confirmed {
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #2563eb;
}

@media (max-width: 1024px) {
  .live-content-wrap {
    grid-template-columns: 1fr;
  }

  .live-links {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .quick-link-card {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .live-links {
    flex-direction: column;
  }

  .booking-title {
    font-size: 18px;
  }

  .bk-region {
    font-size: 18px;
  }

  .bk-service {
    font-size: 18px;
  }
}

/* 예약확정 */
.status-badge.progress {
  border: 1px solid #d1fae5;
  background: #ecfdf5;
  color: #059669;
}

/* 작업중 */
.status-badge.done {
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  color: #475569;
}

/* 완료 */

@media (max-width: 768px) {
  .booking-board {
    padding: 15px;
  }

  .booking-header {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .bk-date {
    display: none;
  }

  /* Optimized Mobile Layout */
  .list-row {
    display: grid;
    align-items: center;
    padding: 16px;
    grid-template-columns: 1fr auto;
    grid-template-areas: "region status""service status""user status";
    row-gap: 6px;
    border-bottom: 1px solid #f1f5f9;
  }

  .bk-region {
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    grid-area: region;
  }

  .bk-service {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    word-break: keep-all;
    grid-area: service;
    padding-right: 0;
  }

  .bk-user {
    display: block;
    width: 100%;
    font-size: 13px;
    color: #94a3b8;
    text-align: left;
    grid-area: user;
  }

  .bk-status {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    grid-area: status;
  }

  .status-badge {
    width: 85px;
    padding: 8px 0;
    font-size: 14px;
  }
}

/* =========================================
           8. CONTACT & FOOTER
           ========================================= */
.contact-sec {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: url('/img/online_bg.jpg') no-repeat center/cover;
  background-attachment: fixed;
  /* Parallax effect */
}

.contact-sec::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  /* Dark layout */
  content: '';
}

.contact-sec .inner {
  position: relative;
  z-index: 2;
}

.contact-sec .section-header .tag-sm {
  background: rgba(255, 255, 255, 0.1);
  color: #00d2ff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.contact-sec .section-header .title_main {
  color: #fff;
}

.contact-sec .section-header .desc {
  color: rgba(255, 255, 255, 0.8);
}

.map-bg {
  display: none;
}

.area-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 50px;
  margin-bottom: 50px;
}

.area-pill {
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  transition: 0.3s;
}

.area-pill.active {
  background: #eef2ff;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1.0);
  /* 반투명 흰색 바탕 */
  backdrop-filter: blur(20px);
  /* 글래스모피즘 (유리 효과) */
  -webkit-backdrop-filter: blur(20px);
}

.cta-box.cta-center {
  gap: 20px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cta-box.cta-center .cta-btns {
  justify-content: center;
  width: 100%;
}

.ctt-num {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  color: #475569;
}

.cta-num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: #10488e;
  letter-spacing: -2px;
}

.cta-num i {
  border-radius: 12px;
  font-size: 64px;
  margin-right: 12px;
}

.btn-online {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 280px;
  margin: 0 auto 30px auto;
  padding: 18px 0;
  border-radius: 100px;
  box-shadow: 0 10px 20px rgba(26, 98, 191, 0.2);
  background: #1a62bf;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-online:hover {
  box-shadow: 0 15px 30px rgba(26, 98, 191, 0.35);
  background: #10488e;
  color: #fff;
  transform: translateY(-4px);
}

.cta-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 30px;
}

.cta-btns {
  display: flex;
  gap: 15px;
}

.btn-talk {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-talk:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.btn-talk.kakao {
  background: #fee500;
  color: #3c1e1e;
}

.btn-talk.kakao i {
  font-size: 24px;
}

.btn-talk.naver {
  background: #03c75a;
  color: #fff;
}

.btn-talk.naver i {
  font-size: 24px;
}

footer {
  padding: 80px 0 100px;
  background: #191919;
  font-size: 18px;
  color: #94a3b8;
}

.foot-top {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.f-logo {
  width: 200px;
}

.f-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s;
  margin-left: 10px;
}

.f-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.f-contact-line {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .cta-box {
    gap: 30px;
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .ctt-num {
    font-size: 22px;
  }

  .cta-num {
    font-size: 44px;
  }

  .cta-num i {
    font-size: 38px;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-online {
    width: 90%;
    padding: 10px 0;
  }

  .btn-talk {
    justify-content: center;
    width: 100%;
  }

  .area-list {
    flex-direction: column;
    width: 80%;
    text-align: center;
  }

  /* Footer Responsive */
  footer {
    padding: 50px 0 90px;
    font-size: 15px;
  }

  .foot-top {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .f-info {
    gap: 10px 15px;
  }

  .f-contact-line {
    gap: 8px;
    flex-direction: column;
  }

  .f-contact-line span {
    line-height: 1.5;
    word-break: keep-all;
  }
}

/* EASY CLEANING Premium Footer Override */
.ch-footer-wrap {
  padding: 80px 24px 40px;
  background-color: #101828;
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}

.ch-footer-inner {
  display: grid;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: 1fr 2fr 1fr;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-f-logo {
  margin-bottom: 24px;
}

.ch-f-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ch-f-slogan {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  word-break: keep-all;
}

.ch-f-info {
  display: flex;
  gap: 12px 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ch-f-info dl {
  display: flex;
  margin: 0;
}

.ch-f-info dt {
  font-weight: 600;
  color: #fff;
  margin-right: 8px;
  opacity: 0.8;
}

.ch-f-info dd {
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.ch-f-info-full {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

.ch-f-info-full dt {
  font-weight: 600;
  color: #fff;
  margin-right: 8px;
  opacity: 0.8;
}

.ch-f-info-full dd {
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.ch-f-cs h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1180c3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.ch-f-cs h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ch-f-cs p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.ch-f-bank {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-f-bank strong {
  display: block;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 4px;
}

.ch-f-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 30px;
}

.ch-f-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 20px;
}

.ch-f-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .ch-footer-inner {
    gap: 40px;
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .ch-f-cs {
    order: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }

  .ch-f-bank {
    border-top: none;
    padding-top: 0;
    margin-top: 16px;
  }

  .ch-f-copy {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .ch-f-links {
    margin-top: 10px;
  }

  .ch-f-links a {
    margin: 0 10px;
  }
}

/* =========================================
   [NEW] Flat Sticky Sidebar Quick Menu
   ========================================= */
/* PC Quick Menu */
.ch-quick-flat-pc {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999;
  transform: translateY(-50%);
}

.ch-quick-flat-pc ul {
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.ch-quick-flat-pc li {
  position: relative;
  list-style: none;
}

.ch-quick-flat-pc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--color-dark);
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ch-quick-flat-pc a.btn-call {
  background: #2ca9a7;
}

.ch-quick-flat-pc a.btn-top {
  background: #ececec;
  color: #222;
}

.ch-quick-flat-pc li:last-child a {
  border-bottom: none;
}

.ch-quick-flat-pc a:hover {
  background: var(--color-primary);
}

/* Brand Colors */
.ch-quick-flat-pc a.brand-kakao {
  background: #fee500;
  color: #3c1e1e;
}

.ch-quick-flat-pc a.brand-kakao:hover {
  background: #f4dc00;
}

.ch-quick-flat-pc a.brand-naver {
  background: #03c75a;
}

.ch-quick-flat-pc a.brand-naver:hover {
  background: #02b350;
}

/* Slide Panel (Hover) */
.ch-q-slide-panel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 65px;
  z-index: -1;
  height: 100%;
  visibility: hidden;
  padding: 0 20px;
  background: var(--color-primary);
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateX(10px);
}

.ch-quick-flat-pc a:hover .ch-q-slide-panel {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.ch-q-slide-panel.text-only {
  align-items: center;
  flex-direction: row;
  font-size: 16px;
  font-weight: 600;
}

.ch-q-slide-panel.brand-kakao-bg {
  background: #fee500;
  color: #3c1e1e;
}

.ch-q-slide-panel.brand-naver-bg {
  background: #03c75a;
  color: #fff;
}

.ch-q-slide-panel .t-title {
  display: block;
  font-size: 13px;
  color: #00d2ff;
  margin-bottom: 2px;
}

.ch-q-slide-panel .t-tel {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Mobile Quick Menu */
.ch-quick-flat-mo {
  display: none;
}

@media (max-width: 1024px) {
  .ch-quick-flat-pc {
    display: none;
  }

  .ch-quick-flat-mo {
    display: block;
    z-index: 1000;
  }

  .ch-quick-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 60px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  }

  .ch-quick-bar a {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
  }

  .ch-quick-bar .btn-call {
    background: var(--color-dark);
  }

  .ch-quick-bar .btn-sms {
    background: var(--color-primary);
  }

  .ch-quick-bar .btn-kakao {
    background: #fee500;
    color: #3c1e1e;
  }

  .ch-quick-float-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(3, 199, 90, 0.4);
    background: #03c75a;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .ch-quick-float-blog:active {
    transform: scale(0.95);
  }
}

/* [NEW] Systematic Process Section */
.process-sec {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f8fafc;
}

.process-sec .inner {
  position: relative;
  z-index: 2;
}

.process-wrap {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 40px 30px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  text-align: center;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card:hover {
  box-shadow: 0 20px 40px rgba(26, 80, 161, 0.1);
  transform: translateY(-5px);
  border-color: #1a50a1;
}

.process-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1a50a1;
  transition: transform 0.4s ease;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.step-info {
  position: relative;
  width: 100%;
}

.step-info .step-num {
  display: block;
  /* 보다 클래식하고 고급스러운 번호 폰트 (옵션) */
  position: relative;
  font-family: 'Times New Roman', Times, serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  color: #1a50a1;
  margin-bottom: 20px;
}

/* 숫자 아래 짧은 장식 선 */
.step-info .step-num::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 10px auto 0;
  background: #1a50a1;
  transition: 0.3s;
  content: '';
}

.process-card:hover .step-num::after {
  width: 40px;
}

.step-info .step-tit {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: #1a1f3c;
  margin-bottom: 8px;
}

.step-info .step-eng {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
  color: #1a50a1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.step-info .step-desc {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  word-break: keep-all;
}

/* Arrow Connector */
.process-wrap>.process-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 2;
  /* xeicon arrow-right */
  font-family: 'xeicon';
  font-size: 24px;
  color: #cbd5e1;
  content: '\e93e';
  transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .process-wrap {
    gap: 20px;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 0 0 calc(50% - 10px);
  }

  .process-wrap>.process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-sec {
    padding: 60px 0;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .process-card {
    padding: 30px 20px;
  }
}

/* [NEW] Clients/Activity Section Styling (Wide Horizon) */
.clients-sec {
  padding: 140px 0;
  background: #f8fafc;
}

.coop-badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #1a50a1;
  border-radius: 100px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #1a50a1;
  margin-bottom: 20px;
}

.cl-stack {
  display: flex;
  gap: 40px;
  flex-direction: column;
  margin-top: 60px;
}

.cl-row {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cl-row:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* Specific Border Accents on Left */
.cl-gov {
  border-left: 5px solid #233075;
}

.cl-edu {
  border-left: 5px solid #059669;
}

.cl-corp {
  border-left: 5px solid #1a50a1;
}

/* Image Area */
.cl-img-box {
  flex: 0 0 32%;
  position: relative;
  min-height: 280px;
  background-position: center;
  /* Image takes 32% width */
  background-size: cover;
}

.cl-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 28px;
  color: #334155;
}

.cl-gov .cl-badge {
  color: #233075;
}

.cl-edu .cl-badge {
  color: #059669;
}

.cl-corp .cl-badge {
  color: #1a50a1;
}

/* Text Content Area */
.cl-text-box {
  display: flex;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  padding: 40px 50px;
}

.cl-head {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.cl-head h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.cl-eng {
  font-size: 18px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.cl-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
}

/* Wide List (Multicolumn) */
.cl-wide-list {
  display: grid;
  /* 4 Column Grid */
  gap: 12px 20px;
  grid-template-columns: repeat(4, 1fr);
}

.cl-wide-list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #475569;
}

.cl-wide-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
  content: '';
  margin-right: 10px;
}

.cl-gov .cl-wide-list li::before {
  background: #233075;
}

.cl-edu .cl-wide-list li::before {
  background: #059669;
}

.cl-corp .cl-wide-list li::before {
  background: #1a50a1;
}

/* Responsive */
@media (max-width: 1024px) {
  .cl-row {
    flex-direction: column;
  }

  .cl-img-box {
    flex: none;
    height: 200px;
    min-height: auto;
  }

  .cl-text-box {
    padding: 30px;
  }

  .cl-wide-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cl-head h3 {
    font-size: 22px;
  }

  .cl-desc {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .cl-wide-list {
    grid-template-columns: 1fr;
  }

  .cl-text-box {
    padding: 25px;
  }
}

/* EASY CLEANING Main Gallery Override */
.idx-gallery-wrap {
  margin-top: 40px;
  margin-bottom: 80px;
}

/* .idx-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } */
.idx-gallery-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.idx-gallery-card:hover {
  box-shadow: 0 20px 40px rgba(0, 137, 123, 0.1);
  transform: translateY(-10px);
  border-color: #1180c3;
}

.idx-gallery-img {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.idx-gallery-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  object-fit: cover;
}

.idx-gallery-card:hover .idx-gallery-img img {
  transform: scale(1.05);
}

.idx-gallery-txt {
  display: flex;
  justify-content: center;
  flex: 1;
  flex-direction: column;
  padding: 24px 20px;
}

.idx-gallery-tit {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #101828;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.idx-gallery-date {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  color: #64748b;
  margin-top: auto;
}

.idx-gallery-date i {
  font-size: 15px;
  color: #1180c3;
}

.idx-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.idx-gallery-more {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #1180c3;
  text-decoration: none;
}

.idx-gallery-more i {
  margin-right: 6px;
}

.idx-gallery-loader {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  grid-column: 1/-1;
}

.idx-gallery-loader-icon {
  font-size: 32px;
  color: #1180c3;
  margin-bottom: 16px;
}

.idx-gallery-loader-txt {
  margin: 0;
  font-size: 16px;
  color: #64748b;
}

@media (max-width: 1024px) {
  /* .idx-gallery-grid { grid-template-columns: repeat(2, 1fr); } */
}

@media (max-width: 768px) {

  /* .idx-gallery-grid { grid-template-columns: 1fr; gap: 16px; } */
  .idx-gallery-img {
    height: 240px;
  }
}

/* =========================================
   [NEW] About Work Section Cards
   ========================================= */
#work {
  position: relative;
  width: 100%;
  margin: 40px 0 80px;
}

.ch-work-grid {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
}

/* 5구간 특수 배열 방식 */
.ch-work-grid.five-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.ch-work-grid.five-grid li {
  width: calc(33.333% - 16px);
  margin-bottom: 24px;
}

.ch-work-grid.five-grid li:nth-child(4),
.ch-work-grid.five-grid li:nth-child(5) {
  width: calc(50% - 12px);
  height: 300px;
}

.ch-work-grid li {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #000;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
  aspect-ratio: 4/3;
}

.ch-work-grid li:hover {
  box-shadow: 0 20px 40px rgba(26, 80, 161, 0.15);
  transform: translateY(-8px);
  /* Primary color shadow */
}

.ch-work-grid a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.ch-work-grid img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  object-fit: cover;
  opacity: 0.85;
}

.ch-work-grid li:hover img {
  transform: scale(1.08);
  /* Image zoom on hover */
  opacity: 1;
}

.ch-work-grid .txt {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 60px 24px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  box-sizing: border-box;
}

.ch-work-grid .en-tit {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4ed9d9;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  margin-bottom: 8px;
  transform: translateY(0);
  opacity: 1;
}

.ch-work-grid p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  word-break: keep-all;
  transition: all 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.ch-work-grid h1 {
  margin: 0 0 10px 0;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  transition: transform 0.4s ease;
  transform: translateY(0);
}

.ch-work-grid h2 {
  display: none;
  /* Highlight Blue/Cyan */
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #00d2ff;
  /* 이전 디자인 요소 숨김 처리 */
}

.ch-work-grid h2 i {
  font-size: 18px;
  transition: transform 0.3s;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .ch-work-grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ch-work-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .ch-work-grid h1 {
    font-size: 22px;
  }
}

/* =========================================
   [NEW] Hero Slide Text Styles
   ========================================= */
.hero-txt-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 220px;
}

.hero-txt {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: 100%;
  transition: opacity 0.8s ease-out;
  pointer-events: none;
  transform: translateX(-50%);
  opacity: 0;
}

.hero-txt.active {
  pointer-events: auto;
  opacity: 1;
}

/* =========================================
   EXPAT ENGLISH LANDING PAGE STYLES (.expat-*)
   ========================================= */

.expat-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.expat-sec-title {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 60px;
}

.expat-sec-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.expat-sec-title p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #666;
}

/* Hero */
.expat-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.expat-hero-bg {
  position: absolute;
  background: url('/img/banner/md_bg.jpg') center/cover no-repeat;
  inset: 0;
  transform: scale(1.05);
}

.expat-hero::after {
  position: absolute;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.4) 100%);
  content: '';
  inset: 0;
}

.expat-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  color: #fff;
  text-align: center;
}

.expat-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #20ffe8;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.expat-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.expat-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.expat-btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 18px 40px;
  border-radius: 50px;
  background: #1180c3;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.expat-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 137, 123, 0.4);
  background: #00b19d;
  color: #fff;
  transform: translateY(-3px);
}

/* Features */
.expat-features {
  padding: 100px 0;
  background: #f8f9fa;
  font-family: 'Inter', sans-serif;
}

.expat-feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.ex-card {
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: #fff;
  text-align: center;
  transition: transform 0.3s;
}

.ex-card:hover {
  transform: translateY(-5px);
}

.ex-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 137, 123, 0.1);
  font-size: 28px;
  color: #1180c3;
}

.ex-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.ex-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Services */
.expat-services {
  padding: 100px 0;
  background: #fff;
}

.expat-srv-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.srv-card {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}

.srv-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.srv-img {
  width: 100%;
  height: 240px;
  background-position: center;
  background-size: cover;
  border-bottom: 4px solid #1180c3;
}

.srv-txt {
  padding: 35px 30px;
}

.srv-txt h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.srv-txt p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Contact */
.expat-contact {
  padding: 100px 0;
  background: #111;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.contact-box {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.cb-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cb-info p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cb-info ul {
  padding: 0;
  list-style: none;
}

.cb-info ul li {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 18px;
  color: #ddd;
  margin-bottom: 20px;
}

.cb-info ul li i {
  font-size: 24px;
  color: #20ffe8;
}

.cb-form {
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.cb-form input,
.cb-form select,
.cb-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.cb-form input::placeholder,
.cb-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cb-form select option {
  color: #000;
}

.expat-submit {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 8px;
  background: #1180c3;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: background 0.3s;
  cursor: pointer;
}

.expat-submit:hover {
  background: #00b19d;
}

/* Responsive */
@media (max-width: 1024px) {
  .expat-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expat-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .expat-hero-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .expat-feature-grid {
    grid-template-columns: 1fr;
  }

  .expat-srv-grid {
    grid-template-columns: 1fr;
  }

  .cb-form {
    padding: 30px 20px;
  }

  .expat-hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .expat-hero-content h1 {
    font-size: 34px;
  }

  .expat-hero-content p {
    font-size: 16px;
  }

  .expat-sec-title h2 {
    font-size: 32px;
  }

  .expat-sec-title p {
    font-size: 16px;
  }
}

/* =========================================
   PREMIUM ONLINE INQUIRY SECTION (#online)
   ========================================= */

.idx-online-sec {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f6f9 0, #fff 100%);
}

/* Decorative background elements */
.idx-online-sec::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0, rgba(255, 255, 255, 0) 70%);
  content: '';
}

.idx-online-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.idx-online-header {
  text-align: center;
  margin-bottom: 50px;
}

.idx-online-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(0, 137, 123, 0.1);
  font-size: 14px;
  font-weight: 700;
  color: #1180c3;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.idx-online-title {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.idx-online-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

/* Form Wrapper (Glassmorphism + Neumorphism) */
.idx-online-form-wrapper {
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  background: #fff;
}

.idx-input-box input,
.idx-input-box textarea {
  flex: 1;
  padding: 16px 20px 16px 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #333;
}

.idx-input-box input::placeholder,
.idx-input-box textarea::placeholder {
  color: #adb5bd;
}

/* Custom Checkbox */
.idx-agree-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Submit Button */
.idx-submit-btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  background: #111;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {}

@media (max-width: 768px) {
  .idx-online-sec {
    padding: 80px 0;
  }

  .idx-online-title {
    font-size: 28px;
  }

  .idx-online-desc {
    font-size: 15px;
  }

  .idx-online-form-wrapper {
    padding: 30px 20px;
  }

  /* 메인 체크리스트 모바일 분할 표출 */
  #md ul li {
    align-items: flex-start !important;
  }

  #md ul li h1 {
    display: block !important;
    text-align: left !important;
  }

  #md ul li h1 span {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-break: keep-all;
    margin-left: 0 !important;
    margin-top: 6px !important;
  }

  /* Work 카드 모바일 1열 표출 */
  #work .ch-work-grid {
    display: block !important;
  }

  .idx-form-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }

  .idx-input-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .idx-input-group label span {
    color: #ff4757;
    margin-left: 4px;
  }

  .idx-input-box {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
  }

  .idx-input-box:focus-within {
    box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.1);
    background: #fff;
    border-color: #1180c3;
  }

  .idx-input-box i {
    width: 50px;
    font-size: 18px;
    color: #a0a5ab;
    text-align: center;
    transition: color 0.3s ease;
  }

  .idx-input-box:focus-within i {
    color: #1180c3;
  }

  .idx-input-box input,
  .idx-input-box textarea {
    flex: 1;
    padding: 16px 20px 16px 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #333;
  }

  .idx-input-box input::placeholder,
  .idx-input-box textarea::placeholder {
    color: #adb5bd;
  }

  .idx-input-box textarea {
    resize: none;
  }

  .idx-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }

  /* Custom Checkbox */
  .idx-agree-label {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .idx-agree-label input[type="checkbox"] {
    display: none;
  }

  .idx-custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.2s;
    margin-right: 12px;
  }

  .idx-agree-label input[type="checkbox"]:checked+.idx-custom-checkbox {
    background: #1180c3;
    border-color: #1180c3;
  }

  .idx-agree-label input[type="checkbox"]:checked+.idx-custom-checkbox::after {
    font-family: 'Font Awesome 6 Free';
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    content: '\f00c';
  }

  .idx-agree-text {
    font-size: 15px;
    font-weight: 500;
    color: #555;
  }

  /* Submit Button */
  .idx-submit-btn {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    background: #111;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }

  .idx-submit-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 137, 123, 0.3);
    background: #1180c3;
    transform: translateY(-3px);
  }

  .idx-submit-btn i {
    font-size: 18px;
    transition: transform 0.3s;
  }

  .idx-submit-btn:hover i {
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .idx-form-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .idx-online-form-wrapper {
    padding: 40px 30px;
  }

  .idx-form-footer {
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .idx-submit-btn {
    justify-content: center;
    width: 100%;
  }
}

/* =========================================
   [NEW] Online Contact Form Premium Style
   ========================================= */
.idx-online-form-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
}

.idx-form-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 15px;
}

.idx-input,
.idx-textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* 통통한 모서리 */
  background-color: #fff;
  font-family: inherit;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  /* 약간의 입체감 부여 */
}

.idx-input::placeholder,
.idx-textarea::placeholder {
  font-weight: 400;
  color: #999;
}

.idx-input:focus,
.idx-textarea:focus {
  outline: 2px solid #0056b3;
  outline-offset: -2px;
}

.idx-form-full {
  margin-bottom: 20px;
}

.idx-textarea {
  height: 120px;
  resize: none;
}

.idx-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.idx-agree-label {
  display: flex;
  gap: 8px;
  align-items: center;
  /* 어두운 배경에 맞게 하얀 텍스트 */
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
}

.idx-agree-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0056b3;
}

.idx-submit-btn {
  padding: 16px 50px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 91, 161, 0.4);
  background-color: #005ba1;
  font-size: 18px;
  font-weight: 700;
  /* 사진과 유사한 은하수 블루 */
  color: #fff;
  transition: background 0.3s ease;
  cursor: pointer;
}

.idx-submit-btn:hover {
  background-color: #00457c;
}

.idx-submit-btn i {
  margin-left: 8px;
}

/* 모바일 분기 */
@media (max-width: 768px) {
  .idx-form-grid {
    grid-template-columns: 1fr;
  }

  .idx-form-footer {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .idx-submit-btn {
    width: 100%;
    padding: 16px;
  }
}

/* =========================================
   SKIN1 TO MAIN MIGRATED SECTIONS
   (.main-work, #main-medal, .main-ico, #main-online)
   ========================================= */

/* --- 1. Main Premium Service (.main-work) --- */
.main-work {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 120px;
  background-size: cover;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}

.main-work>h2 {
  padding: 0 0 10px 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.main-work>h2 span {
  color: #10488e;
}

.main-work>h3 {
  padding: 0 0 35px 0;
  font-size: 24px;
  font-weight: 400;
  color: #555;
}

.main-work ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.main-work ul li {
  position: relative;
  width: calc(50% - 12.5px);
  height: 325px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.main-work ul li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.85) 100%);
  transition: background 0.4s ease;
  content: '';
  pointer-events: none;
}

.main-work ul li:hover::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.95) 100%);
}

.main-work ul li:hover img {
  transform: scale(1.05);
}

.main-work ul li .img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.main-work ul li .img img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.main-work ul li .txt {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  color: #fff;
  text-align: left;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.main-work ul li .txt>h3 {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 20px;
  font-weight: 600;
  color: #32bff9;
  text-shadow: none;
}

.main-work ul li .txt>h4 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

/* --- 2. Main Medal (#main-medal) --- */
#main-medal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 80px 0;
  text-align: center;
}

#main-medal ul {
  margin: 0;
  padding: 0;
}

#main-medal ul li {
  width: 100%;
}

#main-medal ul li a {
  display: inline-block;
  width: 100%;
}

#main-medal ul li img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

/* --- 3. Main Icon Service (.main-ico) --- */
.main-ico {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
  background: url("/img/banner/icon_bg.png") no-repeat 50% 0;
  background-size: cover;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.main-ico>h2 {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.main-ico>h3 {
  margin: 0;
  padding: 0 0 50px 0;
  font-size: 36px;
  font-weight: 700;
}

.main-ico>h3 span {
  color: #32bff9;
}

.main-ico ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.main-ico ul li {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: calc(25% - 15px);
  min-height: 300px;
  padding: 35px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
}

.main-ico ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px);
}

.main-ico ul li .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.main-ico ul li .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-ico ul li .txt {
  width: 100%;
}

.main-ico ul li .txt>h3 {
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.main-ico ul li .txt>p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #e2e8f0;
  word-break: keep-all;
}

/* --- 4. Main Online (#main-online) --- */
#main-online {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

#main-online::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/img/banner/online_bg.png") no-repeat center center;
  background-size: cover;
  content: "";
  filter: blur(0px);
  opacity: 1.0;
}

#main-online ul {
  display: grid;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr 1.2fr;
}

#main-online ul li {
  text-align: left;
  box-sizing: border-box;
}

#main-online ul li.cs {
  color: #fff;
}

#main-online ul li.cs h2 {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
}

#main-online ul li.cs h2 span {
  font-weight: 700;
  color: #fff;
}

#main-online ul li.cs h3 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0;
  padding: 0 0 15px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

#main-online ul li.cs h3 span {
  font-size: 60px;
  font-weight: 800;
  color: #32bff9;
}

#main-online ul li.cs h3 a {
  color: #fff;
}

#main-online ul li.cs h4 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 0 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #e2e8f0;
}

#main-online ul li.cs h4 span {
  display: inline-block;
  width: 90px;
  margin: 0 15px 0 0;
  padding: 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#main-online ul li.cs p {
  display: inline-block;
  transition: transform 0.3s;
  margin-top: 35px;
  margin-right: 15px;
}

#main-online ul li.cs p:hover {
  transform: translateY(-5px);
}

#main-online ul li.res {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
  color: #000;
}

#main-online ul li.res h2 {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

#main-online ul li.res h2 span {
  color: #10488e;
}

#main-online ul li.res h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

/* === RESPONSIVE MEDIA QUERIES (Custom Optimization) === */
@media (max-width: 1240px) {

  #main-medal,
  #main-online ul,
  .main-ico ul,
  .main-work ul {
    padding: 0 20px;
  }

  .main-ico ul li {
    width: calc(25% - 10px);
    padding: 30px 15px;
  }

  #main-online ul {
    grid-template-columns: 1fr;
  }

  #main-online ul li.cs h2 {
    font-size: 30px;
  }

  #main-online ul li.cs h3 {
    font-size: 38px;
  }

  #main-online ul li.cs h3 span {
    font-size: 50px;
  }

  #main-online ul li.cs h4 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {

  /* Work */
  .main-work {
    padding: 80px 0 60px 0;
  }

  .main-work>h2 {
    font-size: 32px;
    word-break: keep-all;
  }

  .main-work>h3 {
    font-size: 18px;
    word-break: keep-all;
    padding-bottom: 25px;
  }

  .main-work ul li {
    height: 260px;
    border-radius: 16px;
  }

  .main-work ul li .txt {
    bottom: 20px;
    left: 20px;
  }

  .main-work ul li .txt>h3 {
    font-size: 16px;
  }

  .main-work ul li .txt>h4 {
    font-size: 26px;
  }

  /* Ico */
  .main-ico {
    padding: 80px 0;
  }

  .main-ico>h2 {
    font-size: 20px;
  }

  .main-ico>h3 {
    font-size: 30px;
    padding-bottom: 40px;
  }

  .main-ico ul li {
    width: calc(50% - 10px);
    min-height: 240px;
    margin-bottom: 20px;
  }

  /* Online */
  #main-online {
    padding: 80px 0;
  }

  #main-online ul li {
    width: 100%;
  }

  #main-online ul li.cs {
    text-align: center;
    margin-bottom: 50px;
  }

  #main-online ul li.cs h3 {
    justify-content: center;
  }

  #main-online ul li.cs h4 {
    justify-content: center;
  }

  #main-online ul li.res {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {

  /* Work */
  .main-work {
    padding: 100px 0;
  }

  .main-work ul li {
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
  }

  .main-work>h2 {
    padding: 0 10px;
    font-size: 26px;
    word-break: keep-all;
  }

  .main-work>h3 {
    font-size: 16px;
    word-break: keep-all;
    padding-bottom: 20px;
  }

  .main-work ul li .txt>h3 {
    font-size: 14px;
  }

  .main-work ul li .txt>h4 {
    font-size: 22px;
  }

  /* Medal */
  #main-medal {
    padding: 20px 20px 50px;
  }

  #main-medal ul li img {
    border-radius: 16px;
  }

  /* Ico */
  .main-ico {
    padding: 60px 0;
  }

  .main-ico>h2 {
    font-size: 16px;
  }

  .main-ico>h3 {
    font-size: 26px;
    padding-bottom: 30px;
  }

  .main-ico ul li {
    width: 100%;
    min-height: auto;
    padding: 30px 20px;
    margin-bottom: 15px;
  }

  .main-ico ul li .img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .main-ico ul li .txt>h3 {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .main-ico ul li .txt>p {
    font-size: 14px;
  }

  /* Online */
  #main-online {
    padding: 60px 0;
  }

  #main-online ul li.cs h2 {
    font-size: 26px;
    word-break: keep-all;
    padding-bottom: 50px;
  }

  #main-online ul li.cs h3 {
    display: block;
    font-size: 26px;
    text-align: center;
    word-break: keep-all;
  }

  #main-online ul li.cs h3 a {
    display: flex;
    gap: 0;
    align-items: center;
    flex-direction: column;
  }

  #main-online ul li.cs h3 span {
    font-size: 42px;
    white-space: nowrap;
  }

  #main-online ul li.cs h4 {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    max-width: 330px;
    margin: 12px auto 0;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-align: left;
    letter-spacing: -0.2px;
    white-space: nowrap;
    backdrop-filter: blur(5px);
  }

  #main-online ul li.cs h4 span {
    display: inline-block;
    flex-shrink: 0;
    width: 70px;
    margin: 0;
    padding: 4px 0;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(50, 191, 249, 0.3);
    background: #32bff9;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center;
  }

  #main-online ul li.cs p img {
    max-width: 140px;
  }

  #main-online ul li.res h2 {
    font-size: 22px;
    word-break: keep-all;
  }

  #main-online ul li.res h3 {
    font-size: 15px;
    word-break: keep-all;
  }

  /* Gallery Mobile Fonts */
  .main-gallery .title-wrap h2 {
    font-size: 26px;
  }

  .main-gallery .title-wrap h3 {
    font-size: 16px;
  }

  .main-gallery ul li .txt h3 {
    font-size: 16px;
  }
}

/* MAIN GALLERY */
.main-gallery {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 20px;
}

.main-gallery .title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

.main-gallery .title-wrap h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.main-gallery .title-wrap h3 {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
}

.main-gallery .btn-more {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #111;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  transition: 0.3s;
}

.main-gallery .btn-more:hover {
  background: #111;
  color: #fff;
}

.main-gallery ul {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow: hidden;
  padding-bottom: 20px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}
.main-gallery ul:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.main-gallery ul li {
  flex: 0 0 285px;
  width: 285px;
}

.main-gallery ul li a {
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.main-gallery ul li a:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.main-gallery ul li .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.main-gallery ul li .img img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  object-fit: cover;
}

.main-gallery ul li a:hover .img img {
  transform: scale(1.05);
}

.main-gallery ul li .txt {
  padding: 20px;
}

.main-gallery ul li .txt h3 {
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  margin-bottom: 10px;
  text-overflow: ellipsis;
}

.main-gallery ul li .txt p {
  font-size: 14px;
  color: #888;
}

@media (max-width: 1024px) {
  .main-gallery ul li {
    flex: 0 0 40vw;
    width: 40vw;
  }
}

@media (max-width: 768px) {
  .main-gallery {
    padding: 60px 0 70px;
    overflow: hidden;
  }

  .main-gallery .title-wrap {
    padding: 0 20px;
    word-break: keep-all;
  }

  .main-gallery .title-wrap h2 {
    font-size: 26px;
  }

  .main-gallery ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow: hidden;
    animation: galleryScroll 20s linear infinite;
    width: max-content;
    padding: 0 0 10px;
  }

  .main-gallery ul li {
    flex: 0 0 45vw;
    width: 45vw;
    margin-bottom: 0;
  }

  .main-gallery ul li .img {
    height: 140px;
  }

  .main-gallery ul li .txt {
    padding: 12px;
  }

  .main-gallery ul li .txt h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .main-gallery ul li .txt p {
    font-size: 12px;
  }

  @keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* =========================================
   EXTRACTED FROM layout.css
   ========================================= */

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

#wrap {
  position: relative;
  width: 100%;
  min-height: 550px;
  margin: 0 auto;
  overflow: hidden;
}

/* [REMOVED by cleanup 2026-04-25] body 중복 블록 → 파일 상단 body 블록으로 통합됨 */

#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#container #contents {
  float: none;
  margin: 0 auto;
  padding: 0;
}

.page {
  width: 100%;
  margin: 0 auto;
}

.page .contents {
  width: 1200px;
  margin: 0 auto;
  padding: 0 0 100px 0;
}

.cboth {
  clear: both;
}

.cboth:after {
  display: block;
  clear: both;
  content: " ";
}

audio,
canvas,
img,
svg,
video {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* [REMOVED by cleanup 2026-04-25] button 중복 블록 → 파일 상단 button 블록으로 통합됨 */

img {
  -webkit-perspective: 1;
}

a:hover {
  text-decoration: none;
}

.display_mobile_only {
  display: none;
}

.display_tablet_only {
  display: none;
}

.display_pc_only {
  display: block;
}

.layer_shadow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  opacity: 0;
}

.layer_shadow.on {
  visibility: visible;
  opacity: 1;
}

.pc_quick {
  position: fixed;
  right: 20px;
  bottom: 200px;
  z-index: 8;
  width: auto;
  height: auto;
}

.pc_quick ul {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
}

.pc_quick ul li {
  width: 100%;
  margin-top: 5px;
  box-sizing: border-box;
}

.pc_quick ul li i {
  font-size: 24px;
}

.pc_quick ul li a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: auto;
  height: auto;
  padding: 10px 5px;
  border: 0 solid #dadada;
  border-radius: 8px;
  color: #fff;
  box-sizing: border-box;
}

.pc_quick ul li .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  box-sizing: border-box;
}

.pc_quick ul li .txt {
  display: none;
  font-size: 14px;
}

.pc_quick ul li.kakao {
  padding: 0 5px;
  border-radius: 8px;
  background: #f8e110;
}

.pc_quick ul li.kakao i {
  font-size: 42px;
  color: #000;
}

.pc_quick ul li.kakao .txt {
  display: none;
  color: #000;
}

.pc_quick ul li.card {
  display: none;
  padding: 5px;
  border-radius: 8px;
  background: #004696;
}

.pc_quick ul li.card i {
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}

.pc_quick ul li.qna {
  padding: 5px;
  border-radius: 8px;
  background: #1d74d7;
}

.pc_quick ul li.qna i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 3px;
}

.pc_quick ul li.blog {
  padding: 0;
  border-radius: 8px;
  background: #02c65a;
}

.pc_quick ul li.blog i {
  font-size: 42px;
  color: #fff;
}

.pc_quick ul li:last-child a {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: none;
  border-radius: 50%;
  background: rgba(125, 125, 125, 0.85);
  color: #000;
  margin-top: 10px;
}

.pc_quick ul li:last-child i {
  font-size: 20px;
  color: #fff;
}

#header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  padding: 0;
  background: none;
  color: #fff;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.0);
  box-sizing: border-box;
}

#header:hover {
  color: #000;
}

#header:hover .logo-img {
  content: url('/img/ci/logo2.png');
}

#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

#header:hover .inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#header .inner .top_nav_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#header .inner .top_nav_box .top_logo {
  width: auto;
  height: auto;
}

#header .inner .top_nav_box .top_logo img {
  width: 100%;
}

#header .inner .top_nav_box .top_logo:hover .header {
  background: rgba(0, 36, 78, 0.7);
}

#header .inner .top_nav_box .top_nav {
  display: none;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
}

#header .inner .top_nav_box .top_nav .eNavFold {
  display: flex;
  align-items: center;
  width: 25px;
  height: 80px;
}

#header .inner .top_nav_box .top_nav .eNavFold .ico.icoav {
  width: 25px;
  margin: -18px auto 0;
  box-shadow: 0 18px 0;
}

#header .inner .top_nav_box .top_nav .eNavFold .ico.icoav:before {
  top: 9px;
  width: 25px;
}

#header .inner .top_nav_box div[data-ez-module='menu-main/1'] {
  width: 100%;
}

#header .inner .top_nav_box .top_call {
  display: none;
  width: auto;
  color: #000;
  text-align: left;
}

#header .inner .top_nav_box .top_call a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#header .inner .top_nav_box .top_call i {
  display: none;
}

#header .inner .top_nav_box .top_call .img {
  width: auto;
  margin-right: 10px;
}

#header .inner .top_nav_box .top_call .txt {
  width: auto;
}

#header .inner .top_nav_box .top_call .txt h2 {
  padding: 0 0 3px 0;
  font-size: 16px;
  font-weight: 450;
}

#header .inner .top_nav_box .top_call .txt h3 {
 font-weight:700;
  font-size: 28px;
  color: #0c5aa9;
  letter-spacing: 0;
}

.navbar {
  flex-grow: 1;
  position: relative;
  max-width: 800px;
}

.menu {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu>li {
  position: relative;
  width: auto;
  text-align: center;
}

.menu>li>a {
  display: block;
  padding: 35px 20px;
  font-size: 22px;
  font-weight: 450;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: all ease 0.3s 0s;
}

.menu>li:hover>a {
  color: #0c5aa9;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 120px;
  height: 225px;
  visibility: hidden;
  padding: 20px 0;
  background-color: none;
  transform: translateX(-50%);
  border-top: 0 solid #e4e4e4;
  box-sizing: border-box;
  opacity: 0;
}

.submenu.log {
  border-left: 0 solid #e4e4e4;
}

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

.submenu ul li a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: all ease 0.3s 0s;
}

.submenu ul li a:hover {
  color: #0c5aa9;
}

#header:hover .submenu {
  display: block;
  visibility: visible;
  transition: all ease 0.5s 0s;
  opacity: 1;
}

.header_cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 300px;
  visibility: hidden;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  transition: all ease 0.3s 0s;
  border-bottom: 0 solid #e4e4e4;
  box-sizing: border-box;
  opacity: 0;
}

.header_cover.show {
  visibility: visible;
  opacity: 1;
}

#header.active {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  transition: .0.3s;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.05);
}

#header.active .logo-img {
  content: url('/img/ci/logo2.png');
}

#header.active .inner .menu>li>a {
  color: #000;
}

#footer {
  width: 100%;
  height: auto;
  padding: 0;
  background-color: #0d0d0d;
  letter-spacing: -0.5px;
  box-sizing: border-box;
}

#footer .area {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 25px 0;
  font-size: 17px;
  font-weight: 200;
  margin-bottom: 20px;
  border-bottom: 1px solid #212121;
}

#footer .area .wrap {
  width: 1200px;
  margin: 0 auto;
}

#footer .area a {
  color: #aaa;
}

#footer .area a:hover {
  opacity: 0.8;
}

#footer .area span {
  padding: 0 15px 0 15px;
  background: url("/img/icon/until.jpg") no-repeat 0 6px;
  background-size: 1px;
}

#footer .area span.log {
  padding: 0 15px 0 0;
  background: none;
  color: #aaa;
}

#footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

#footer .info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: auto;
}

#footer .info .logo {
  display: table;
  width: auto;
  margin-right: 50px;
  margin-top: 15px;
}

#footer .info .address {
  width: auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  text-align: left;
  margin-top: 10px;
  order: 2;
}

#footer .info .address span {
  padding: 0 12px 0 12px;
  background: url("/img/icon/until.jpg") no-repeat 0 6px;
  background-size: 0.8px;
  color: #aaa;
}

#footer .info .address span a {
  color: #fff;
}

#footer .info .address span.log {
  padding: 0 12px 0 0;
  background: none;
}

.ff {
  display: block;
  padding: 10px 0 20px 0;
}

#footer .info .address span.log.tt {
  display: inline-block;
  margin-top: 20px;
}

#footer .info .address span.copy {
  padding: 0;
  background: none;
  color: #aaa;
}

#footer .customer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: auto;
}

#footer .customer .sns01 {
  width: auto;
  margin: 0 0 0 0;
  padding: 0;
  color: #fff;
  letter-spacing: 0;
  border-right: 0px solid #eee;
}

#footer .customer .sns01 .img {
  width: auto;
  padding: 0 0 5px 0;
  text-align: left;
}

#footer .customer .sns01 .img img {
  margin: 0 auto;
}

#footer .customer .sns01 h1 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 650;
}

#footer .customer .sns01 h2 {
  padding: 5px 0 0 0;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.4;
}

#footer .customer .sns01 h3 {
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 350;
}

#footer .customer .sns02 {
  width: auto;
  margin: 10px 0 0 0;
  color: #000;
  letter-spacing: 0;
}

#footer .customer .sns02 h1 {
  margin: 0 0 5px 0;
  font-size: 22px;
  font-weight: 550;
}

#footer .customer .sns02 h2 {
  padding: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.5px;
}

#footer .customer .sns02 h2 i {
  font-size: 30px;
  margin-right: 4px;
}

#footer .customer .sns02 h2 a {
  color: #0457a1;
}

#footer .customer .sns02 h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

#footer .customer .sns02 h3 a {
  color: #fff;
}

#footer .customer .sns02 h3 span {
  padding: 2px 10px;
  border: 1px solid #eee;
  border-radius: 20px;
  margin-right: 3px;
}

#footer .customer .sns02 h3 i {
  vertical-align: bottom;
  margin-right: 4px;
}

#footer .admin {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
}

#footer .admin a {
  display: block;
  padding: 3px 5px;
  background: #232323;
  font-size: 11px;
  color: #fff;
}

#footer .top {
  position: absolute;
  top: 17px;
  right: 0;
  color: #fff;
}

#md {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 35px 0;
  background: url("/img/banner/md_bg.png") no-repeat 50% 0;
  box-sizing: border-box;
  margin-top: -1px;
}

#md ul {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
  margin-top: -88px;
}

#md ul li {
  color: #fff;
  text-align: center;
}

#md ul li h2 {
  padding: 65px 0 10px 0;
  font-size: 48px;
  font-weight: 650;
}

#md ul li h3 {
  padding: 0 0 20px 0;
  font-size: 18px;
  font-weight: 350;
  line-height: 1.5;
}

#md ul li span {
  padding: 5px 13px;
  border: 1px solid #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 300;
}

#medal {
  width: 1200px;
  margin: 0 auto;
  padding: 30px 0 80px 0;
  text-align: center;
}

.work {
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 100px 0 0 0;
  background: url("") no-repeat 50% 0;
  background-size: cover;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}

.work>h2 {
  padding: 0 0 10px 0;
  font-weight:700;
  font-size: 40px;
  font-weight: 550;
}

.work>h2 span {
  color: #0c5aa9;
}

.work>h3 {
  padding: 0 0 35px 0;
  font-size: 22px;
  font-weight: 300;
}

.work>ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 0;
  box-sizing: border-box;
}

.work>ul>li {
  position: relative;
  width: 100%;
  height: 325px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.work>ul>li:hover img {
  transition: all ease 0.3s 0s;
  transform: scale(1.05, 1.05);
}

.work>ul>li .txt {
  position: absolute;
  right: 30px;
  bottom: 20%;
  z-index: 5;
  color: #fff;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.work>ul>li .txt>h2 {
  padding: 0 0 10px 0;
  font-size: 42px;
  font-weight: 650;
}

.work>ul>li .txt>h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.work>ul>li:nth-child(4),
.work>ul>li:nth-child(5) {
  width: 49%;
}

.work>ul>li:nth-child(4) .txt,
.work>ul>li:nth-child(5) .txt {
  right: 0;
  bottom: 10%;
  padding: 10px 40px 10px 10px;
  background: rgba(0, 0, 0, 0.30);
}

.person {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 120px 0 0 0;
  background: url("/img/banner/md_bg.jpg") no-repeat 0 0;
  background-size: cover;
  color: #000;
  text-align: center;
  box-sizing: border-box;
}

.person>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  height: auto;
  margin: 0 auto;
}

.person>ul>li {
  width: 49%;
  max-height: 100%;
  overflow: hidden;
}

.person>ul>li .txt {
  width: auto;
  margin: 0 auto;
  text-align: left;
}

.person>ul>li .txt>h2 {
  padding: 0;
  font-size: 26px;
  font-weight: 800;
  color: #1a449f;
}

.person>ul>li .txt>h2 span {
  font-weight: 650;
  color: #0075d3;
}

.person>ul>li .txt>h3 {
  padding: 15px 0 30px 0;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}

#count {
  width: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}

#count>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  padding: 0;
  text-align: center;
}

#count>ul>li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 32%;
  padding: 30px 0;
  border-radius: 15px;
  background: #184bab;
}

#count>ul>li .img {
  width: auto;
  margin: 0 auto;
}

#count>ul>li>h2 {
  padding: 15px 0 0 0;
  font-family: 'Paperlogy-3Light';
  font-size: 22px;
  color: #fff;
}

#gallery {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #eee;
}

#gallery>h2 {
  padding: 0 0 30px 0;
  font-weight:700;
  font-size: 42px;
  font-weight: 550;
}

#gallery>h2 span {
  color: #0c5aa9;
}

#gallery>h3 {
  padding: 0 0 35px 0;
  font-size: 24px;
  font-weight: 300;
}

#online {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 120px 0;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

#online::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/img/banner/online_bg.jpg") no-repeat 50% 0;
  background-size: cover;
  content: "";
  filter: blur(0px);
  opacity: 0.6;
}

#online>ul {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#online>ul>li {
  display: table;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  box-sizing: border-box;
}

#online>ul>li.res {
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.0);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  margin-top: 40px;
}

#online>ul>li.res h2 {
  padding: 0 0 10px 0;
  font-size: 32px;
  font-weight: 650;
}

#online>ul>li.res h3 {
  font-size: 24px;
  font-weight: 300;
}

#online>ul>li.res p {
  width: 100%;
  height: 370px;
  margin: 0 auto;
  padding: 25px 0 0 0;
}

#online>ul>li.cs {
  color: #fff;
  text-align: left;
}

#online>ul>li.cs>h2 {
  padding: 0 0 15px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

#online>ul>li.cs>h2 span {
  font-weight: 650;
}

#online>ul>li.cs>h3 {
  padding: 0 0 10px 0;
  font-family: 'Montserrat';
  font-size: 42px;
  font-weight: 650;
  line-height: 1.1;
}

#online>ul>li.cs>h3 span {
  font-size: 64px;
  color: #00a1e8;
}

#online>ul>li.cs>h3 a {
  color: #fff;
}

#online>ul>li.cs>h4 {
  padding: 10px 0 0 0;
  font-family: 'Montserrat';
  font-size: 26px;
  font-weight: 450;
  text-align: left;
  letter-spacing: 0;
}

#online>ul>li.cs>h4 span {
  display: inline-block;
  width: 105px;
  margin: 0 5px 0 0;
  padding: 5px 0;
  border: 1px solid #fff;
  border-radius: 7px;
  font-size: 22px;
  text-align: center;
}

#online>ul>li.cs p {
  display: inline-block;
  padding: 30px 10px 0 0;
}

#online>ul>li.cs>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

#online>ul>li.cs>ul>li {
  width: auto;
}

#online>ul>li.cs>ul>li>h2 {
  padding: 0 0 5px 0;
  font-size: 38px;
  font-weight: 500;
}

#online>ul>li.cs>ul>li>h2 span {
  font-weight: 700;
  color: #64a6ff;
}

#online>ul>li.cs>ul>li>h3 {
  font-size: 24px;
  font-weight: 400;
}

#online>ul>li.cs>ul>li.cs02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
}

#online>ul>li.cs>ul>li.cs02 i {
  font-size: 70px;
  margin-right: 20px;
}

#online>ul>li.cs>ul>li.cs02>span>h2 {
  padding: 0 0 5px 0;
  font-size: 30px;
  font-weight: 500;
}

#online>ul>li.cs>ul>li.cs02>span>h2 b a {
  font-size: 40px;
  font-weight: 700;
  color: #64a6ff;
}

#online>ul>li.cs>ul>li.cs02>span>h3 {
  font-size: 24px;
  font-weight: 400;
}

#online>ul>li.cs>ul>li.cs02>span>h3 d a {
  font-weight: 600;
  color: #fff;
}

/* #online Form Overrides (이미지 레이아웃 매칭) */
#online .sc-contact-form {
  padding: 0;
}

#online .sc-form-grid {
  gap: 15px;
}

#online .sc-field {
  position: relative;
}

#online .sc-field label {
  display: none;
}

#online .sc-field input[type="text"],
#online .sc-field input[type="date"],
#online .sc-field select,
#online .sc-field textarea {
  padding: 20px 22px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  color: #333;
}

#online .sc-field input::placeholder,
#online .sc-field textarea::placeholder {
  color: #999;
}

#online .sc-field textarea {
  min-height: 140px;
}

#online .sc-privacy-box {
  display: none;
}

#online .sc-agree {
  color: #fff;
  font-size: 15px;
}

#online .sc-agree input {
  accent-color: #1a6dbc;
}

#online .sc-submit-btn {
  margin-top: 15px;
  padding: 22px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
  background: #1a6dbc;
}

#online .sc-submit-btn:hover {
  background: #145a9e;
}

#online .sc-form-msg {
  color: #fff;
}

.intro {
  display: flex;
  height: 100vh;
}

.intro .section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  color: #fff;
  text-align: center;
}

.intro .section.left {
  background: url('/img/banner/intro_01.png') no-repeat center center/cover;
}

.intro .section.md {
  background: url('/img/banner/intro_03.png') no-repeat center center/cover;
}

.intro .section.right {
  background: url('/img/banner/intro_02.png') no-repeat 100% 0;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.intro .section .content {
  position: relative;
  z-index: 10;
}

.intro .section .conten .intro_logo {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.intro .section .conten .intro_logo span {
  color: #6fcf97;
}

.intro .section .subtext {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.intro_btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #fff;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 1.5rem;
}

.intro_btn i {
  vertical-align: middle;
  font-size: 14px;
}

.intro_btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .work {
    padding: 60px 0 0 0;
  }

  .work>h2 {
    padding: 0 0 5px 0;
    font-size: 20px;
  }

  .work>h3 {
    font-size: 14px;
    padding-bottom: 15px;
  }

  .work>ul {
    flex-direction: column;
    padding: 0 15px;
  }

  .work>ul>li {
    height: 85px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .work>ul>li .img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .work>ul>li .img img {
    width: 100%;
    height: 100%;
    transition: all ease 0.3s 0s;
    object-fit: cover;
  }

  .work>ul>li .txt {
    right: 10px;
    bottom: 10px;
    width: 100px;
    padding: 0;
    text-align: left;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }

  .work>ul>li .txt>h2 {
    padding: 0;
    font-size: 16px;
  }

  .work>ul>li .txt>h3 {
    font-size: 10px;
  }

  .work>ul>li:nth-child(4),
  .work>ul>li:nth-child(5) {
    width: 100%;
  }

  .work>ul>li:nth-child(4) .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .work>ul>li:nth-child(5) .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .work>ul>li:nth-child(4) .txt,
  .work>ul>li:nth-child(5) .txt {
    right: 10px;
    bottom: 10px;
    padding: 0;
    background: none;
    text-align: left;
  }

  .person {
    padding: 60px 0 0 0;
    background-position: center top;
  }

  .person>ul {
    flex-direction: column;
    padding: 0 15px;
  }

  .person>ul>li {
    width: 100%;
    margin-bottom: 0;
  }

  .person>ul>li .txt {
    width: 100%;
    text-align: center;
  }

  .person>ul>li .txt>h2 {
    font-size: 16px;
  }

  .person>ul>li .txt>h2 span {
    font-weight: 600;
  }

  .person>ul>li .txt>h3 {
    padding: 5px 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
  }

  .person>ul>li .txt>h3 span {
    font-weight: 600;
  }

  #count>ul {
    gap: 5px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  #count>ul>li {
    width: 32%;
    padding: 15px 0;
  }

  #count>ul>li .img {
    height: 35px;
    margin: 0 auto;
  }

  #count>ul>li .img img {
    height: 100%;
  }

  #count>ul>li>h2 {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 13px;
  }

  #gallery {
    width: 100%;
    padding: 60px 0;
  }

  #gallery>h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  #gallery>h3 {
    font-size: 16px;
    padding-bottom: 25px;
  }

  #online {
    padding: 60px 0;
  }

  #online>ul {
    width: 95%;
    padding: 0 0;
  }

  #online>ul>li.res {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
  }

  #online>ul>li.res h2 {
    font-size: 22px;
  }

  #online>ul>li.res h3 {
    font-size: 18px;
  }

  #online>ul>li.res p {
    height: auto;
    padding: 15px 0 0 0;
  }

  #online>ul>li.cs {
    text-align: center;
  }

  #online>ul>li.cs>h2 {
    font-size: 18px;
  }

  #online>ul>li.cs>h3 {
    font-size: 20px;
  }

  #online>ul>li.cs>h3 span {
    font-size: 38px;
  }

  #online>ul>li.cs>h4 {
    font-size: 18px;
  }

  #online>ul>li.cs>h4 span {
    width: auto;
    padding: 4px 8px;
    font-size: 16px;
  }

  #online>ul>li.cs p {
    padding: 20px 0 0 0;
  }

  #online>ul>li.cs>ul {
    gap: 30px;
    flex-direction: column;
  }

  #online>ul>li.cs>ul>li {
    width: 100%;
  }

  #online>ul>li.cs>ul>li>h2 {
    font-size: 20px;
  }

  #online>ul>li.cs>ul>li>h3 {
    font-size: 14px;
    line-height: 1.6;
  }

  #online>ul>li.cs>ul>li.cs02 {
    gap: 2px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  #online>ul>li.cs>ul>li.cs02 i {
    font-size: 40px;
    margin-right: 10px;
  }

  #online>ul>li.cs>ul>li.cs02>span>h2 {
    font-size: 20px;
  }

  #online>ul>li.cs>ul>li.cs02>span>h2 b a {
    font-size: 28px;
  }

  #online>ul>li.cs>ul>li.cs02>span>h3 {
    font-size: 16px;
  }
}
