/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #0055ff;
    text-decoration: none;
  }
  
  a:hover {
    color: #0055ff;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Roboto", sans-serif;
  }
.navbar ul{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #0055ff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
  text-decoration: none;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  text-decoration: none;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: none;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header.fixed-top {
    height: 70px;
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;

    text-decoration: none; /* 밑줄 제거 */

  }
  
  #header .logo a {
    color: #222222;
  }
  
  #header .logo a span {
    color: #0055ff;
  }
  
  #header .logo img {
    max-height: 40px;
  }
  
  .scrolled-offset {
    margin-top: 70px;
  }

  /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  height: 100%;
  margin:0;
  display:flex;
  flex-direction: column;
  width: 100%;
  background: #f8f9fa;
  padding: 20px 0;
}

#footer .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 좌측 정렬 */
  align-items: flex-start; /* 요소들을 왼쪽 정렬 */
  text-align: left; /* 텍스트도 왼쪽 정렬 */
  padding-left: 80px; /* 🔹 왼쪽 여백 추가 */
}

/* Back to Top 버튼 스타일 */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  color: #fff;
  font-size: 24px;
}

.back-to-top:hover {
  background: #0056b3;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #0055ff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #0055ff;
  }
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 65vh; /* 기본 높이 */
/*   background: url("../images/image2.png") bottom center no-repeat; */
  background-size: cover; /* 화면 크기에 맞게 조절 */
  position: relative;
}

/* 화면 크기가 작아질 때 배경 조정 */
@media (max-width: 1024px) {
  #hero {
      height: 50vh; /* 태블릿 화면에서 높이 줄이기 */
  }
}

@media (max-width: 768px) {
  #hero {
      height: 40vh; /* 모바일 화면에서 더 줄이기 */
      background-position: top center; /* 이미지 위치 조정 */
  }
}

@media (max-width: 480px) {
  #hero {
      height: 35vh; /* 작은 모바일 화면에서 최소 높이 설정 */
      background-size: contain; /* 이미지를 모두 보이게 조정 */
  }
}
  #hero .container {
    position: relative;
  }
  
  #hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222222;
    font-family: "Poppins", sans-serif;
  }
  #hero h1 span {
    color: #0055ff;
  }
  
  #hero h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
  }

  
  
/*--------------------------------------------------------------
# tabulator Menu
--------------------------------------------------------------*/
    /* ✅ 컬럼 헤더를 흰색으로 변경 */
    .tabulator {
      background-color: #ffffff !important; /* 테이블 전체 배경 흰색 */
      }
  
      .tabulator .tabulator-header {
          background-color: #ffffff !important; /* 컬럼 헤더 배경 흰색 */
          color: #000000 !important; /* 컬럼 헤더 글자 검정 */
          border-bottom: 1px solid #ddd !important; /* 구분선 추가 */
      }
  
      .tabulator .tabulator-tableHolder {
          background-color: #ffffff !important; /* 데이터 부분 배경 흰색 */
      }
  
      .tabulator .tabulator-placeholder {
          background-color: #ffffff !important; /* "자료가 없습니다" 영역 흰색 */
          color: #777 !important; /* 텍스트 색상 변경 */
      }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #0055ff;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #0055ff;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0055ff;
  color: #fff;
}

::-moz-selection {
  background: #0055ff;
  color: #fff;
}

.section {
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0055ff;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #f35525;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #0055ff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0055ff;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #0055ff;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  display: inline-block;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #0055ff;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
  
  box-sizing: border-box;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #0055ff;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #0055ff;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# regiter
--------------------------------------------------------------*/
#register_agree {
  max-width: 600px;
  margin: 50px auto 0;
  padding: 70px 40px;
  background: #fff;
  border: 1px solid #d8d9de;
  border-radius: 4px;
}

#fregister textarea {
  padding: 20px;
  width: 100%;
  height: 150px;
  background: #fff;
  border: 1px solid #d8d9df;
  font-size: 12px;
  color: #98989f;
  line-height: 1.6em;
  overflow: auto;
  resize: none;
}


