@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --t-color: #191919;
  --t-light-color: rgba(25, 25, 25, 0.5);
  --t-muted-color: #666;
  --c-yellow: #ffc01d;
  --c-yellow-dark: #e5a900;
  --b-black: rgba(0, 0, 0, 0.65);
  --b-white: rgba(255, 255, 255, 0.5);
  --box-shadow: rgba(0, 0, 0, 0.15);
  --surface-color: #fff;
  --surface-muted-color: #f8f8f8;
  --border-light-color: rgba(25, 25, 25, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --marquee-width: 100vw;
  --marquee-height: 150px;
  --marquee-elements: 10;
  --marquee2-elements: var(--marquee-elements);
  --marquee3-elements: var(--marquee-elements);
  --marquee-elements-displayed: 7;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee2-animation-duration: calc(var(--marquee2-elements) * 5s);
  --marquee3-animation-duration: calc(var(--marquee3-elements) * 5s);
}

* {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto,
    'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR',
    'Malgun Gothic', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 0;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}
::selection {
    background: #ffc01d;
    color: #111;
}
a {
  text-decoration: none;
  transition: 300ms;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

h3,
p {
  word-break: keep-all;
  overflow-wrap: break-word;
}


section {
  padding: 7vh 0 5vh;
}

b {
  font-weight: 600;
}

.btn {
  border: 0;
  border-radius: 0;
}

.btn.btn-primary:hover {
  background-color: #017fb5;
}

.row::before,
.row::after {
  content: none !important;
  display: none !important;
}

.px-100 {
  padding: 0 100px;
}

.title {
  font-weight: 700;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-section {
  padding: 80px 0;
}

.site-section-tight {
  padding: 45px 0;
}

.site-section-flush {
  padding: 0 0 10vh;
}

.site-container {
  margin: 0 auto;
}

.site-card {
  background: var(--surface-color);
  border: 1px solid var(--border-light-color);
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  color: var(--t-color);
  font-size: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-btn:hover {
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.site-btn-primary {
  background: var(--c-yellow);
  border-color: var(--c-yellow);
}

.site-btn-primary:hover {
  color: var(--t-color);
  background: var(--c-yellow-dark);
  border-color: var(--c-yellow-dark);
}

.site-btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
}

.site-btn-outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.site-btn-dark {
  color: #fff;
  background: var(--t-color);
  border-color: var(--t-color);
}

.site-btn-dark:hover {
  color: #fff;
  background: #000;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--t-color);
}

.section-heading-left {
  align-items: flex-start;
  text-align: left;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--t-light-color);
}

.section-title {
  margin: 0;
  line-height: 1.25;
}

.section-desc {
  margin: 14px 0 0;
}

.page-hero {
  padding: 15vh 0 5vh;
  text-align: center;
}

.page-hero-tall {
  padding: 15vh 0 5vh;
}

.page-hero-title {
  margin: 0;
  color: var(--t-color);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.2;
}

.page-hero-title.light {
  color: #fff;
}

.subnav-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.subnav-list {
  gap: clamp(32px, 6vw, 86px);
}

.subnav-list-compact {
  gap: clamp(32px, 5vw, 72px);
}

.subnav-bar-wide {
  width: 100%;
  top: 0;
}

.subnav-bar-medium {
  width: 100%;
  top: 0;
}

.subnav-bar-narrow {
  width: 100%;
  top: 0;
}


.site-topbar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 40px;
  padding: 0 5%;
  background: #000;
}

.site-social-links {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}

.site-social-link {
  display: inline-flex;
  align-items: center;
  width: 30px;
}

.site-social-link img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.site-logo-mobile {
  width: min(45%, 180px);
  padding: 0;
}

.site-logo-pc {
  max-width: 210px;
  padding: 0;
}

.site-mobile-login {
  color: var(--t-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.site-nav-actions {
  text-align: right;
}


.site-ai-link {
  color: var(--c-yellow) !important;
}


.site-footer {
  padding: 1rem 0;
  color: #858585;
  font-size: 14px;
}

.site-footer-col {
  color: #858585;
}

.site-footer-logo {
  width: min(50%, 210px);
}

.site-footer-heading {
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.site-footer-label {
  display: inline-block;
  width: 25px;
}


.site-copyright {
  color: #858585;
  font-size: 14px;
  background: #2e2e2e;
}

.site-copyright .row {
  min-height: 44px;
}

.catalog-qr {
  margin-top: 30px;
}

.catalog-caption {
  margin-top: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.logo-section {
  width: 100%;
  padding: 0;
}

.logo-marquee-offset {
  margin-top: -35px;
}

.logo-marquee-muted {
  margin-top: 0;
  background: var(--surface-muted-color);
}

.media-rounded {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-fluid-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fluid-contain {
  width: 100%;
  object-fit: contain;
}

.cert-mark-card {
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.dot-stack {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 5vh;
}

.dot-strong {
  opacity: 1;
}

.dot-medium {
  opacity: 0.7;
}

.dot-light {
  opacity: 0.4;
}

/* 네비게이션 접힘(navbar-expand-lg = 992px)과 동일한 기준으로 맞춤 */
@media (min-width: 992px) {
  .onlyMobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .onlyPC {
    display: none !important;
  }
}

.tab-content {
  display: none;
  border-radius: 5px;
}

.tab-content.active {
  display: block;
}

.collapse.in {
  display: block !important;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #fff;
}

.preloader > i,
.preloader > img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: auto;
  margin-top: -15px;
  margin-left: -15px;
}

.preloader > i {
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 36px;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated-text {
  opacity: 0;
  transform: translateX(-50px);
}

.animated-text.animate {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animated-text:nth-child(1) {
  animation-delay: 0s;
}

.animated-text:nth-child(2) {
  animation-delay: 0.3s;
}

.animated-text:nth-child(3) {
  animation-delay: 0.6s;
}

.animated-text:nth-child(4) {
  animation-delay: 0.9s;
}

.animated-text.title {
  font-weight: 600;
}

.animated-text.sub-title {
  margin-bottom: 20px;
  color: #000;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
}

.animated-text.content {
  color: #000;
  font-size: 2rem;
  line-height: 1.2;
}

#footer {
  color: #fff;
}

#footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.footer-top {
  position: relative;
  padding: 30px 0;
}

#quk_warp {
  position: fixed;
  z-index: 998 !important;
  display: inline-block;
  width: 70px;
  font-size: 0;
  line-height: 0;
}

#quk_warp > .qus_area {
  position: relative;
}

#quk_warp > .qus_area > .btn_quk_warp {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  background-position: right center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50px;
  box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: left;
  transition: all 0.5s ease;
  appearance: none;
}

#quk_warp > .qus_area > .btn_quk_warp + .btn_quk_warp {
  margin-top: 10px;
}

#quk_warp > .qus_area > .btn_quk_warp > span {
  position: relative;
  display: block;
  color: #000;
  font-size: 16px;
  line-height: 70px;
  opacity: 0;
  transform-origin: 50% 50%;
  transition: 0.3s;
}

#quk_warp > .qus_area > .btn_quk_warp.iconss01 {
  background-color: #3983c0;
  background-image: url('../../eggpool/images/quick_icon01.png');
}

