/* Link
========================================================================== */

.c_link {
  position: relative;
  white-space: nowrap;
  color: var(--c-black);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s 0.0833333333s;
}
.c_link:hover {
  color: var(--c-black);
}
.c_link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform-origin: 50% 0%;
  transform: translate3d(0, 3px, 0);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.8, 1);
  transition-delay: 0.1s;
}
.c_link:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
  transition-delay: 0s;
}

.c_link[aria-current="page"] {
  color: var(--c-grey);
}
.c_link[aria-current="page"]::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}



/* Btn
========================================================================== */

/**************************** Buttton ****************************/

.c_btn {
  position: relative;
  display: inline-block;
  padding: 0.75em 1.75em;
  letter-spacing: 0.05rem;
  box-shadow: inset 0 0 0 2px;
  color: var(--c-black);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s 0.0833333333s;
}

.c_btn::before,
.c_btn::after,
.c_btn-icon::before,
.c_btn-icon::after {
  content: '';
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
  border: 0 solid transparent;
}
.c_btn::before,
.c_btn-icon::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.c_btn::after,
.c_btn-icon::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

.c_btn:hover {
  color: var(--c-grey);
}
.c_btn:hover::before,
.c_btn:hover::after,
.c_btn-icon:hover::before,
.c_btn-icon:hover::after {
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.c_btn:hover::before,
.c_btn-icon:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.c_btn:hover::after,
.c_btn-icon:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}

.c_btn[aria-current="page"] {
  color: var(--c-grey);
}

/**************************** Buttton Icon ****************************/

.c_btn-icon {
  position: relative;
  padding: .75em;
  display: inline-block;
  box-shadow: inset 0 0 0 2px;
  color: var(--c-black);
  transition: color 0.25s 0.0833333333s;
}
.c_btn-icon.c_btn-icon--white {
  color: var(--c-white);
}
.c_btn-icon.c_btn-icon--small {
  padding: .4em;
  box-shadow: inset 0 0 0 1px;
}
.c_btn-icon:hover {
  color: var(--c-grey);
}

.c_btn-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--c-black);
  transition: fill 0.25s 0.0833333333s;
}
.c_btn-icon.c_btn-icon--white svg {
  fill: var(--c-white);
}
.c_btn-icon.c_btn-icon--small svg {
  width: 23px;
  height: 23px;
}
.c_btn-icon:hover svg {
  fill: var(--c-grey);
}

@media (min-width: 1280px) {
  .c_btn-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1600px) {
  .c_btn-icon svg {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 2300px) {
  .c_btn-icon svg {
    width: 38px;
    height: 38px;
  }
}



/* Logo
========================================================================== */

.c_logo {
  display: inline-block;
  width: 168px;
  height: 38.5px;
}

@media (min-width: 1024px) {
  .c_logo {
    width: 181px;
    height: 41.25px;
  }
}

@media (min-width: 1280px) {
  .c_logo {
    width: 215px;
    height: 49px;
  }
}

@media (min-width: 1600px) {
  .c_logo {
    width: 241px;
    height: 55px;
  }
}

@media (min-width: 2300px) {
  .c_logo {
    width: 274px;
    height: 62.5px;
  }
}



/* Btn Toggler
========================================================================== */

.c_btn-toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: var(--c-white);
  border-radius: 50%;
}

.c_btn-toggler div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  transform: translateY(0px);
  transition: transform .3s ease;
}

.c_btn-toggler[aria-expanded="true"] div {
  transform: rotate(-180deg) translateY(-3px);
}

.c_btn-toggler span {
  display: block;
  width: 1.5em;
  height: 1px;
  background-color: var(--c-black);
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity .2s;
}

.c_btn-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(4px);
}
.c_btn-toggler[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-45deg);
}
.c_btn-toggler[aria-expanded="true"] span:nth-child(3) {
  display: none;
}

@media (min-width: 1024px) {
  .c_btn-toggler {
    display: none;
  }
}



/* Nav List, Nav Link
========================================================================== */

