/* 잘난체 고딕 */
@font-face {
  font-family: "YeogiOttaeJalnanGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff")
    format("woff");
  font-weight: normal;
  font-display: swap;
}

/* JetBrains */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
/*
    font-family: "JetBrains Mono", monospace;
  */

/* Pretendard */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/*
   font-family: "Pretendard Variable", sans-serif;
    */

/* FONT-AWESOME */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

/* ----------------- */
/* 00. Root */
/* ----------------- */
:root {
  --point1: #0b8e36;
  --brand: #00501a;
  --brand2: #0e6eff;
  --point: #00e5ff;
  --point2: #aacf76;
  --maw: 1440px;
  --section-gap: 60px;
  --gap: 20px;
  --pdy: 120px;
  --line: #999;
}

@media (max-width: 768px) {
  :root {
    --section-gap: 40px;
    --gap: 10px;
    --pdy: 80px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  list-style: none;
  font-family: "Pretendard Variable", sans-serif;
  word-break: keep-all;
}

html,
body {
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

.custom-wrap img,
.custom-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 텍스트 오버플로우 제어 */
.txt-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 줄 수 제한 */
  line-clamp: 3;
  display: -webkit-box;
}

.mo-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .mo-only {
    display: block;
  }

  br {
    display: none !important;
  }
}

/* ----------------- */
/* 01. Font */
/* ----------------- */

/* 메인 타이틀 */
.custom-wrap h1 {
  font-size: clamp(24px, 2.5vw, 40px);
  font-family: "YeogiOttaeJalnanGothic";
  color: #333;
  text-transform: uppercase;
  font-weight: 300;
  /* line-height: 35px; */
}

/* 영문 서브타이틀 */
.custom-wrap h2 {
  font-size: clamp(16px, 1.5vw, 24px);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brand);
}

/* 타이틀 본문 */
.custom-wrap h3 {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  color: #666;
  line-height: clamp(28px, 1vw, 35px);
}

/* 히어로 타이틀 */
.custom-wrap .main h1 {
  font-size: clamp(24px, 2.5vw, 60px);
  font-family: "YeogiOttaeJalnanGothic";
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.custom-wrap .main h2 {
  font-size: clamp(16px, 1.5vw, 24px);
  color: #fff;
  text-transform: uppercase;
}

/* 히어로 본문 */
.custom-wrap .main h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #fff;
  text-transform: uppercase;
  line-height: 35px;
}

/* 본문 타이틀 */
.custom-wrap h4 {
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 500;
  color: #333;
}

/* 본문 서브타이틀 */
.custom-wrap h5 {
  font-size: clamp(14px, 1vw, 16px);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
}