#fregister_chkall {
  line-height: 55px;
  border-bottom: 1px solid #d8d9df;
  text-align: left;
}
.checks2 input[type="checkbox"]:checked + label:before {
  background: url(./img/chk.png) no-repeat 50% 50% #3a8afd;
  border-color: #3a8afd;
}

.checks2 input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

#fregister .btn_confirm .btn_submit {
  padding: 0;
  height: 55px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
}
.btn_confirm .btn_cancel {
  float: left;
  display: block;
  width: 254px;
  height: 55px;
  line-height: 53px;
  font-size: 16px;
  color: #2d2f43;
  font-weight: 500;
  background: #fff;
  border: 1px solid #b4b5c1;
  border-radius: 50px;
  text-align: center;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn_confirm .btn_submit {
  float: right;
  display: block;
  width: 254px;
  height: 55px;
  line-height: 53px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  background: #3d435f;
  border: 1px solid #3d435f;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*--------------------------------------------------------------
# regiter2
--------------------------------------------------------------*/
#register_form {
  max-width: 600px;
  margin: 50px auto 0;
  padding: 70px 40px;
  background: #fff;
  border: 1px solid #d8d9de;
  border-radius: 4px;
}

.regi_table .btn_frmline {
  min-width: 90px;
  height: 40px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 14px;
  color: #2d2f43;
  font-weight: normal;
  background: #fff;
  border: 1px solid #b7bac4;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  outline: none;
  transition: all 0.3s;
}

input[type=text].reg_input, 
input[type=password].reg_input, 
select.reg_input, 
.reg_input {
  padding: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  color: #444;
  font-weight: normal;
  background: #fff;
  border: 0 !important;
  border-bottom: 1px solid #d8d9df !important;
  vertical-align: top;
  box-shadow: none !important;
  outline: none !important;
}

#register_form h3 {
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 10px 0;
  font-size: 16px;
  color: #2d2f43;
  font-weight: 500;
  border-bottom: 2px solid #3d435f;
}

#register_agree h3 {
  position: relative;
  padding: 0 0 10px 0;
  font-size: 16px;
  color: #2d2f43;
  font-weight: 500;
  border-bottom: 2px solid #3d435f;
}

#register_form h3 span.req_fa {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.regi_table tbody th label.req:before, 
#register_form h3 span.req:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  background: #e5433e;
  border-radius: 2.5px;
  overflow: hidden;
}

.regi_table tbody th label.req_fa:before, 
#register_form h3 span.req_fa:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  background: #e5433e;
  border-radius: 2.5px;
  overflow: hidden;
}

#register_form h3 span {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.regi_table tbody th label, 
#register_form h3 span {
  position: relative;
  font-size: 14px;
  color: #2d2f43;
  font-weight: 500;
  height: 20px;
  padding-left: 13px;
}

.regi_table tbody th {
  width: 130px;
  line-height: 50px;
  padding: 0;
  font-size: 14px;
  color: #2d2f43;
  font-weight: 500;
  background-color: #fff;
  border: 0;
  vertical-align: top;
  text-align: left;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# excel-download-btn
--------------------------------------------------------------*/
.excel-download-btn {
  background-color: #34C759;     /* 기본 배경 */
  color: #333333;                /* ✅ 기본 글자색 (가독성 좋은 진회색) */
  padding: 8px 16px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;  /* ✅ 글자색 전환도 부드럽게 */
  display: flex;
  align-items: center;
}

.excel-download-btn:hover {
  background-color: #2fa94f;    /* ✅ hover 배경 */
  color: #222222;               /* ✅ hover 시 글자색도 살짝 진하게 (선택사항) */
}

.excel-download-btn img {
  width: 20px;      /* ✅ 아이콘 크기 조절 */
  height: 20px;
  margin-right: 8px;
}
.tabulator .tabulator-cell {
  border-bottom: 1px solid #ccc;
}