@media (max-width: 1023px) {
  .c_nav-list {
    display: none;
    top: 0;
    left: 0;
    transition-duration: .6s;
    transition-behavior: allow-discrete;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-white);
    padding: 80px 40px 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
  }

  .c_btn-toggler[aria-expanded="true"] + .c_nav-list {
    display: flex;
    opacity: 1;

    @starting-style {
      opacity: 0;
    }
  }

  .c_nav-list li:last-child {
    margin-top: 2em;
  }

  .c_nav-list .link {
    font-size: 1.18em;
  }
}

@media (min-width: 1024px) {
  .c_nav-list {
    display: flex;
    align-items: center;
    gap: 2em;
  }
}



/* Banner
========================================================================== */

.с_banner .c_logo {
  position: fixed;
  z-index: 10;
  top: -39px;
  left: 1em;
  transform: translateY(0);
  transition: transform .6s 1s ease;
}
.state_window-loaded .с_banner .c_logo {
  transform: translateY(calc(39px + 1.65em));
}

.с_banner .c_btn-toggler {
  position: fixed;
  z-index: 10;
  top: -55px;
  right: 1em;
  transform: translateY(0);
  transition: transform .6s 1s ease;
}
.state_window-loaded .с_banner .c_btn-toggler {
  transform: translateY(calc(55px + 1em));
}

.с_banner .c_nav-list {
  position: fixed;
  z-index: 9;
}

@media (min-width: 1024px) {
  .с_banner .c_logo {
    top: -42px;
    left: 1.15em;
  }
  .state_window-loaded .с_banner .c_logo {
    transform: translateY(calc(42px + 1.5em));
  }

  .с_banner .c_nav-list {
    z-index: 10;
    top: -48px;
    right: 1.15em;
    transform: translateY(0);
    transition: transform .6s 1s ease;
  }
  .state_window-loaded .с_banner .c_nav-list  {
    transform: translateY(calc(48px + 1.5em));
  }
  .state_hero-currently-intersected .с_banner .c_link {
    color: var(--c-white);
  }
  .state_hero-currently-intersected .с_banner .c_btn {
    color: var(--c-white);
  }
}

@media (min-width: 1280px) {
  .с_banner .c_logo {
    top: -50px;
  }
  .state_window-loaded .с_banner .c_logo {
    transform: translateY(calc(50px + 1.35em));
  }

  .с_banner .c_nav-list {
    top: -54px;
  }
  .state_window-loaded .с_banner .c_nav-list  {
    transform: translateY(calc(54px + 1.5em));
  }
}

@media (min-width: 1600px) {
  .с_banner .c_logo {
    top: -56px;
    left: 1.75em;
  }
  .state_window-loaded .с_banner .c_logo {
    transform: translateY(calc(56px + 1.5em));
  }

  .с_banner .c_nav-list {
    top: -60px;
    right: 1.75em;
  }
  .state_window-loaded .с_banner .c_nav-list  {
    transform: translateY(calc(60px + 1.5em));
  }
}

@media (min-width: 2300px) {
  .с_banner .c_logo {
    top: -63px;
    left: 2.25em;
  }
  .state_window-loaded .с_banner .c_logo {
    transform: translateY(calc(63px + 1.5em));
  }

  .с_banner .c_nav-list {
    top: -69px;
    right: 2.25em;
  }
  .state_window-loaded .с_banner .c_nav-list  {
    transform: translateY(calc(69px + 1.5em));
  }
}



/* Hero
========================================================================== */

.c_hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.c_hero .c_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c_hero,
.c_hero h1, .c_hero .h1,
.c_hero h2, .c_hero .h2,
.c_hero h3, .c_hero .h3,
.c_hero h4, .c_hero .h4 {
  color: var(--c-white);
}

.c_hero .f_sec {
  margin-top: -11em;
}

@media (min-width: 1024px) {
  .c_hero .f_sec {
    margin-top: -17em;
  }
}

/**************************** Indent Invert ****************************/

.c_hero--inner {
  min-height: 66.666vh;
}