/* 본문 한글 서브타이틀 */
.custom-wrap h6 {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

/* 본문 */
.custom-wrap p {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  color: #666;
  line-height: clamp(24px, 1vw, 35px);
}

/* 하이라이트 */
.custom-wrap .highlight {
  color: var(--point) !important;
  font-family: inherit;
}

/* 색상 반전 */
.custom-wrap .invert h1,
.custom-wrap .invert h3,
.custom-wrap .invert h4,
.custom-wrap .invert h5 {
  color: #fff;
}

.custom-wrap .invert h2 {
  color: #aaa;
}

.custom-wrap .invert p {
  color: #ddd;
}

/* 영문 */
.jetbrain {
  font-family: "JetBrains Mono", monospace !important;
  font-weight: 700 !important;
  color: var(--brand);
}

/* ----------------- */
/* 02. Structure */
/* ----------------- */

/* 섹션 패딩 */
.custom-wrap .section {
  padding-top: var(--pdy);
}
.custom-wrap .section.pb {
  padding-bottom: var(--pdy);
}

.custom-wrap .section.main {
  padding-top: 0;
}

/* 섹션 타이틀 */
.custom-wrap .section-title {
  width: 90%;
  max-width: var(--maw);
  margin: 0 auto var(--section-gap);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* 컨텐츠 컨테이너 */
.custom-wrap .container {
  width: 90%;
  max-width: var(--maw);
  margin: 0 auto;
}

/* 컨텐츠 와이드 컨테이너 */
.custom-wrap .w-container {
  width: 100%;
}

/* 와이드 컨테이너 그리드 */
.custom-wrap .w-container .prod-grid {
  max-width: var(--maw);
  width: 90%;
  margin: 0 auto;
}

/* 모바일 섹션 타이틀 좌측 정렬 */
@media (max-width: 768px) {
  .custom-wrap .section-title {
    text-align: left;
    width: 80%;
  }
  .custom-wrap h1 {
    line-height: 35px;
  }
}

/* ----------------- */
/* 03. Primary Button Default*/
/* ----------------- */

/* Animation Lines */
.line-h {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.line-v {
  width: 1px;
  height: 100%;
  background: var(--line);
}

/* Primary Button Default */
.primary-btn,
.primary-btn-w {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  color: #999;
  display: inline-block;
  overflow: hidden;
  transition: all 0.5s ease;
}

.primary-btn {
  border-bottom: 1px solid #999;
  background: linear-gradient(90deg, var(--brand) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

/* .primary-btn::before {
  content: "VIEW MORE";
} */

.primary-btn::after {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  margin-left: 10px;
}
.primary-btn:hover {
  background-position: 0% 0%;
  color: #fff;
  border-bottom: 1px solid var(--brand);
}

.primary-btn-w {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.primary-btn-w:hover {
  color: #333;
}
.primary-btn-w::before {
  content: "MORE";
}
.primary-btn-w::after {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  margin-left: 10px;
}
.primary-btn-w .line-h,
.primary-btn-w .line-v {
  position: absolute;
  transform: scale(0);
  transition: all 0.5s ease;
}

.primary-btn-w .line-h:nth-child(1) {
  top: 0;
  left: 0;
  transform-origin: left center;
}
.primary-btn-w .line-h:nth-child(2) {
  top: calc(100% - 1px);
  left: 0;
  transform-origin: right center;
}
.primary-btn-w .line-v:nth-child(3) {
  left: 0;
  top: 0;
  transform-origin: center bottom;
}
.primary-btn-w .line-v:nth-child(4) {
  left: calc(100% - 1px);
  top: 0;
  transform-origin: center top;
}
.primary-btn-w:hover .line-h,
.primary-btn-w:hover .line-v {
  transform: scale(1);
}

.invert .primary-btn,
.invert .primary-btn-w {
  color: #ddd;
}
.invert .primary-btn-w:hover {
  color: #fff;
}
.invert .primary-btn-w .line-h,
.invert .primary-btn-w .line-v {
  background-color: #fff;
}

@media (max-width: 768px) {
  .primary-btn-w {
    padding: 5px;
    top: 0;
    transform: translateY(0);
  }
  .primary-btn-w::before {
    content: "";
  }
  .primary-btn-w::after {
    content: "\2b";
    font-size: 20px;
    color: var(--brand);
    margin-left: 0;
  }
  .invert .primary-btn-w::after {
    color: #fff;
  }
}

/* ----------------- */
/* Tabs */
/* ----------------- */
.custom-wrap .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px;
}
.custom-wrap .tab-item {
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  font-size: 16px;
  font-weight: 300;
}
.custom-wrap .tab-item:hover {
  color: var(--brand);
}
.custom-wrap .tab-item.active {
  color: var(--brand);
  font-weight: 500;
}
.custom-wrap .tab-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.3s ease;
  background-color: transparent;
}
.custom-wrap .tab-item.active::before {
  background-color: var(--brand);
}

/* ----------------- */
/* Header*/
/* ----------------- */

#custom-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 10px 0;
  height: 80px;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

.custom-header-inner {
  width: 90%;
  max-width: var(--maw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
}

.custom-logo {
  width: 180px;
}
.custom-logo img {
  object-fit: contain;
}

.custom-depth1-wrap {
  display: flex;
}

.custom-depth1 a {
  padding: 16px 20px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
}

.custom-header.active {
  background-color: #fff;
}

.custom-header.active .custom-depth1 a {
  color: #333;
}

.custom-header .custom-depth1 a:hover {
  color: var(--brand);
  font-weight: 700;
}

/* ----------------- */
/* Dropdown */
/* ----------------- */
.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  z-index: 999;
  display: none;
}

.custom-drop-wrap {
  width: 90%;
  max-width: var(--maw);
  margin: 0 auto;
  padding: 40px 0;
}
.custom-drop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.custom-drop-item {
  display: flex;
}
.custom-drop-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.custom-drop-txt {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 1 1 auto;
  font-size: 70px;
  font-weight: 700;
  color: #f2f2f2;
  line-height: 1;
}
.custom-drop-line {
  display: block;
  width: 1px;
  flex: 1 1 100%;
  margin: 0 auto;
  background-color: #f2f2f2;
}

.custom-drop-link {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.custom-drop-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.custom-drop-menu {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  transition: all 0.3s ease;
}
.custom-drop-menu.depth2-light {
  font-weight: 400;
}
.custom-drop-menu:hover {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 1024px) {
  #custom-header .custom-logo {
    width: 140px;
  }
  #custom-header .custom-gnb {
    display: none;
  }
}

/* ==================================================
   MOBILE HEADER
================================================== */

.mobile-menu-btn {
  display: none;

  position: relative;
  width: 42px;
  height: 42px;

  padding: 0;
  border: 0;
  background: transparent;

  cursor: pointer;
  z-index: 10001;
}

.mobile-menu-btn span {
  display: block;

  position: absolute;

  width: 90%;

  width: 22px;
  height: 1.5px;
  left: 50%;
  transform: translateX(-50%);

  background: #fff;

  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 13px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 20px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 27px;
}

/* 메뉴 열렸을 때 햄버거 → X */

.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 모바일 버튼 색상 */
#custom-header.active .mobile-menu-btn span,
.mobile-menu-btn.is-open span {
  background: #333;
}

/* ==================================================
   MOBILE MENU
================================================== */

.mobile-menu {
  display: none;

  position: fixed;
  top: 0;
  right: 0;

  width: min(420px, 88vw);
  height: 100dvh;

  background: #fff;

  z-index: 10000;

  transform: translateX(100%);

  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);

  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

/* 배경 딤 */

.mobile-menu-dim {
  display: none;

  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 9999;

  opacity: 0;

  transition: opacity 0.3s ease;
}

.mobile-menu-dim.is-open {
  opacity: 1;
}

/* ==================================================
   MENU INNER
================================================== */

.mobile-menu-inner {
  min-height: 100%;
  padding: 100px 28px 35px;

  display: flex;
  flex-direction: column;
}

/* ==================================================
   MENU HEADER
================================================== */

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 24px;

  border-bottom: 1px solid #111;
}

.mobile-menu-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;

  color: #004015;
}

.mobile-menu-close {
  position: relative;

  width: 32px;
  height: 32px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.mobile-menu-close span {
  position: absolute;

  top: 15px;
  left: 5px;

  width: 22px;
  height: 1.5px;

  background: #111;
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

/* ==================================================
   NAV
================================================== */

.mobile-nav {
  padding-top: 10px;
}

.mobile-nav-group {
  border-bottom: 1px solid #e8e8e8;
}

.mobile-nav-title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding: 21px 0;

  border: 0;
  background: transparent;

  text-align: left;

  cursor: pointer;
}

.mobile-nav-title span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;

  color: #111;
}

/* + */

.mobile-nav-title i {
  position: relative;

  display: block;

  width: 18px;
  height: 18px;
}

.mobile-nav-title i::before,
.mobile-nav-title i::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 14px;
  height: 1px;

  background: #111;

  transform: translate(-50%, -50%);

  transition: transform 0.3s ease;
}

