@charset "utf-8";
@import url("./font.css");
@import url("./main.css");
html {
  font-size: 20px;
}
/* ****************** HEADER ********************** */
#header {
  width: 100%;
  z-index: 99999;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
#headerInnerWrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
}
#headerInner {
  position: relative;
  margin: 0px auto;
  -webkit-transition: padding 0.3s;
  -moz-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  -ms-transition: padding 0.3s;
  transition: padding 0.3s;
  padding: 35px 2%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo {
  position: relative;
  z-index: 100;
  padding: 0;
  vertical-align: middle;
}
#header .logo a {
  display: block;
  font-size: 0;
}
#header .logo a .logo-default {
  background: url(/img/common/logo.svg);
  display: block;
  width: 181px;
  height: 37px;
  /*width: 153px;
  height: 37.45px;*/
}
#header .logo a .logo-color {
  background: url(/img/common/logo_sticky.svg);
  display: none;
  width: 181px;
  height: 37px;
  /*width: 153px;
  height: 37.45px;*/
}
#header.fixed #headerInnerWrap {
  position: fixed;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
#header.fixed #headerInner {
  -webkit-transition: padding 0.3s;
  -moz-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  -ms-transition: padding 0.3s;
  transition: padding 0.3s;
}
#header.fixed .logo a .logo-default {
  display: none;
}
#header.fixed .logo a .logo-color {
  display: block;
}
#header.fixed .btn-secondary-white {
  background: transparent;
  border-color: var(--bs-primary-dark);
  color: var(--bs-primary-dark);
}
#header.fixed .btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.2);
}
#header.fixed #headerInner {
  padding: 17px 2%;
}
#header .tooltip {
  position: absolute;
  right: 3%;
  top: 0;
}
#header .test-tooltip {
  background-color: #5282c2;
  border: var(--bs-yellow) solid 1px;
  border-radius: 15px;
  color: var(--bs-yellow);
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 4px;
  padding: 4px 15px;
  position: relative;
  width: fit-content;
  z-index: 100;
  animation: upDown 1.5s ease-in-out infinite;
}
#header .test-tooltip::after {
  border-color: #5282c2 transparent;
  border-style: solid;
  border-width: 6px 4px 0px 4.5px;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  bottom: -5px;
  width: 0;
  z-index: 1;
}
#header .test-tooltip::before {
  border-color: var(--bs-yellow) transparent;
  border-style: solid;
  border-width: 6px 4px 0 4.5px;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  bottom: -6px;
  width: 0;
  z-index: 0;
}
#header.fixed .test-tooltip {
  background-color: var(--bs-yellow);
  color: var(--bs-secondary-200);
  display: none;
}
#header.fixed .test-tooltip::after {
  border-color: var(--bs-yellow) transparent;
}
@keyframes upDown {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
/* -------- Header :: GNB(PC) -------- */
#gnb > ul > li {
  position: relative;
  float: left;
  word-break: keep-all;
  padding: 0 2em;
}
#gnb > ul > li > a span {
  position: relative;
  z-index: 100;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--bs-white);
  font-size: 1em;
  padding: 0 0px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 600;
}
#gnb > ul > li > a:hover span, #gnb > ul > li.on > a span {
  opacity: 1;
  filter: Alpha(opacity=100);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
#gnb > ul > li > a span:before {
  content: "";
  position: absolute;
  top: -35px;
  width: 0;
  left: 50%;
  height: 5px;
  background-color: var(--bs-white);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
#gnb > ul > li > a:hover span:before, #gnb > ul > li.on > a span:before {
  width: 100%;
  margin-left: -50%;
}
#header.fixed #gnb > ul > li > a span {
  color: var(--bs-gray-400);
}
#header.fixed #gnb > ul > li > a span:before {
  background-color: var(--bs-secondary-100);
  top: -17px;
}
/* -------- Header :: GNB(Mobile) -------- */
.nav-open-btn {
  display: none;
}
#gnbM {
  display: none
}
/* ****************** FOOTER ********************** */
#footer {
  background-color: var(--bs-gray-600);
  padding: 3rem 0
}
#footer h1 {
  font-size: 0;
  margin-bottom: 1.3rem;
}
.footer-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Footer :: address */
.footer-address {
  font-size: 0.8rem;
  color: #B5B5B5;
  line-height: 1.3;
}
.footer-address span {
  display: inline-block;
  padding-right: 1rem;
}
.footer-copyright {
  color: var(--bs-gray-300);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}
/* Footer :: menu */
.footer-link {
  margin-top: -2rem;
}
.footer-link a {
  display: block;
  color: var(--bs-white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
}
/* Footer :: TOP버튼 */
.to-top-btn {
  position: fixed;
  bottom: -100px;
  right: 15px;
  display: block;
  width: 30px;
  height: 60px;
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  font-size: 0.9em;
  text-align: center;
  line-height: 60px;
  color: var(--bs-gray-dark);
  z-index: 99;
  opacity: 0;
  filter: Alpha(opacity=0);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
  border-radius: 20px;
}
.to-top-btn i {
  display: inline-block;
}
.to-top-btn.fixed {
  bottom: 15px;
  opacity: 1.0;
  filter: Alpha(opacity=100);
}
/* ****************** BUTTON ********************** */
.btn {
  border-radius: 10px;
  font-size: 0.8rem;
  padding: 9px 25px;
  border-width: 2px;
  border-style: solid
}
.btn-lg {
  font-size: 1.2rem;
  padding: 1.2rem 4.7rem;
}