.c_hero--inner .f_sec {
  margin-top: -8em;
}



/* Component: Image Card
========================================================================== */

.c_image-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.c_image-card a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 8em 1em 1em;
  color: var(--c-black);
  text-decoration-line: none;
}

.c_image-card__content {
  background-color: var(--c-white);
  padding: 2em 1em;
}

.c_image-card .c_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c_image-card .c_bg div {
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.c_image-card a:hover .c_bg div {
  transform: scale(1.2);
  filter: blur(0.3rem);
}

@media (min-width: 1280px) {
  .c_image-card a {
    padding: 8em 2em 2em;
  }
  .c_image-card__content {
    padding: 3em 2em;
  }
}



/* Gallery (swiper)
========================================================================== */

/***** Wrapper *****/

.gallery .swiper-wrapper {
  align-items: stretch;
}

/***** Slide *****/

.gallery .gallery-slide {
  height: auto;
  width: auto;
  overflow: hidden;
}
.gallery .gallery-slide--small {
  max-width: 36%;
}
.gallery .gallery-slide--medium {
  max-width: 59%;
}
.gallery .gallery-slide--big {
  max-width: 76%;
}

.gallery .gallery-slide img {
  height: 100%;
}

/***** Scrollbar *****/

.gallery-scrollbar-wrapper {
  padding-top: 1.75em;
}

.gallery-scrollbar-wrapper .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
  height: 1px;
  width: 100%;
  border-radius: 0;
  background: var(--c-grey-light);
}

.gallery-scrollbar-wrapper .swiper-scrollbar-drag {
  top: -1px;
  height: 3px;
  border-radius: 0;
  background: var(--c-black);
}

@media (min-width: 768px) {
  .gallery .gallery-slide--small {
    max-width: 33%;
  }
  .gallery .gallery-slide--medium {
    max-width: 50%;
  }
  .gallery .gallery-slide--big {
    max-width: 66%;
  }
}

@media (min-width: 1024px) {
  .gallery-scrollbar-wrapper {
    padding-top: 2.5em;
  }
}

@media (min-width: 1280px) {
  .gallery .gallery-slide--small {
    max-width: 25%;
  }
  .gallery .gallery-slide--medium {
    max-width: 42%;
  }
  .gallery .gallery-slide--big {
    max-width: 70%;
  }

  .gallery-scrollbar-wrapper {
    padding-top: 3em;
  }
}

@media (min-width: 1600px) {
  .gallery-scrollbar-wrapper {
    padding-top: 3.5em;
  }
}

@media (min-width: 2300px) {
  .gallery-scrollbar-wrapper {
    padding-top: 4em;
  }
}



/* Image with description
========================================================================== */

.c_image-with-description {
  display: grid;
  row-gap: 2em;
}

.c_image-with-description .c_ul {
  display: grid;
  row-gap: 0.15em;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 550px) {
  .c_image-with-description .c_ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .c_image-with-description {
    row-gap: 0;
  }
  .c_image-with-description > div:first-child {
    position: relative;
    z-index: 1;
    background-color: var(--c-white);
    width: 75%;
    order: 2;
    margin-top: -170px;
    padding: 3em 2em 0 0;
  }
  .c_image-with-description .c_ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .c_image-with-description .c_bg {
    order: 1;
    aspect-ratio: 4/3;
  }
}

