/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
 * Font Sizes
 */
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Placeholder mixin for <input>
 */
/* How to use: theme-color(intuition, primary); */
* {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  padding: 0;
}

html {
  background-color: white;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

input,
select,
textarea,
button {
  color: inherit;
  display: inline-block;
}
input[disabled],
select[disabled],
textarea[disabled],
button[disabled] {
  cursor: not-allowed;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  text-align: left;
}

.full-height {
  height: 100%;
  display: block;
}

/**
* Text aligments
*/
.align-text-left {
  text-align: left;
}

.align-text-right {
  text-align: right;
}

.align-text-center {
  text-align: center;
}

/**
* Aligments
*/
.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
  justify-content: center;
}

/**
 * Elements visibility
 */
.visible-on-mobile {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .visible-on-mobile {
    display: block !important;
  }
}

@media screen and (max-width: 1000px) {
  .visible-on-desktop {
    display: none !important;
  }
}

/**
 * Accessibility
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * Breakpoints
 */
/**
 * Spacing
 */
.py-xl {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pt-xl {
  padding-top: 96px;
}

.pb-xl {
  padding-bottom: 96px;
}

.px-xl {
  padding-left: 96px;
  padding-right: 96px;
}

.pl-xl {
  padding-left: 96px;
}

.pr-xl {
  padding-right: 96px;
}

.my-xl {
  margin-top: 96px;
  margin-bottom: 96px;
}

.mt-xl {
  margin-top: 96px;
}

.mb-xl {
  margin-bottom: 96px;
}

.mx-xl {
  margin-left: 96px;
  margin-right: 96px;
}

.ml-xl {
  margin-left: 96px;
}

.mr-xl {
  margin-right: 96px;
}

.py-lg {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pt-lg {
  padding-top: 72px;
}

.pb-lg {
  padding-bottom: 72px;
}

.px-lg {
  padding-left: 72px;
  padding-right: 72px;
}

.pl-lg {
  padding-left: 72px;
}

.pr-lg {
  padding-right: 72px;
}

.my-lg {
  margin-top: 72px;
  margin-bottom: 72px;
}

.mt-lg {
  margin-top: 72px;
}

.mb-lg {
  margin-bottom: 72px;
}

.mx-lg {
  margin-left: 72px;
  margin-right: 72px;
}

.ml-lg {
  margin-left: 72px;
}

.mr-lg {
  margin-right: 72px;
}

.py-md {
  padding-top: 48px;
  padding-bottom: 48px;
}

.pt-md {
  padding-top: 48px;
}

.pb-md {
  padding-bottom: 48px;
}

.px-md {
  padding-left: 48px;
  padding-right: 48px;
}

.pl-md {
  padding-left: 48px;
}

.pr-md {
  padding-right: 48px;
}

.my-md {
  margin-top: 48px;
  margin-bottom: 48px;
}

.mt-md {
  margin-top: 48px;
}

.mb-md {
  margin-bottom: 48px;
}

.mx-md {
  margin-left: 48px;
  margin-right: 48px;
}

.ml-md {
  margin-left: 48px;
}

.mr-md {
  margin-right: 48px;
}

.py-sm {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pt-sm {
  padding-top: 24px;
}

.pb-sm {
  padding-bottom: 24px;
}

.px-sm {
  padding-left: 24px;
  padding-right: 24px;
}

.pl-sm {
  padding-left: 24px;
}

.pr-sm {
  padding-right: 24px;
}

.my-sm {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mt-sm {
  margin-top: 24px;
}

.mb-sm {
  margin-bottom: 24px;
}

.mx-sm {
  margin-left: 24px;
  margin-right: 24px;
}

.ml-sm {
  margin-left: 24px;
}

.mr-sm {
  margin-right: 24px;
}

.py-xs {
  padding-top: 12px;
  padding-bottom: 12px;
}

.pt-xs {
  padding-top: 12px;
}

.pb-xs {
  padding-bottom: 12px;
}

.px-xs {
  padding-left: 12px;
  padding-right: 12px;
}

.pl-xs {
  padding-left: 12px;
}

.pr-xs {
  padding-right: 12px;
}

.my-xs {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mt-xs {
  margin-top: 12px;
}

.mb-xs {
  margin-bottom: 12px;
}

.mx-xs {
  margin-left: 12px;
  margin-right: 12px;
}

.ml-xs {
  margin-left: 12px;
}

.mr-xs {
  margin-right: 12px;
}

.py-none {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-none {
  padding-top: 0;
}

.pb-none {
  padding-bottom: 0;
}

.px-none {
  padding-left: 0;
  padding-right: 0;
}

.pl-none {
  padding-left: 0;
}

.pr-none {
  padding-right: 0;
}

.my-none {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-none {
  margin-top: 0;
}

.mb-none {
  margin-bottom: 0;
}

.mx-none {
  margin-left: 0;
  margin-right: 0;
}

.ml-none {
  margin-left: 0;
}

.mr-none {
  margin-right: 0;
}

/**
 * Fonts
 */
.font-base {
  font-family: "Helvetica Neue Medium", "Noto Sans KR", sans-serif;
}

/**
 * Colors
 */
.text-base {
  color: #000;
}

.bg-base {
  background-color: #000;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-grey100 {
  color: #f7f7f7;
}

.bg-grey100 {
  background-color: #f7f7f7;
}

.text-grey150 {
  color: #ededed;
}

.bg-grey150 {
  background-color: #ededed;
}

.text-grey200 {
  color: #ced4da;
}

.bg-grey200 {
  background-color: #ced4da;
}

.text-grey300 {
  color: #6c757d;
}

.bg-grey300 {
  background-color: #6c757d;
}

.text-naver {
  color: #04cf5d;
}

.bg-naver {
  background-color: #04cf5d;
}

.text-success {
  color: #5cb85c;
}

.bg-success {
  background-color: #5cb85c;
}

.text-info {
  color: #444;
}

.bg-info {
  background-color: #444;
}

.text-warning {
  color: #f0ad4e;
}

.bg-warning {
  background-color: #f0ad4e;
}

.text-danger {
  color: #d9534f;
}

.bg-danger {
  background-color: #d9534f;
}

html {
  height: 100%;
  font-size: 1.1111111111vw;
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 14px;
  }
}

body {
  min-height: 100%;
  color: #000;
  font-family: "Helvetica Neue Medium", "Noto Sans KR", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  display: flex;
  flex-direction: column;
}
body.theme-schick {
  background-color: #f7f7f7;
}
@media screen and (max-width: 1000px) {
  body.menu-open {
    overflow: hidden;
  }
}

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
ul,
ol,
dl {
  margin-bottom: 24px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
hr:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

/**
 * Basic styles for links
 */
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: underline;
}

a[href^=tel] {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  font-style: inherit;
}

/**
 * Rules
 */
hr {
  height: 1px;
  background-color: #ced4da;
  margin: 0;
}

.row {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .row {
    flex-direction: column;
  }
}
.row.centered {
  justify-content: center;
}
.row .col-3 {
  flex-basis: 25%;
}
.row .col-4 {
  flex-basis: 33.33%;
}
.row .col-6 {
  flex-basis: 50%;
}
.row .col-8 {
  flex-basis: 66.66%;
}
.row .col-9 {
  flex-basis: 75%;
}
.row .col-0 {
  flex-grow: 1;
  flex-basis: 100%;
}
@media screen and (max-width: 1000px) {
  .row .col-0,
  .row .col-3,
  .row .col-4,
  .row .col-6,
  .row .col-9 {
    flex-grow: 0;
    flex-shrink: 0;
  }
}

@font-face {
  font-family: "Helvetica Neue Medium";
  src: url("./assets/fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("./assets/fonts/HelveticaNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("./assets/fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("./assets/fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/**
 * Responsive images
 */
.is-fluid {
  display: block;
  width: 100%;
  height: auto;
}

*:focus {
  outline: 0;
}

input,
select,
textarea {
  border: solid 1px #000;
  border-radius: 0;
  color: #000;
  line-height: 36px;
  height: 36px;
  padding: 0 12px;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  background: transparent;
  border: 0;
  line-height: normal;
  height: auto;
  width: auto;
}

input[type=file] {
  line-height: normal;
  height: auto;
  padding: 6px 12px;
}

input[type=submit] {
  border-radius: 0;
}

input[disabled] {
  background-color: whitesmoke;
  cursor: not-allowed;
}

select {
  line-height: normal;
  padding: 0;
  padding-left: 12px;
}

textarea {
  min-height: 96px;
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Form utility classes
 */
.form--inline .form__group {
  display: inline-block;
}

.form .form__group {
  display: block;
  margin-bottom: 24px;
}
.form .form__group .form__label {
  display: block;
  margin-bottom: 12px;
}

/* checkbox buttons */
.checkbox_btn {
  overflow: hidden;
  position: relative;
  font-weight: 500;
}
.checkbox_btn__label {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  padding: 8px;
  background: #ededed;
}
.checkbox_btn__checkbox {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 2.2em;
  height: 2.2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  border-radius: 0;
  vertical-align: middle;
}
.checkbox_btn__checkbox:checked + label {
  background: #000;
  color: #fff;
}

.theme-intuition .checkbox_btn__checkbox:checked + label {
  background: #88c9b4;
}

ul,
ol {
  margin-left: 24px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

.list--unstyled {
  margin-left: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
}

h1 {
  font-size: 2.875rem;
}
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.875rem;
}
@media screen and (max-width: 1000px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

em {
  font-style: italic;
}

small {
  font-size: 0.75em;
  line-height: 1;
}

p {
  font-size: 16px;
  word-break: keep-all;
}

.page-template-template-homepage .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9996;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9996;
}
@media screen and (max-width: 1000px) {
  .header {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    padding: 0 20px;
    background-color: #fff;
  }
}
.header__navigation {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header__navigation {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    margin-top: 66px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
}
.header__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 102px;
  width: 256px;
  text-align: center;
  position: relative;
  z-index: 99999;
}
.header__logo--mobile {
  position: static;
}
.header__logo--mobile img {
  height: 26px;
  width: auto;
}
.header__logo img {
  height: 50px;
  width: auto;
}

.theme-intuition .header__logo img {
  height: 62px;
  width: auto;
}
.theme-intuition .header__logo--mobile {
  position: static;
}
.theme-intuition .header__logo--mobile img {
  height: 33px;
  width: auto;
}

.menu-open .header__navigation {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

section {
  margin: 3.4722222222vw auto 0;
  max-width: 1440px;
}

.top-banner {
  background-color: #000;
  color: #fff;
  width: 100%;
  margin-bottom: 50px;
  max-height: 300px;
  overflow: hidden;
}
.top-banner__container {
  padding: 40px;
}
.top-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-banner h1 {
  border-bottom: 1px solid #ced4da;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.top-banner .tagline {
  font-size: 1.75rem;
}
@media screen and (max-width: 1000px) {
  .top-banner .tagline {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .top-banner {
    margin-bottom: 0;
  }
  .top-banner__container {
    padding: 20px;
  }
}

.theme-intuition .top-banner {
  background-color: #88c9b4;
}

.footer {
  background-color: #000;
  color: #fff;
  margin-top: 0;
  position: relative;
  z-index: 12;
}
.footer > .row {
  padding: 50px 40px 0;
}
@media screen and (max-width: 1000px) {
  .footer > .row {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 20px;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer ul.nav--footer {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 1000px) {
  .footer ul.nav--footer {
    flex-direction: column;
    gap: 10px 0;
    margin-top: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1000px) {
  .footer ul.nav--footer li {
    width: 15.2777777778vw;
    max-width: 220px;
  }
}
.footer ul.nav--footer a {
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}
.footer ul.nav--footer a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.25s;
}
@media screen and (min-width: 1000px) {
  .footer ul.nav--footer a:hover:after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1000px) {
  .footer ul.nav--footer .menu-item-has-children {
    position: relative;
  }
  .footer ul.nav--footer .menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  .footer ul.nav--footer .menu-item-has-children.is-open:after {
    transform: rotate(-135deg);
    top: 12px;
  }
  .footer ul.nav--footer .menu-item-has-children.is-open .sub-menu {
    display: flex;
  }
}
.footer ul.nav--footer .sub-menu {
  display: flex;
  font-size: 1.125rem;
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  position: static;
  flex-direction: column;
  height: auto;
  padding: 0;
  gap: 10px 0;
  margin-top: 20px;
  pointer-events: all;
  box-shadow: none;
}
@media screen and (max-width: 1000px) {
  .footer ul.nav--footer .sub-menu {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    display: none;
  }
}
.footer__logo {
  width: auto;
  height: 5.5555555556vw;
  max-height: 80px;
  min-height: 50px;
}
.footer__tagline {
  font-size: 2.875rem;
  line-height: 3.625rem;
  font-weight: 700;
}
.footer__bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 1000px) {
  .footer__bottom {
    margin-top: 40px;
    border-top: 1px solid #ced4da;
    padding: 20px 40px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.footer__company {
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .footer__company {
    margin-top: 30px;
  }
}
.footer__sublinks {
  display: flex;
  list-style: none;
  gap: 0 50px;
  margin: 0;
}
.footer__sublinks--arrow {
  background: url(assets/images/arrow_icon.svg) no-repeat top 4px right;
  padding-right: 35px;
}
@media screen and (max-width: 1000px) {
  .footer__sublinks {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .footer__sublinks li {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-top: 30px;
  }
}

.theme-intuition .footer {
  background-color: #88c9b4;
}

.btn-group {
  display: flex;
  gap: 0 20px;
}

.btn {
  font-size: 16px;
  border-radius: 50px;
  height: 48px;
  line-height: 48px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0 36px 0 24px;
  font-weight: 700;
  position: relative;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  transition: 0.3s ease;
  white-space: nowrap;
}
.btn:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: calc(50% - 1px);
  right: 24px;
  transform: rotate(45deg) translateY(-50%);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.btn.is-disabled, .btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}
@media screen and (min-width: 1000px) {
  .btn:hover {
    text-decoration: none;
    background-color: #000;
    color: #fff;
  }
  .btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.btn--cta {
  padding: 0 24px;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.btn--cta:after {
  content: none;
}
@media screen and (min-width: 1000px) {
  .btn--cta:hover {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
  }
}
.btn--form {
  height: 39px;
  line-height: 39px;
  border-radius: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
}
.btn--cancel {
  background-color: #ededed !important;
  color: #000 !important;
  border: none !important;
}
@media screen and (min-width: 1000px) {
  .btn--cancel:hover {
    background-color: #ced4da !important;
  }
}
.btn--dark {
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .btn--dark:hover {
    background-color: #fff;
    color: #000;
  }
}
.btn--grey {
  border: 1px solid #6c757d;
  background-color: #6c757d;
  color: #fff;
}
.btn--noarrow {
  padding-right: 24px;
}
.btn--noarrow:after {
  content: none;
}
.btn--small {
  height: 44px;
  line-height: 44px;
  padding-right: 24px;
}
.btn--small:after {
  content: none;
}
.btn--dark-outline {
  border: 1px solid #000 !important;
  color: #000 !important;
}
.btn--dark-outline.active, .btn--dark-outline:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.theme-intuition .btn {
  background-color: #fff;
  color: #88c9b4;
  border: 1px solid #88c9b4;
}
.theme-intuition .btn:after {
  border-top: 2px solid #88c9b4;
  border-right: 2px solid #88c9b4;
}
@media screen and (min-width: 1000px) {
  .theme-intuition .btn:hover {
    border: 1px solid #fff;
    background-color: #88c9b4;
    color: #fff;
  }
  .theme-intuition .btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.theme-intuition .btn--cta {
  background-color: #fff;
  border: 1px solid #88c9b4;
  color: #88c9b4;
}
@media screen and (min-width: 1000px) {
  .theme-intuition .btn--cta:hover {
    background-color: #f7efe3;
    color: #000;
    border: 1px solid #f7efe3;
  }
}
.theme-intuition .btn--dark {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
@media screen and (min-width: 1000px) {
  .theme-intuition .btn--dark:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
  }
}

/**
 * Hamburger menu
 */
.nav-burger {
  height: 14px;
  transition: all 0.25s ease-in-out;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
@media screen and (max-width: 1000px) {
  .nav-burger {
    display: flex;
  }
}

.nav-burger__line {
  width: 17px;
  height: 2px;
  background-color: #000;
  display: none;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 1000px) {
  .nav-burger__line {
    display: block;
  }
}
.nav-burger.open .nav-burger__line:nth-child(2) {
  opacity: 0;
}
.nav-burger.open .nav-burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-burger.open .nav-burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/**
 * Navs
 */
.nav {
  list-style: none;
  margin: 0;
  display: flex;
}
.nav ul {
  list-style: none;
  margin: 0;
}
.nav a {
  cursor: pointer;
}

@media screen and (min-width: 1000px) {
  .main-nav {
    background-color: #fff;
  }
  .main-nav a {
    color: #000;
  }
  .main-nav a:after {
    background-color: #000;
  }
}
@media screen and (min-width: 1000px) {
  .page-template-template-homepage .main-nav {
    background-color: transparent;
  }
  .page-template-template-homepage .main-nav:hover:after {
    height: 100%;
  }
  .page-template-template-homepage .main-nav:hover > ul > li > a {
    color: #000;
  }
  .page-template-template-homepage .main-nav:hover > ul > li > a:after {
    background-color: #000;
  }
  .page-template-template-homepage .main-nav > ul > li > a {
    color: #fff;
  }
  .page-template-template-homepage .main-nav > ul > li > a:after {
    background-color: #fff;
  }
  .page-template-template-homepage .main-nav.is-white:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .page-template-template-homepage .main-nav.is-white a {
    color: #000;
  }
  .page-template-template-homepage .main-nav.is-white a:after {
    background-color: #000;
  }
}

.main-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-nav:after {
  content: "";
  width: 100%;
  height: 0;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav a {
  text-decoration: none;
  display: block;
}
.main-nav .nav {
  height: 100%;
}
.main-nav > ul {
  font-size: 1.25rem;
  font-weight: 700;
}
.main-nav > ul > li {
  padding: 0 3.6111111111vw;
}
@media screen and (min-width: 1000px) {
  .main-nav > ul > li:not(.sub-menu) {
    z-index: 10;
    position: relative;
  }
}
.main-nav > ul > li.is-open + .sub-menu {
  pointer-events: auto;
  overflow: visible;
}
.main-nav > ul > li.is-open + .sub-menu .shadow {
  opacity: 1;
}
@media screen and (min-width: 1000px) {
  .main-nav > ul > li.is-open + .sub-menu {
    height: 450px;
  }
  .main-nav > ul > li.is-open + .sub-menu .sub-menu__items,
  .main-nav > ul > li.is-open + .sub-menu .sub-menu__thumb {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
  }
}
@media screen and (max-width: 1000px) {
  .main-nav > ul > li.is-open + .sub-menu {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .main-nav > ul > li.is-open:after {
    transform: rotate(-135deg) !important;
    top: 25px !important;
  }
}
.main-nav > ul > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
}
@media screen and (min-width: 1000px) {
  .main-nav > ul > li > a:after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.25s;
  }
  .main-nav > ul > li > a:hover:after {
    transform: scaleX(1);
  }
}
.main-nav > ul .current-menu-item a:after {
  transform: scaleX(1);
}
@media screen and (max-width: 1000px) {
  .main-nav {
    justify-content: flex-start;
    position: static;
    transform: none;
    height: 100%;
    background-color: #fff;
  }
  .main-nav > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
  .main-nav > ul > li {
    width: 100%;
    padding: 0 16px;
  }
  .main-nav > ul > li > a {
    padding: 15px 0;
    text-decoration: none;
    color: #000;
    width: 100%;
    display: inline-block;
  }
  .main-nav > ul > li.menu-item-has-children {
    position: relative;
  }
  .main-nav > ul > li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1000px) {
  .main-nav .sub-menu .shadow {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 0.2s;
  }
}

.theme-intuition .main-nav > ul > li > a {
  color: #000;
}
.theme-intuition .main-nav > ul > li > a:after {
  background-color: #000;
}

.sub-menu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  gap: 0 25px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  list-style: none;
  margin: 0;
  background-color: #fff;
  pointer-events: none;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1000px) {
  .sub-menu {
    height: 0;
    overflow: hidden;
  }
}
.sub-menu__items {
  padding: 142px 30px 40px 0;
}
@media screen and (max-width: 1000px) {
  .sub-menu__items {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1000px) {
  .sub-menu__items {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s linear 0.1s, visibility 0.4s linear 0.1s;
  }
}
.sub-menu__item {
  font-weight: 500;
  padding: 10px 20px;
}
.sub-menu__item a {
  display: inline-block;
  position: relative;
}
.sub-menu__item a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
  background-color: #000;
}
.sub-menu__item a:hover:after {
  transform: scaleX(1);
}
.sub-menu__thumb {
  width: 245px;
  padding: 142px 0 40px 0;
}
@media screen and (max-width: 1000px) {
  .sub-menu__thumb {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1000px) {
  .sub-menu__thumb {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s linear 0.1s, visibility 0.4s linear 0.1s;
  }
}
.sub-menu__thumb i {
  font-weight: 500;
  display: block;
  font-size: 1rem;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .sub-menu__thumb {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .sub-menu {
    position: static;
    display: none;
    background-color: #f7f7f7;
  }
}

.brand-tabs {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  background-color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.brand-tabs ul > li {
  height: 50px;
  margin: 0;
  width: 128px;
  text-align: center;
  display: flex;
  font-weight: 600;
}
.brand-tabs ul > li a {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #f7f7f7;
  transition: all 0.3s;
}
.brand-tabs ul > li:first-child a:hover {
  background-color: #000;
  color: #fff;
}
.brand-tabs ul > li:last-child a:hover {
  background-color: #88c9b4;
}
@media screen and (max-width: 1000px) {
  .brand-tabs {
    position: static;
  }
  .brand-tabs ul > li {
    width: 50%;
    box-shadow: inset 0 -1px 0 0 #ced4da;
  }
}

.theme-schick .brand-tabs .current-menu-item a,
.theme-schick .brand-tabs .current-page-ancestor a,
.theme-schick .brand-tabs li:first-child a {
  background-color: #000;
  color: #fff;
}

.theme-intuition .brand-tabs .current-menu-item a,
.theme-intuition .brand-tabs .current-page-ancestor a,
.theme-intuition .brand-tabs li:last-child a {
  background-color: #88c9b4;
  color: #000;
}

.alert {
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid transparent;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 24px;
}
.alert.alert--success {
  color: #5cb85c;
  border-color: #5cb85c;
}
.alert.alert--info {
  color: #444;
  border-color: #444;
}
.alert.alert--warning {
  color: #f0ad4e;
  border-color: #f0ad4e;
}
.alert.alert--danger {
  color: #d9534f;
  border-color: #d9534f;
}

.swiper-slide {
  height: auto !important;
}

.swiper-wrapper {
  transition-property: none !important;
}

.swiper-hero {
  position: relative;
  width: 100%;
}
.swiper-hero .swiper-slide {
  position: relative;
}
.swiper-hero .swiper-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-hero .swiper-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-hero .swiper-image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.swiper-hero .swiper-content {
  position: absolute;
  top: calc(50% + 102px);
  left: 76px;
  z-index: 100;
  transform: translateY(-50%);
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .swiper-hero .swiper-content {
    width: calc(100% - 32px);
    left: 16px;
  }
}
.swiper-hero .swiper-content h1 {
  font-size: 3.75rem;
  line-height: 4.5rem;
  margin-bottom: 25px;
  font-family: "Helvetica Neue Bold", "Noto Sans KR", sans-serif;
}
@media screen and (max-width: 1000px) {
  .swiper-hero .swiper-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .swiper-hero .swiper-content {
    top: auto;
    bottom: 30px;
    transform: none;
  }
}

@media screen and (min-width: 1000px) {
  .swiper-best .swiper-wrapper {
    justify-content: space-between;
  }
}
.swiper-best .swiper-slide {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .swiper-best .swiper-slide {
    max-width: 437px;
  }
}

@media screen and (min-width: 1000px) {
  .swiper-line .swiper-wrapper {
    justify-content: space-between;
  }
}
.swiper-line .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .swiper-line .swiper-slide {
    max-width: 315px;
  }
}
.swiper-line__thumbnail {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .swiper-line__thumbnail {
    width: 100%;
  }
}
.swiper-line__thumbnail .main {
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease-in-out 0.15s;
}
.swiper-line__thumbnail .hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.swiper-line__thumbnail .name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.swiper-line__thumbnail:hover .main {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.swiper-line__thumbnail:hover .name {
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}
.swiper-line__tagline {
  display: block;
  font-weight: 700;
  font-size: 1.75rem;
  margin-top: 16px;
}

.swiper-hero-pagination .swiper-pagination-bullet {
  opacity: 0.6;
  background-color: #fff;
}
.swiper-hero-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination.swiper-best-pagination,
.swiper-pagination.swiper-line-pagination {
  position: static;
  margin-top: 25px;
}
.swiper-pagination.swiper-best-pagination .swiper-pagination-bullet,
.swiper-pagination.swiper-line-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: #ced4da;
  border-radius: 0;
  width: 30px;
  height: 4px;
  transition: width 0.3s ease;
}
.swiper-pagination.swiper-best-pagination .swiper-pagination-bullet-active,
.swiper-pagination.swiper-line-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  width: 60px;
}

.theme-schick .swiper-hero .btn--cta:hover {
  border: 1px solid #000;
}

.theme-intuition .swiper-pagination.swiper-best-pagination .swiper-pagination-bullet-active,
.theme-intuition .swiper-pagination.swiper-line-pagination .swiper-pagination-bullet-active {
  background-color: #88c9b4;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__thumbnail {
  width: 100%;
  margin: 0 auto 15px;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  display: block;
}
.product-card__thumbnail img {
  width: 100%;
  height: auto;
}
.product-card__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  background-color: #0033a0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 10px;
}
@media screen and (max-width: 1000px) {
  .product-card__tag {
    font-size: 1rem;
  }
}
.product-card__name-en {
  color: #6c757d;
  margin-bottom: 5px;
  width: 100%;
  min-height: 48px;
}
.product-card__name-kr {
  font-size: 1.375rem;
  margin-bottom: 15px;
  width: 100%;
  word-break: keep-all;
  flex-grow: 1;
}

.theme-intuition .product-card__thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-intuition .product-card__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-intuition .product-card__tag {
  border-top-right-radius: 16px;
  background-color: #e893b5;
  top: 20px;
  bottom: auto;
}

.pum-container .pum-content p {
  margin-bottom: 0;
}

#dismiss-popup-form {
  display: flex;
  font-size: 11px;
  font-weight: 400;
  padding: 5px 0;
  align-items: center;
  justify-content: flex-start;
}
#dismiss-popup-form label {
  font-weight: normal;
  color: #4a4a4a;
}
#dismiss-popup-form input {
  flex-basis: 30px;
}

.pum-container {
  max-width: 95% !important;
}

.pum-container .pum-content + .pum-close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: rotate(45deg) !important;
}
.pum-container .pum-content + .pum-close:after, .pum-container .pum-content + .pum-close:before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}
.pum-container .pum-content + .pum-close:after {
  transform: rotate(90deg);
}

.popup-naver {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.popup-naver__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.popup-naver__content {
  border: 1px solid #ededed;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}
.popup-naver__content .btn {
  margin: 0 auto;
  margin-top: 20px;
}
.popup-naver__content span {
  color: #04cf5d;
}

.gateway {
  height: 100svh;
}
.gateway > .row {
  height: 100%;
}
.gateway h2 {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 5px 0;
  position: relative;
  z-index: 99;
}
.gateway a {
  background-color: #000;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding-bottom: 10%;
  color: #fff;
  overflow: hidden;
}
.gateway a:hover .gateway__subtitle:after {
  transform: scaleX(1);
}
.gateway a:hover .gateway__image {
  opacity: 1;
  transform: scale(1.02);
}
.gateway__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 40%;
     object-position: center 40%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  transition: all 0.4s ease-out;
}
.gateway__subtitle {
  position: relative;
  padding-bottom: 5px;
}
.gateway__subtitle:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.homepage__section {
  padding: 0 40px 40px 40px;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .homepage__section {
    padding: 30px 20px 30px 20px;
  }
}
.homepage__section:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 1px;
  border-bottom: 1px solid #ced4da;
}
@media screen and (max-width: 1000px) {
  .homepage__section:after {
    width: calc(100% - 30px);
  }
}
.homepage__hero {
  display: flex;
  height: 100svh;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .homepage__hero {
    height: auto;
  }
}
.homepage__category .product-card__thumbnail {
  background-color: transparent;
}
.homepage__category .product-card__thumbnail img {
  width: 100%;
  height: auto;
}
.homepage__event {
  padding-bottom: 0;
}
.homepage__event:after {
  content: none;
}
.homepage__event p {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .homepage__event p {
    font-size: 1.75rem;
  }
}
.homepage__event__container {
  display: flex;
  flex-direction: column;
}
.homepage__event__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 600px;
}
@media screen and (max-width: 1000px) {
  .homepage__event__container {
    flex-direction: column;
    max-height: none;
  }
}
.homepage__event__image {
  overflow: hidden;
  flex-basis: 50%;
}
@media screen and (max-width: 1000px) {
  .homepage__event__image {
    height: 375px;
  }
}
.homepage__event__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  flex-basis: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .homepage__event__content {
    padding: 30px 40px;
  }
}
.homepage__brand:after {
  content: none;
}
.homepage__brand__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: auto auto;
  gap: 3.4722222222vw;
}
@media screen and (min-width: 1440px) {
  .homepage__brand__grid {
    gap: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .homepage__brand__grid {
    display: flex;
    flex-direction: column;
  }
}
.homepage__brand__tile {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 475px;
}
@media screen and (max-width: 1000px) {
  .homepage__brand__tile {
    height: 270px;
  }
}
.homepage__brand__tile:after {
  content: "";
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.homepage__brand__tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.homepage__brand__tile:hover img {
  transform: scale(1.02);
}
.homepage__brand__tile:last-child {
  grid-column: 1/span 2;
}
.homepage__brand__caption {
  position: absolute;
  bottom: 3.4722222222vw;
  left: 3.4722222222vw;
  color: #fff;
  font-size: 2.25rem;
  z-index: 2;
}
.homepage__brand h3 {
  line-height: 1.2;
}
.homepage__brand__link {
  font-size: 1rem;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 1440px) {
  .theme-schick .homepage__event {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1440px) {
  .theme-schick .homepage__event h2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .theme-schick .homepage__event h2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.theme-schick .homepage__event__content {
  background-color: #000;
}
.theme-schick .homepage__brand__tile:after {
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.12) 100%);
  opacity: 0.2;
}

.theme-intuition .homepage__event {
  background-color: #ecf7f0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.theme-intuition .homepage__event__container {
  border-radius: 4.1666666667vw;
  overflow: hidden;
}
.theme-intuition .homepage__event__content {
  background-color: #88c9b4;
}
.theme-intuition .homepage__brand__tile:after {
  background: linear-gradient(0deg, #488370 0%, rgba(0, 0, 0, 0.12) 100%);
  opacity: 0.6;
}
.theme-intuition .homepage .product-card__thumbnail {
  background-color: #ecf7f0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}
.embed-container video,
.embed-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .embed-container {
    aspect-ratio: 375/519;
  }
}

.in-view {
  transform: translateY(0);
}

.productlist {
  padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .productlist {
    padding-bottom: 50px;
  }
}
.productlist__grid {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 25px;
}
@media screen and (max-width: 1000px) {
  .productlist__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 40px 15px;
    margin-top: 40px;
  }
}
.productlist .product-card__thumbnail {
  background-color: transparent;
}
.productlist .product-card__tag {
  font-size: 16px;
  padding: 4px 7px;
}
@media screen and (max-width: 1000px) {
  .productlist .product-card__tag {
    font-size: 0.875rem;
    padding: 4px 7px;
  }
}
.productlist .productlist__section {
  margin-top: 0;
}

.breadcrumbs {
  font-weight: 700;
  border-bottom: 1px solid #ced4da;
  padding: 23px 0;
  margin-bottom: 23px;
}
@media screen and (max-width: 1000px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}

.filters {
  position: sticky;
  top: 140px;
  padding: 0 40px;
  font-weight: 500;
  flex-grow: 0;
}
@media screen and (max-width: 1000px) {
  .filters {
    position: static;
    padding: 0 20px;
    margin-bottom: 0;
  }
}
.filters__toggle {
  font-weight: 700;
  position: relative;
  padding-right: 30px;
  display: inline-block;
  margin-bottom: 20px;
}
.filters__toggle:after {
  content: url(assets/images/filter_icon.svg);
  position: absolute;
  top: 0;
  right: 0;
}
.filters__title {
  padding: 10px 20px 8px;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #ced4da;
}
@media screen and (max-width: 1000px) {
  .filters__container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .filters__container.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .filters__container.show .filters__options {
    transform: translateY(0);
  }
}
.filters__options {
  font-size: 0.875rem;
}
@media screen and (max-width: 1000px) {
  .filters__options {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
}
.filters__category {
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .filters__category {
    padding: 0 20px;
  }
}
.filters__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .filters__group {
    padding: 0 20px;
  }
}
.filters .btn-group {
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .filters .btn-group {
    margin-top: 50px;
    gap: 0;
  }
}

.theme-intuition .productlist .product-card__thumbnail {
  align-items: flex-end;
}
.theme-intuition .productlist .product-card__thumbnail img {
  width: 100%;
  height: 100%;
}

.product-detail {
  border-top: 1px solid #ced4da;
}
.product-detail .preview-wrapper {
  display: flex;
  flex-direction: column;
}
.product-detail .infos-wrapper {
  background-color: #fff;
}
.product-detail .preview {
  align-self: flex-end;
  max-width: 720px;
  position: sticky;
  top: 152px;
  display: flex;
  flex-grow: 0;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .product-detail .preview:after {
    content: "";
    position: absolute;
    top: 0;
    left: 92px;
    width: 1px;
    height: 100vh;
    border-right: 1px solid #ced4da;
    z-index: 11;
  }
}
.product-detail .preview__thumbs {
  padding: 50px 0;
  width: 106px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .product-detail .preview__thumbs {
    border-right: none;
    width: 100%;
    padding: 25px 30px;
    background-color: #fff;
    max-width: none;
  }
}
.product-detail .preview__thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.product-detail .preview__thumbs .swiper-button-prev,
.product-detail .preview__thumbs .swiper-button-next {
  color: #ced4da;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1000px) {
  .product-detail .preview__thumbs .swiper-button-prev,
  .product-detail .preview__thumbs .swiper-button-next {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media screen and (max-width: 1000px) {
  .product-detail .preview__thumbs .swiper-button-prev,
  .product-detail .preview__thumbs .swiper-button-next {
    top: 75px;
  }
}
.product-detail .preview__thumbs .swiper-button-prev:after,
.product-detail .preview__thumbs .swiper-button-next:after {
  font-size: 16px;
}
.product-detail .preview__thumbs .swiper-button-prev.swiper-button-disabled,
.product-detail .preview__thumbs .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .product-detail .preview__thumbs .swiper-button-prev {
    top: 45px;
  }
  .product-detail .preview__thumbs .swiper-button-next {
    top: 403px;
  }
}
.product-detail .preview__image {
  flex-basis: 100%;
  max-width: 627px;
}
.product-detail .preview__image img {
  margin: 0 auto;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .product-detail .preview__image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  .product-detail .preview__image {
    border-bottom: 1px solid #ced4da;
    flex-basis: 0;
    max-width: none;
    width: 100%;
  }
}
.product-detail .preview .swiper-product {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .product-detail .preview .swiper-product {
    width: 100%;
  }
}
.product-detail .preview .swiper-thumbs {
  width: 66px;
  height: 325px;
  position: relative;
}
.product-detail .preview .swiper-thumbs .swiper-wrapper {
  transition-property: all !important;
}
.product-detail .preview .swiper-thumbs .swiper-slide {
  border: 1px solid #ced4da;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-detail .preview .swiper-thumbs .swiper-slide-thumb-active {
  border: 1px solid #000;
}
@media screen and (max-width: 1000px) {
  .product-detail .preview .swiper-thumbs {
    width: 100%;
    height: auto;
  }
  .product-detail .preview .swiper-thumbs .swiper-slide {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 1000px) {
  .product-detail .preview {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    align-self: center;
    max-width: none;
    position: static;
    align-items: center;
  }
}
.product-detail .infos {
  max-width: 720px;
  min-height: 100%;
  border-left: 1px solid #ced4da;
}
.product-detail .infos__overview {
  padding: 50px 40px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__overview {
    padding: 0 20px;
  }
}
.product-detail .infos__overview .btn {
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__overview .btn {
    margin: 0 auto 10px;
  }
}
.product-detail .infos__wrapper {
  margin-bottom: 40px;
}
.product-detail .infos__name-en {
  font-size: 1.375rem;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__name-en {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.product-detail .infos__name-kr {
  font-size: 2.875rem;
  font-weight: 700;
  word-break: keep-all;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__name-kr {
    font-size: 2.25rem;
  }
}
.product-detail .infos__feature {
  padding: 0 40px 40px;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__feature {
    padding: 0 20px 25px;
  }
}
.product-detail .infos__feature h3 {
  font-size: 2.25rem;
  margin-bottom: 25px;
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos__feature h3 {
    margin-top: 25px;
  }
}
.product-detail .infos .features-grid {
  max-width: 722px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .product-detail .infos .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: none;
  }
}
.product-detail .infos .features-grid h4 {
  font-size: 1.375rem;
  margin-bottom: 5px;
}
.product-detail .infos .features-grid img {
  margin-bottom: 10px;
}

.eventlist__section {
  padding: 0 20px;
}
.eventlist__maintitle {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-bottom: 2.7777777778vw;
}
@media screen and (min-width: 1440px) {
  .eventlist__maintitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .eventlist__maintitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px 0;
    margin: 50px 0 40px;
  }
}
.eventlist__maintitle h1 {
  margin-bottom: 0;
  font-size: 2.875rem;
}
.eventlist__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .eventlist__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.eventlist__item h2 {
  font-size: 1.75rem;
  margin: 24px 0 0;
}
.eventlist__item a:hover {
  text-decoration: none;
}
.eventlist__preview {
  background-color: #ededed;
  border-radius: 16px;
  height: 330px;
  overflow: hidden;
}
.eventlist__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .eventlist__preview {
    height: 184px;
  }
}
.eventlist__period {
  font-size: 14px;
  font-weight: 700;
}

.event-detail__section {
  padding: 0 20px 50px 20px;
}
@media screen and (max-width: 1440px) {
  .event-detail__section {
    padding: 0 40px 50px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .event-detail__section {
    padding: 0 20px 50px 20px;
  }
}

.brandstory__section {
  padding: 0 20px 50px 20px;
}
@media screen and (max-width: 1440px) {
  .brandstory__section {
    padding: 0 40px 50px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .brandstory__section {
    padding: 0 20px 50px 20px;
  }
}

.page-404 {
  color: #6c757d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.page-404 h1 {
  font-size: 3.75rem;
}
@media screen and (max-width: 1000px) {
  .page-404 h1 {
    font-size: 32px;
  }
}
.page-404 p {
  font-size: 2.875rem;
}
@media screen and (max-width: 1000px) {
  .page-404 p {
    font-size: 28px;
  }
}

.single__section {
  padding: 0 20px 50px 20px;
}
@media screen and (max-width: 1440px) {
  .single__section {
    padding: 0 40px 50px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .single__section {
    padding: 0 20px 50px 20px;
  }
}
