@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  font-size: 20px;
  --kia-white1: #fbf6ef;
  --kia-white2: #ddd8d1;
  --kia-black: #121212;
  --kia-main-black: #0c1115;
  --font-roboto: "Roboto", sans-serif;
  --font-outfit: "Outfit", sans-serif;
  --font-Cormorant-Garamond: "Cormorant Garamond", serif;
}

body {
  line-height: 1;
  background-color: #0c1115;
  font-family: "Inter", sans-serif;
}

a[href=""],
a[href=""]:hover,
a[href=""]:focus-visible {
  color: rgba(221, 216, 209, 0.3) ;
  pointer-events: none;
  cursor: default;
}

div,
p,
a,
form,
legend,
label,
input,
table,
caption,
th,
td,
li,
blockquote,
strong,
b,
em,
i,
span,
button,
select,
option,
i {
  color: var(--kia-white2);
}

strong {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: var(--kia-white1);
  line-height: 1.3;
  font-weight: 500;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 56px;
}

h4 {
  font-size: 48px;
}

h5 {
  font-size: 40px;
}

h6 {
  font-size: 32px;
}

button {
  padding: 16px 32px;
  border-radius: 55px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  color: var(--kia-white1);
  text-transform: capitalize;
  font-size: 1rem;
}

a.black_btn2,
a.white_origin{
  text-transform: capitalize;
  font-family: "Outfit", sans-serif;
  min-height: 44px;
  border-radius: 999px;
  padding: 16px 32px;
  border-radius: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 12px;
  color: var(--kia-white1);
  font-size: 1.125rem;
}

.white_origin {
  color: var(--kia-black);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(200, 200, 200, 0.1) 100%
  );
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 5px 10px rgba(251, 251, 251, 0.25),
    inset 0 -3px 5px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.15);
}

.white_origin:hover{
  border-color: #ABF4F6;
}

.white_origin.on{
  background: rgba(12, 17, 21, 0.72);
  border-width: 1px;
  border-color: rgba(160, 247, 255, 0.92);
  color: var(--kia-white1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0px 0px 11px 8px rgba(172, 255, 235, 0.26);
}

.white_origin span {
  color: var(--kia-black);
}

.trans_origin {
  background: rgba(12, 17, 21, 0.05);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow:
    inset 1px 1.5px 1.5px rgba(255, 255, 255, 0.117),
    inset -1px -1.5px 2px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0),
    1px 2px 4px rgba(0, 0, 0, 0.8);
  outline: 0.5px solid rgba(255, 255, 255, 0.2);
  outline-offset: -0.5px;
  overflow: hidden;
}

.trans_origin2 {
  background: rgba(255, 255, 255, 0.04);

  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.5);
}

.trans_origin2 > * {
  position: relative;
  z-index: 2;
}

.trans_origin2::before {
  content: "";
  position: absolute;
  inset: -20px;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.01),
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.1),
      transparent 50%
    ),
    linear-gradient(135deg, #1a2228, #0c1115);

  filter: blur(15px);
  pointer-events: none;
}

.trans_origin2::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.03) 45%,
    transparent 65%
  );

  pointer-events: none;
}

.trans_origin2::before {
  z-index: 0;
}

.trans_origin2::after {
  z-index: 1;
}

.dark_origin {
  background: rgba(12, 17, 21, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow:
    inset 1px 1.5px 1.5px rgba(255, 255, 255, 0.4),
    inset -1px -1.5px 2px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.05),
    1px 2px 4px rgba(0, 0, 0, 0.8);
  outline: 0.5px solid rgba(255, 255, 255, 0.2);
  outline-offset: -0.5px;
  overflow: hidden;

  position: absolute;
  right: 100px;
  bottom: 70px;
}

.dark_origin2 {
  background: rgba(12, 17, 21, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow:
    inset 0px 1px 0.5px rgba(255, 255, 255, 0.4),
    inset -1px -1.5px 2px rgba(0, 0, 0, 0.2),
    1px 2px 4px rgba(0, 0, 0, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.15);

  position: absolute;
  right: 100px;
  bottom: 0;
}

.dark_origin3 {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.1) 15%,
      rgba(255, 255, 255, 0) 30%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.5),
    0 10px 25px rgba(0, 0, 0, 0.6);

  position: absolute;
  right: 300px;
  bottom: 0;
}