@media (min-width: 1024px) {
  .c_image-with-description .c_ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .c_image-with-description .c_bg {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1280px) {
  .c_image-with-description > div:first-child {
    margin-top: -200px;
  }
  .c_image-with-description .c_ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1600px) {
  .c_image-with-description > div:first-child {
    margin-top: -288px;
  }
  .c_image-with-description .c_ul {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 2300px) {
  .c_image-with-description > div:first-child {
    margin-top: -342px;
  }
}


/* List
========================================================================== */

.c_ul li {
  position: relative;
  padding-left: 20px;
}

.c_ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 11px;
  height: 1px;
  background-color: var(--c-grey);
}
.c_ul.fs_s li::before {
  top: 10px;
}

@media (min-width: 1280px) {
  .c_ul li {
    padding-left: 30px;
  }
  .c_ul li::before {
    width: 17px;
    top: 13px;
  }
  .c_ul.fs_s li::before {
    top: 11px;
  }
}

@media (min-width: 1600px) {
  .c_ul li {
    padding-left: 32px;
  }
  .c_ul li::before {
    width: 18px;
    top: 15px;
  }
  .c_ul.fs_s li::before {
    top: 12px;
  }
}

@media (min-width: 2300px) {
  .c_ul li {
    padding-left: 35px;
  }
  .c_ul li::before {
    width: 20px;
    top: 17px;
  }
  .c_ul.fs_s li::before {
    top: 15px;
  }
}



/* Array Right
========================================================================== */

.arrow-right {
  position: relative;
}

.arrow-right::after {
  content: "";
  background-image: url(/_assets/svg/arrow-right.svg);
  display: inline-block;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  transition: transform 350ms cubic-bezier(.22,.44,.22,1) 250ms, opacity 350ms cubic-bezier(.22,.44,.22,1) 0s;
}

.arrow-right--h3::after {
  width: 19px;
  height: 10px;
  margin: 0 0 1px 10px;
  transform: translateX(-10px);
}

.c_image-card:hover .arrow-right::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  transition: all 350ms cubic-bezier(.22,.44,.22,1) 50ms;
}

@media (min-width: 1280px) {
  .arrow-right--h3::after {
    width: 25px;
    height: 13px;
    margin: 0 0 2px 15px;
    transform: translateX(-15px);
  }
}

@media (min-width: 1600px) {
  .arrow-right--h3::after {
    width: 30px;
    height: 16px;
    margin: 0 0 3px 20px;
    transform: translateX(-20px);
  }
}

@media (min-width: 2300px) {
  .arrow-right--h3::after {
    width: 37px;
    height: 20px;
    margin: 0 0 5px 26px;
    transform: translateX(-26px);
  }
}



/* Component: Lined List
========================================================================== */

.c_lined-list {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.c_lined-list > * {
  padding: 1em 0;
  border-bottom: 1px solid var(--c-grey-light);
}
.c_lined-list > *:first-child {
  padding-top: 0;
}
.c_lined-list > *:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .c_lined-list {
    flex-direction: row;
    justify-content: center;
  }
  .c_lined-list > * {
    padding: 0 2em;
    border-bottom: none;
    border-right: 1px solid var(--c-grey-light);
  }
  .c_lined-list > *:first-child {
    padding-left: 0;
  }
  .c_lined-list > *:last-child {
    padding-right: 0;
    border-right: none;
  }
}



/* Component: Content Info
========================================================================== */

.c_content-info {
  border-top: 1px solid var(--c-grey-light);
}



/* Component: Bg
========================================================================== */

.c_bg {
  position: relative;
  overflow: hidden;
  background-color: var(--c-grey-light);
}

.c_bg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.c_bg--hero div {
  background-image: url(/_assets/images/hero-390x840.webp);
}

.c_bg--pack-1 div {
  background-image: url(/_assets/images/package-1-390x490.webp);
}
.c_bg--pack-2 div {
  background-image: url(/_assets/images/package-2-390x490.webp);
}
.c_bg--pack-3 div {
  background-image: url(/_assets/images/package-3-390x490.webp);
}

.c_bg--ph-kr div {
  background-image: url(/_assets/images/ph-kr-390x550.webp);
}
.c_bg--ph-about div {
  background-image: url(/_assets/images/ph-about-390x550.webp);
}

.c_bg--about div {
  background-image: url(/_assets/images/about-390x390.webp);
}
.c_bg--seo div {
  background-image: url(/_assets/images/seo-390x390.webp);
}
.c_bg--kr div {
  background-image: url(/_assets/images/kr-390x390.webp);
}

.c_bg--map div {
  background-image: url(/_assets/images/map-390x390.webp);
}

@media (max-width: 767px) {
  .c_bg--full-bd {
    aspect-ratio: 1/1;
    margin-inline: -3.25em;
  }
}