#quk_warp > .qus_area > .btn_quk_warp.iconss02 {
  background-color: #fedc00;
  background-image: url('../../eggpool/images/quick_icon02.png');
}

#quk_warp > .qus_area > .btn_quk_warp.iconss03 {
  background-image: url('../../eggpool/images/quick_icon04.png');
}

#quk_warp > .qus_area > .btn_quk_warp.iconss04 {
  background-color: var(--t-color);
  background-image: none;
}

#quk_warp > .qus_area > .btn_quk_warp.iconss04::after {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #fff;
  font-family: "Segoe UI Symbol", Arial, sans-serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
  content: "\270E";
}

#quk_warp > .qus_area > .btn_quk_warp.iconss04 > span {
  color: #fff;
}

#quk_warp > .qus_area > .btn_quk_warp:hover {
  width: 155px;
  margin-left: -85px;
}

#quk_warp > .qus_area > .btn_quk_warp:hover > span {
  padding-left: 25px;
  opacity: 1;
  transition-delay: 0.2s;
}

body.quick-inquiry-open {
  overflow: hidden;
}

.quick-inquiry-modal[hidden] {
  display: none;
}

.quick-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quick-inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.quick-inquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  padding: 30px;
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.quick-inquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--t-color);
  background: #f4f4f4;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.quick-inquiry-header {
  padding-right: 36px;
}

