/*!******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/client/sass/components/nav.sass ***!
  \******************************************************************************************************************************/
header {
  width: 100%;
  height: 72px;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  box-sizing: border-box;
  padding: 0 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header .header-container {
    padding: 0 18px;
  }
}
header .header-container .logo-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .header-container .logo-box .img-box {
  max-width: 57px;
}
header .header-container .logo-box .img-box img {
  width: 100%;
}
header .header-container .logo-box h1 {
  color: var(--ids-clr-prmy-500);
}
@media screen and (max-width: 768px) {
  header .header-container nav {
    display: none;
  }
}
header .header-container nav .nav-container {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
header .header-container nav .nav-container .nav-item {
  color: var(--ids-clr-prmy-300);
}
header .header-container nav .nav-container .active-nav-item {
  display: flex;
  gap: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ids-clr-prmy-500);
}
header .header-container nav .nav-container .active-nav-item:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  margin-top: -2px;
  background-color: var(--ids-clr-system-danger);
}
header .header-container .menu-icon {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header-container .menu-icon {
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
header .header-container .menu-icon .line {
  width: 26px;
  height: 4px;
  background-color: var(--ids-clr-prmy-500);
  transition: transform 0.15s;
}
header .header-container .menu-icon .after {
  width: 20px;
}
header .header-container .active-menu-icon .line:first-child {
  transform: translateY(5px) rotate(45deg);
}
header .header-container .active-menu-icon .line:last-child {
  width: 26px;
  transform: translateY(-5px) rotate(-45deg);
}
header .menu-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 20px 18px;
  position: absolute;
  top: 60px;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--ids-clr-gray-000);
  transform: translateX(100%);
  transition: transform 0.2s;
}
header .menu-container .menu-item {
  color: var(--ids-clr-prmy-500);
}
header .active-menu-container {
  transform: translateX(0);
}
/*!*********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/client/sass/components/footer.sass ***!
  \*********************************************************************************************************************************/
#section-footer {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0 32px;
  background-color: var(--ids-clr-gray-100);
}
#section-footer .footer-section {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 0 24px;
  margin: 0 auto;
  gap: 16px;
}
#section-footer .footer-section .title-container {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  #section-footer .footer-section .title-container {
    flex-direction: column;
    gap: 3px;
  }
}
#section-footer .footer-section .policy-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
#section-footer .footer-section .business-container .wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#section-footer .footer-section .info-container {
  display: flex;
  flex-direction: column;
}
#section-footer .footer-section .info-container .wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
#section-footer .footer-section .bottom-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #section-footer .footer-section .bottom-container {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  #section-footer .footer-section .bottom-container copyright {
    font-size: 12px;
  }
}
#section-footer .footer-section .bottom-container .slogan-container {
  display: flex;
  gap: 96px;
  max-width: 368px;
  overflow: hidden;
}
#section-footer .footer-section .bottom-container .slogan-container .slogan-wrapper .item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
#section-footer .footer-section .bottom-container .slogan-container .slogan-wrapper .item span {
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #section-footer .footer-section .bottom-container .slogan-container .slogan-wrapper .item .fs-15 {
    display: none;
  }
}

.line {
  width: 1px;
  height: 14px;
  background-color: var(--ids-clr-gray-400);
}
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/client/sass/_common.sass ***!
  \***********************************************************************************************************************/
.invisible {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

[data-scroll] {
  opacity: 0;
  transition: 1s;
}

[data-scroll=in] {
  opacity: 1;
}

[data-scroll=out] {
  opacity: 0;
}