@media (min-width: 414px) {
  .c_bg--pack-1 div {
    background-image: url(/_assets/images/package-1-660x450.webp);
  }
  .c_bg--pack-2 div {
    background-image: url(/_assets/images/package-2-660x450.webp);
  }
  .c_bg--pack-3 div {
    background-image: url(/_assets/images/package-3-660x450.webp);
  }
  .c_bg--about div {
    background-image: url(/_assets/images/about-768x768.webp);
  }
  .c_bg--seo div {
    background-image: url(/_assets/images/seo-768x768.webp);
  }
  .c_bg--kr div {
    background-image: url(/_assets/images/kr-768x768.webp);
  }
  .c_bg--map div {
    background-image: url(/_assets/images/map-768x768.webp);
  }
}

@media (min-width: 500px) {
  .c_bg--hero div {
    background-image: url(/_assets/images/hero-1024x768.webp);
  }
  .c_bg--ph-kr div {
    background-image: url(/_assets/images/ph-kr-1024x600.webp);
  }
  .c_bg--ph-about div {
    background-image: url(/_assets/images/ph-about-1024x600.webp);
  }
}

@media (min-width: 768px) {
  .c_bg--pack-1 div {
    background-image: url(/_assets/images/package-1-370x580.webp);
  }
  .c_bg--pack-2 div {
    background-image: url(/_assets/images/package-2-370x580.webp);
  }
  .c_bg--pack-3 div {
    background-image: url(/_assets/images/package-3-370x580.webp);
  }
  .c_bg--about div {
    background-image: url(/_assets/images/about-330x600.webp);
  }
  .c_bg--seo div {
    background-image: url(/_assets/images/seo-330x600.webp);
  }
  .c_bg--kr div {
    background-image: url(/_assets/images/kr-768x768.webp);
  }
  .c_bg--map div {
    background-image: url(/_assets/images/map-890x670.webp);
  }
}

@media (min-width: 1024px) {
  .c_bg--about div {
    background-image: url(/_assets/images/about-768x768.webp);
  }
  .c_bg--seo div {
    background-image: url(/_assets/images/seo-768x768.webp);
  }
  .c_bg--kr div {
    background-image: url(/_assets/images/kr-768x768.webp);
  }
  .c_bg--map div {
    background-image: url(/_assets/images/map-1150x650.webp);
  }
}

@media (min-width: 1280px) {
  .c_bg--hero div {
    background-image: url(/_assets/images/hero-1366x1024.webp);
  }
  .c_bg--pack-1 div {
    background-image: url(/_assets/images/package-1-560x730.webp);
  }
  .c_bg--pack-2 div {
    background-image: url(/_assets/images/package-2-560x730.webp);
  }
  .c_bg--pack-3 div {
    background-image: url(/_assets/images/package-3-560x730.webp);
  }
  .c_bg--ph-kr div {
    background-image: url(/_assets/images/ph-kr-1366x680.webp);
  }
  .c_bg--ph-about div {
    background-image: url(/_assets/images/ph-about-1366x680.webp);
  }
}

@media (min-width: 1600px) {
  .c_bg--hero div {
    background-image: url(/_assets/images/hero-1920x1080.webp);
  }
  .c_bg--ph-kr div {
    background-image: url(/_assets/images/ph-kr-1920x730.webp);
  }
  .c_bg--ph-about div {
    background-image: url(/_assets/images/ph-about-1920x730.webp);
  }
  .c_bg--map div {
    background-image: url(/_assets/images/map-1430x805.webp);
  }
}

@media (min-width: 2300px) {
  .c_bg--hero div {
    background-image: url(/_assets/images/hero-2560x1440.webp);
  }
  .c_bg--ph-kr div {
    background-image: url(/_assets/images/ph-kr-2560x970.webp);
  }
  .c_bg--ph-about div {
    background-image: url(/_assets/images/ph-about-2560x970.webp);
  }
  .c_bg--map div {
    background-image: url(/_assets/images/map-1715x965.webp);
  }
}