.mobile-nav-title i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* active → - */

.mobile-nav-group.is-open .mobile-nav-title i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ==================================================
   SUB MENU
================================================== */

.mobile-submenu {
  display: none;

  padding: 0 0 17px;
}

.mobile-submenu a {
  display: block;

  padding: 9px 0;

  font-size: 14px;
  line-height: 1.5;

  color: #777;

  text-decoration: none;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.mobile-submenu a:hover {
  color: #004015;
  padding-left: 5px;
}

/* ==================================================
   BOTTOM
================================================== */

.mobile-menu-bottom {
  margin-top: auto;

  padding-top: 30px;
}

.mobile-menu-bottom a {
  display: block;

  padding: 8px 0;

  font-size: 13px;

  color: #555;

  text-decoration: none;
}

.mobile-menu-bottom span {
  display: inline-block;

  width: 55px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;

  color: #004015;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu-dim {
    display: block;
    pointer-events: none;
  }

  .mobile-menu-dim.is-open {
    pointer-events: auto;
  }
}

/* ========================================
   Floating Contact Menu
======================================== */

.floating-menu {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ========================================
   Contact Actions
======================================== */

.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.floating-menu.is-open .floating-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ========================================
   Common Button
======================================== */

.floating-btn,
.floating-toggle,
.floating-top {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  text-decoration: none;

  box-sizing: border-box;

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-btn:hover,
.floating-toggle:hover,
.floating-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Contact Buttons
======================================== */

.floating-btn {
  position: relative;

  color: #fff;

  font-size: 18px;
}

/* 전화 */
.floating-btn.phone {
  background: var(--point1);
}

/* 메일 */
.floating-btn.mail {
  background: var(--point1);
  color: #fff;
}

/* 팩스 */
.floating-btn.fax {
  background: var(--point1);
}

/* 1:1 문의 */
.floating-btn.inquiry {
  background: var(--point1);
}

/* ========================================
   Tooltip
======================================== */

.floating-btn span {
  position: absolute;

  right: calc(100% + 12px);
  top: 50%;

  transform: translateY(-50%) translateX(5px);

  padding: 8px 13px;

  border-radius: 6px;

  background: #fff;
  color: #222;

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.floating-btn:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ========================================
   + Button
======================================== */

.floating-toggle {
  flex-shrink: 0;

  background: #0b8e36;
  color: #fff;

  font-size: 20px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-menu.is-open .floating-toggle {
  background: #aacf76;
  color: #18351f;
}

.floating-menu.is-open .floating-toggle i {
  transform: rotate(45deg);
}

.floating-toggle i {
  transition: transform 0.3s ease;
}

/* ========================================
   TOP Button
======================================== */

.floating-top {
  flex-shrink: 0;

  background: #777;
  color: #fff;

  font-size: 16px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

/* ========================================
   Fax Modal
======================================== */

.fax-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.fax-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 배경 */

.fax-modal-dim {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

/* 팝업 */

.fax-modal-box {
  position: relative;
  z-index: 1;

  width: min(420px, calc(100% - 40px));
  padding: 45px 35px 35px;

  background: #fff;
  border-radius: 20px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

  transform: translateY(20px) scale(0.97);

  transition: transform 0.3s ease;
}

.fax-modal.is-open .fax-modal-box {
  transform: translateY(0) scale(1);
}

/* 닫기 */

.fax-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 36px;
  height: 36px;

  border: 0;
  background: transparent;

  color: #777;
  font-size: 18px;

  cursor: pointer;
}

/* 아이콘 */

.fax-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e9f5df;
  color: var(--point1);

  font-size: 24px;
}

/* 제목 */

.fax-modal-label {
  margin: 0 0 8px;

  color: #777;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* 번호 */

.fax-modal-number {
  display: block;

  margin-bottom: 25px;

  color: #333;

  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* 복사 버튼 */

.fax-copy {
  width: 100%;
  height: 48px;

  border: 0;
  border-radius: 8px;

  background: var(--point1);
  color: #fff;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;
}

.fax-copy:hover {
  background: var(--brand);
}

/* 모달 열렸을 때 배경 스크롤 방지 */

body.modal-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .floating-menu {
    right: 18px;
    bottom: 18px;

    gap: 8px;
  }

  .floating-actions {
    gap: 8px;
  }

  .floating-btn,
  .floating-toggle,
  .floating-top {
    width: 50px;
    height: 50px;
  }

  .floating-btn {
    font-size: 16px;
  }

  .floating-toggle {
    font-size: 18px;
  }

  .floating-top {
    font-size: 14px;
  }

  /* 모바일에서는 툴팁 숨김 */
  .floating-btn span {
    display: none;
  }

  .fax-modal-box {
    width: calc(100% - 32px);
    padding: 40px 25px 25px;
    border-radius: 16px;
  }

  .fax-modal-number {
    font-size: 24px;
  }
}

/* 카페24 노멀라이징 */
#header .inner .top_nav_box .top_mypage {
  top: 0 !important;
}
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* CTA */
.section.cta {
  padding: 60px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("img/contact.jpg") center / cover no-repeat;
}
.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-btn .primary-btn {
  border: 1px solid #ddd;
  color: #ddd;
  font-size: 16px;
  margin-left: 10px;
}

.page-link {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .cta .container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Explore */
.custom-wrap .explore {
  background-color: #00501a;
  padding: 60px 0;
}

.explore .exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-list li a {
  color: #aaa;
  transition: all 0.3s ease;
  font-size: 14px;
}
.exp-list li:first-child a {
  color: #ddd;
  font-weight: 500;
}

.exp-list a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .explore .exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}

/* Footer */
.custom-footer {
  background-color: #004015;
  padding: 60px 0;
}

.footer-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer-logo {
  width: 180px;
}
.footer-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-txt p {
  color: #aaa;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.pdf-link {
  display: none;
}