.glass_bg1 {
  background: rgba(251, 246, 239, 0.25);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  /* Highlight */
  box-shadow:
    inset 1px 2px 2px rgba(255, 255, 255, 0.117),
    inset -1px -1.5px 2px rgba(0, 0, 0, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0),
    1px 2px 4px rgba(0, 0, 0, 0.6);
  outline: 0.5px solid rgba(255, 255, 255, 0.2);
  outline-offset: -0.5px;

  overflow: hidden;
}

.glass_bg2 {
  background: rgba(99, 99, 99, 0.406);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* Highlight */
  box-shadow:
    inset 1px 2px 2px rgba(255, 255, 255, 0.117),
    inset -1px -1.5px 2px rgba(0, 0, 0, 0.17),
    inset 0 0 10px rgba(255, 255, 255, 0),
    1px 2px 4px rgba(0, 0, 0, 0.3);

  border: 1px solid rgba(251, 246, 239, 0.17);
}

.black_btn{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.black_btn2{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--kia-white2);
}

.black_btn2:hover{
  border: 1px solid #ABF4F6;
  /* color: #ABF4F6; */
}

.page_top_btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 64px;
  height: 64px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 555px;
  background: rgba(251, 246, 239, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(251, 246, 239, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease,
    box-shadow 0.24s ease;
  z-index: 950;
}

.page_top_btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.page_top_btn:hover,
.page_top_btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 16px 32px rgba(0, 0, 0, 0.3);
}

.page_top_btn_icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page_top_btn_icon path {
  fill: none;
  stroke: var(--kia-white1);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* header */
/* header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
}

/* 스크롤 다운 시 헤더 숨김 처리 */
header.hide {
  transform: translateY(-100%);
}

header.hide .header_bottom {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header .inner {
  width: 100%;
  padding: 16px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

header .header_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  width: 100px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header h1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

header h1 a img {
  width: 100%;
  height: auto;
}

header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  border-radius: 555px;
  font-family: var(--font-outfit);
  background: rgba(251, 246, 239, 0.15);
}

header nav ul.gnb {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  --gnb-pill-bg: rgba(251, 246, 239, 0.22);
  --gnb-pill-blur: 3px;
  --gnb-pill-move-duration: 420ms;
  --gnb-pill-size-duration: 360ms;
}

header nav ul.gnb .gnb_active_bg,
header nav ul.gnb .gnb_hover_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0);
  transition:
    transform var(--gnb-pill-move-duration) cubic-bezier(0.2, 0.9, 0.22, 1.2),
    width var(--gnb-pill-size-duration) cubic-bezier(0.18, 0.88, 0.22, 1.15),
    height var(--gnb-pill-size-duration) cubic-bezier(0.18, 0.88, 0.22, 1.15),
    opacity 0.18s ease;
  will-change: transform, width, height, opacity;
}

header nav ul.gnb .gnb_active_bg::before,
header nav ul.gnb .gnb_hover_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gnb-pill-bg);
  backdrop-filter: blur(var(--gnb-pill-blur));
  -webkit-backdrop-filter: blur(var(--gnb-pill-blur));
  transform-origin: center center;
  will-change: transform;
}