.quick-inquiry-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--c-yellow-dark);
  font-size: 14px;
  font-weight: 800;
}

.quick-inquiry-header h2 {
  margin: 0;
  color: var(--t-color);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.quick-inquiry-header p {
  margin: 10px 0 0;
  color: var(--t-muted-color);
  font-size: 15px;
  line-height: 1.6;
}

.quick-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-top: 24px;
}

.quick-inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-inquiry-field.is-full,
.quick-inquiry-agree,
.quick-inquiry-submit {
  grid-column: 1 / -1;
}

.quick-inquiry-field label {
  margin: 0;
  color: var(--t-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.quick-inquiry-field label span {
  color: var(--c-yellow-dark);
}

.quick-inquiry-field input,
.quick-inquiry-field select,
.quick-inquiry-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--t-color);
  font-size: 16px; /* iOS 포커스 시 자동 확대 방지 */
  line-height: 1.4;
  background: #fff;
  border: 1px solid var(--border-light-color);
  border-radius: 8px;
  outline: none;
}

.quick-inquiry-field input:focus,
.quick-inquiry-field select:focus,
.quick-inquiry-field textarea:focus {
  border-color: rgba(25, 25, 25, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 192, 29, 0.18);
}

.quick-inquiry-field textarea {
  min-height: 110px;
  resize: vertical;
}

.quick-inquiry-agree {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 2px 0 0;
  color: var(--t-muted-color);
  font-size: 14px;
  line-height: 1.5;
}

.quick-inquiry-agree input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 16px;
}

.quick-inquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  color: var(--t-color);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  background: var(--c-yellow);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-inquiry-submit:hover {
  background: var(--c-yellow-dark);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 992px) and (max-width: 1199px),
  (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {

  .site-section {
    padding: 56px 0;
  }





  .page-hero,
  .page-hero-tall {
    padding: 15vh 0 5vh;
  }

  .site-mobile-login {
    font-size: 1.05rem;
  }

  .site-nav-actions {
    width: auto;
    text-align: left;
  }

  .subnav-list,
  .subnav-list-compact {
    gap: 28px !important;
  }

  .subnav-bar-wide,
  .subnav-bar-medium {
    left: 0;
    width: 100% !important;
  }

  .subnav-bar-narrow {
    left: 0;
    width: 100% !important;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }


  #quk_warp > .qus_area > .btn_quk_warp {
    background-position: 95% 50%;
  }

  #quk_warp > .qus_area > .btn_quk_warp > span {
    font-size: 14px;
    line-height: 50px;
  }


  #quk_warp > .qus_area > .btn_quk_warp:hover > span {
    padding-left: 20px;
  }

  #quk_warp > .qus_area > .btn_quk_warp.iconss04::after {
    font-size: 20px;
  }




  .quick-inquiry-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 499px) {
  #quk_warp > .qus_area > .btn_quk_warp:hover {
    width: 50px;
    margin-left: 0;
  }

  #quk_warp > .qus_area > .btn_quk_warp:hover > span {
    display: none;
    padding-left: 0;
  }
}