header nav ul.gnb .gnb_active_bg.is-bounce::before,
header nav ul.gnb .gnb_hover_bg.is-bounce::before {
  animation: gnb-pill-bounce 420ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

header nav ul.gnb .gnb_active_bg {
  z-index: 0;
}

header nav ul.gnb .gnb_hover_bg {
  z-index: 1;
}

@keyframes gnb-pill-bounce {
  0% {
    transform: scale(0.92);
  }
  58% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

header nav ul.gnb > li {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

header nav ul.gnb > li > a {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--kia-white2);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

header nav ul.gnb > li:hover > a{
  color: var(--kia-white1);
}
header nav ul.gnb > li:nth-of-type(5) > a,
header nav ul.gnb > li:nth-of-type(5):hover > a,
header nav ul.gnb > li:last-child > a,
header nav ul.gnb > li:last-child:hover > a{
  color : rgba(221,216,209,0.3);
}

header nav ul.gnb > li > a > i {
  font-size: 22px;
  color : rgba(221,216,209,0.3);
}

header nav ul.gnb > li.on > a,
header nav ul.gnb > li.on > a > i {
  color: var(--kia-white1);
}

header nav .icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

header nav .icons img {
  width: 24px;
  height: 24px;
  opacity: 0.3;
}

header nav .icons a{
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav .icons a i {
  font-size: 26px;
  color: rgba(221, 216, 209, 0.3);
}

header nav .icons .icon_menu {
  display: none;
}

header nav .icons .icon_menu i {
  font-size: 29px;
  color: var(--kia-white1);
}

header .header_bottom {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: 5;
  width: fit-content;
  max-width: calc(100% - 132px);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

header .header_bottom.is-hidden {
  display: none;
}

header .header_bottom .sub_nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 555px;
  background: rgba(12, 17, 21, 0.18);
  border: 1px solid rgba(251, 246, 239, 0.14);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

header .header_bottom .sub_nav li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--kia-white2);
  white-space: nowrap;
  border-radius: 555px;
  position: relative;
}

/* Reserve bold width to prevent layout shift on hover/active */
header .header_bottom .sub_nav li a::after {
  content: attr(data-text);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-weight: 500;
  pointer-events: none;
}

header .header_bottom .sub_nav li.on a {
  color: var(--kia-white1);
  font-weight: 500;
}

header .header_bottom .sub_nav li a:hover {
  color: var(--kia-white1);
  font-weight: 500;
}

header .header_bottom .sub_nav li a:not([href]),
header .header_bottom .sub_nav li a[href=""],
header .header_bottom .sub_nav li a[href="#"] {
  color: rgba(221, 216, 209, 0.3);
  pointer-events: none;
  cursor: default;
}

header .header_bottom .sub_nav li a:not([href]):hover,
header .header_bottom .sub_nav li a[href=""]:hover,
header .header_bottom .sub_nav li a[href="#"]:hover {
  color: rgba(221, 216, 209, 0.3);
  font-weight: 400;
}

  header .m_panel {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 12, 0.26);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
    z-index: 1090;
  }

  header .m_nav {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, calc(100vw - 48px));
    height: 100vh;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    background:
      linear-gradient(180deg, rgba(11, 18, 24, 0.96) 0%, rgba(10, 15, 19, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.08),
      -18px 0 32px rgba(0, 0, 0, 0.35);
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  header .m_top {
    width: 100%;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  header .m_left {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  header .m_left a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--kia-white2);
  }

  header .m_left img {
    width: 24px;
    height: 24px;
  }

  header .m_left i {
    font-size: 26px;
    color: var(--kia-white2);
  }

  header .close {
    flex-shrink: 0;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    border-radius: 555px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 4px 16px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .close i {
    font-size: 24px;
    color: var(--kia-white2);
  }

  header .m_gnb {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  header .m_gnb > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  header .m_gnb > li > a,
  header .m_gnb > li > button,
  header .m_on {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: var(--font-outfit);
    font-size: 24px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--kia-white2);
    text-align: left;
  }

  header .m_gnb > li:last-child > a {
    justify-content: flex-start;
    gap: 0;
  }

  header .m_gnb > li > a:hover,
  header .m_gnb > li > button:hover,
  header .m_gnb > li > a:hover i,
  header .m_gnb > li > button:hover i,
  header .m_on:hover,
  header .m_on:hover i {
    font-weight: 500;
    color: var(--kia-white1);
  }

  header .m_gnb > li > a i,
  header .m_gnb > li > button i,
  header .m_on i {
    font-size: 32px;
    color: var(--kia-white2);
    transition: transform 0.24s ease;
  }

  header .m_gnb > li:last-child > a i {
    margin-left: 6px;
    font-size: 28px;
  }

  header .m_gnb > li.on > button{
    color: var(--kia-white1);
    font-weight: 500;
  }

  header .m_gnb > li.on > button i,
  header .m_gnb > li.on .m_on i {
    transform: rotate(180deg);
  }

  header .m_sub {
    width: calc(100% - 12px);
    margin: 0;
    padding: 0;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 0 solid rgba(255, 255, 255, 0.09);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.32s ease,
      opacity 0.24s ease,
      transform 0.24s ease,
      margin 0.24s ease;
  }

  header .m_gnb > li.on .m_sub {
    margin: 0 0 14px 0;
    padding: 10px 0;
    border-width: 1px;
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  header .m_sub a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.25;
    text-transform: capitalize;
    color: var(--kia-white2);
  }

  header .m_sub a:not([href]),
  header .m_sub a[href=""] {
    color: rgba(221, 216, 209, 0.3);
  }

  header .m_sub a:hover {
    font-weight: 400;
    color: var(--kia-white1);
    background: rgba(255, 255, 255, 0.04);
  }

  header .m_sub a:not([href]):hover,
  header .m_sub a[href=""]:hover {
    color: rgba(221, 216, 209, 0.3);
  }

  .mobile_ham_open {
    overflow: hidden;
  }

  .mobile_ham_open header {
    transform: translateY(0);
  }

  .mobile_ham_open header .m_panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile_ham_open header .m_nav {
    transform: translateX(0);
  }

footer {
  width: 100%;
}

footer .inner {
  max-width: 1680px;
  margin: 0 auto;
  padding-block: 120px;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

footer .f_left {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

footer .f_left .l_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer .f_left .l_top .f_logo {
  width: clamp(84px, 18vw, 208px);
}

footer .f_left .l_top .f_logo img {
  width: 100%;
}

footer .f_left .l_top b {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}


footer .f_left .l_top .f_date p {
  line-height: 1.3;
  padding-bottom: 4px;
}

footer .f_left .l_top .f_date p:last-child{
  padding: 0;
}

footer .f_left .l_bottom {
  width: 260px;
  padding-block: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

footer .f_left .l_bottom .f_fam {
  position: relative;
  width: 260px;
}

footer .f_left .l_bottom .f_fam strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: capitalize;
  border-radius: 555px;
  cursor: pointer;
}

footer .f_left .l_bottom .f_fam strong i {
  transition: transform 0.3s ease;
}

footer .f_left .l_bottom .f_fam.on strong i {
  transform: rotate(180deg);
}

footer .f_left .l_bottom .f_fam ul.fam {
  position: absolute;
  left: 0;
  top: auto;
  bottom: calc(100% + 8px);
  width: 100%;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  color: var(--kia-white2);
  font-size: 300;
}

footer .f_left .l_bottom .f_fam.on ul.fam {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

footer .f_left .l_bottom .f_fam ul.fam li a {
  line-height: 1.3;
  display: block;
  padding: 6px 16px;
}

footer .f_left .l_bottom .f_fam ul.fam li:hover {
  background: rgba(241, 241, 245, 0.1);
}

footer .f_left .l_bottom .f_fam ul.fam li:hover a {
  font-weight: 500;
  color: var(--kia-white1);
}

footer .f_left .l_bottom ul.f_sns {
  width: 260px;
  display: flex;
  justify-content: space-between;
}

footer .f_left .l_bottom ul.f_sns li a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer .f_left .l_bottom ul.f_sns li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .f_left .l_bottom ul.f_sns li a i {
  font-size: 28px;
  line-height: 1;
  color: var(--kia-white2);
}

footer .f_right {
  width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .f_right .f_memu {
  width: 100%;
  display: flex;
}

footer .f_right .f_memu strong {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}

footer .f_right .f_memu article {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer .f_right .f_memu article ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .f_right .f_memu article ul li {
  font-size: 16px;
  line-height: 1.3;
}

footer .f_right .f_copy {
  width: auto;
  min-width: max-content;
  align-self: flex-end;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

body > .scroll_down_wrap,
body .wrap > .scroll_down_wrap,
body .wrap > header + .scroll_down_wrap {
  position: fixed ;
  top: auto ;
  right: auto ;
  left: 50% ;
  bottom: 32px ;
  transform: translateX(-50%) ;
  z-index: 1095 ;
  display: flex ;
  justify-content: center;
  align-items: center;
  width: max-content;
  height: auto ;
  min-height: 0 ;
  margin-top: 0 ;
  padding-bottom: 0 ;
  opacity: 1 ;
  visibility: visible ;
  pointer-events: none;
}

body .scroll_down {
  position: relative;
  display: inline-block ;
  padding-top: 60px;
  color: var(--kia-white1);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(12, 17, 21, 0.28);
  user-select: none;
  opacity: 0.88;
  white-space: nowrap;
}

body .scroll_down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid var(--kia-white1);
  border-radius: 999px;
  box-sizing: border-box;
}

body .scroll_down span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--kia-white1);
  border-radius: 50%;
  animation: scroll-down-dot 2s infinite;
  box-sizing: border-box;
}

@keyframes scroll-down-dot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  body > .scroll_down_wrap,
  body .wrap > .scroll_down_wrap,
  body .wrap > header + .scroll_down_wrap {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px)) ;
  }

  body .scroll_down {
    padding-top: 52px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  body .scroll_down span {
    width: 26px;
    height: 44px;
    margin-left: -13px;
  }

  body .scroll_down span::before {
    top: 9px;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
  }
}
