*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #1E1E1E;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  outline: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: 0;
}

address,
em {
  font-style: normal;
}

strong {
  font-weight: inherit;
}

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/pretendard/Pretendard-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/pretendard/Pretendard-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/pretendard/Pretendard-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/bai-jamjuree/BaiJamjuree-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/bai-jamjuree/BaiJamjuree-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/bai-jamjuree/BaiJamjuree-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Bai Jamjuree";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../vendor/fonts/bai-jamjuree/BaiJamjuree-Bold.ttf") format("truetype");
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
    padding: 0 40px;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 20px;
    gap: 12px;
  }
}

.col_1 {
  grid-column: span 1;
}

.col_2 {
  grid-column: span 2;
}

.col_3 {
  grid-column: span 3;
}

.col_4 {
  grid-column: span 4;
}

.col_5 {
  grid-column: span 5;
}

.col_6 {
  grid-column: span 6;
}

.col_7 {
  grid-column: span 7;
}

.col_8 {
  grid-column: span 8;
}

.col_9 {
  grid-column: span 9;
}

.col_10 {
  grid-column: span 10;
}

.col_11 {
  grid-column: span 11;
}

.col_12 {
  grid-column: span 12;
}

@media screen and (max-width: 1536px) {
  .col_tablet_1 {
    grid-column: span 1;
  }
  .col_tablet_2 {
    grid-column: span 2;
  }
  .col_tablet_3 {
    grid-column: span 3;
  }
  .col_tablet_4 {
    grid-column: span 4;
  }
  .col_tablet_5 {
    grid-column: span 5;
  }
  .col_tablet_6 {
    grid-column: span 6;
  }
  .col_tablet_7 {
    grid-column: span 7;
  }
  .col_tablet_8 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 768px) {
  .col_mobile_1 {
    grid-column: span 1;
  }
  .col_mobile_2 {
    grid-column: span 2;
  }
  .col_mobile_3 {
    grid-column: span 3;
  }
  .col_mobile_4 {
    grid-column: span 4;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn_pill {
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 18px;
  background-color: #FFFFFF;
  color: #025997;
}
@media (hover: hover) {
  .btn_pill:hover {
    background-color: #E8F3FE;
  }
}
.btn_pill.is_dark {
  background-color: #025997;
  color: #FFFFFF;
}
@media (hover: hover) {
  .btn_pill.is_dark:hover {
    background-color: #006EC2;
  }
}
.btn_pill.is_outline {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
@media (hover: hover) {
  .btn_pill.is_outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.btn_pill.is_outline_dark {
  background-color: transparent;
  border: 1px solid #025997;
  color: #025997;
}
@media (hover: hover) {
  .btn_pill.is_outline_dark:hover {
    background-color: #E8F3FE;
  }
}
.btn_text {
  font-size: 18px;
  color: #FFFFFF;
  gap: 8px;
}
.btn_text svg {
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .btn_text:hover svg {
    transform: translateX(4px);
  }
}
.btn_text.is_dark {
  color: #1E1E1E;
}
.btn_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .btn_icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.btn_icon.is_dark {
  background-color: #F3F3F3;
  border-color: #DDDDDD;
}
@media (hover: hover) {
  .btn_icon.is_dark:hover {
    background-color: #DDDDDD;
  }
}
.btn_scroll {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tag_primary {
  background-color: #025997;
  color: #FFFFFF;
}
.tag_light {
  background-color: #E8F3FE;
  color: #025997;
}
.tag_outline {
  background-color: transparent;
  border: 1px solid #DDDDDD;
  color: #818286;
}
.tag_white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #025997;
}
.label::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #025997;
}
.label.is_white {
  color: #FFFFFF;
}
.label.is_white::before {
  background-color: #FFFFFF;
}

.header {
  width: 100%;
  height: 100px;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.header.header-kv {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(-100%);
  background-color: rgba(10, 14, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.header-fixed.is_visible {
  transform: translateY(0);
}
.header.header-fixed.is_hidden {
  transform: translateY(-100%);
}
.header.is_scroll {
  background-color: rgba(10, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .header .header_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .header .header_inner {
    padding: 0 20px;
  }
}
.header .header_logo {
  flex-shrink: 0;
}
.header .header_logo a {
  display: block;
}
.header .header_logo img {
  width: 130px;
  height: 50px;
  object-fit: contain;
}
@media screen and (max-width: 1536px) {
  .header .header_nav {
    display: none;
  }
}
.header .header_nav .nav_list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.header .header_nav .nav_item a {
  display: block;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 100px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (hover: hover) {
  .header .header_nav .nav_item a:hover {
    color: #E8F3FE;
  }
}
.header .header_util {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  flex-shrink: 0;
}
.header .btn_lang {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .header .btn_lang:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.header .btn_menu {
  display: none;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 1536px) {
  .header .btn_menu {
    display: flex;
  }
}
.header .btn_menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section {
  position: relative;
  width: 100%;
}

.section_header {
  margin-bottom: 60px;
}
@media screen and (max-width: 1536px) {
  .section_header {
    margin-bottom: 40px;
  }
}
.section_header .section_label {
  margin-bottom: 16px;
}
.section_header .section_title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 1536px) {
  .section_header .section_title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .section_header .section_title {
    font-size: 28px;
  }
}
.section_header .section_title.is_dark {
  color: #1E1E1E;
}
.section_header .section_desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #A8A9AD;
}
.section_header .section_desc.is_dark {
  color: #818286;
}

.swiper {
  width: 100%;
}
.swiper .swiper-wrapper {
  align-items: stretch;
}
.swiper .swiper-slide {
  height: auto;
}

.swiper_nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.swiper_nav .swiper_btn {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .swiper_nav .swiper_btn:hover {
    background-color: #F3F3F3;
  }
}
.swiper_nav .swiper_btn.is_dark {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .swiper_nav .swiper_btn.is_dark:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.swiper_nav .swiper_btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.swiper_nav .swiper_btn svg {
  width: 20px;
  height: 20px;
}
.swiper_nav .swiper_btn.swiper_prev svg {
  transform: rotate(180deg);
}

.swiper_pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 32px;
}
.swiper_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.swiper_pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background-color: #FFFFFF;
}

html {
  overflow: hidden;
}
html.is_loaded {
  overflow: visible;
}
html::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none;
}

.wrapper {
  background-color: #0A0E12;
}

.label_text {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  color: #025997;
}
@media screen and (max-width: 1536px) {
  .label_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .label_text {
    font-size: 20px;
  }
}

.title_text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  color: #1E1E1E;
}
@media screen and (max-width: 1536px) {
  .title_text {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .title_text {
    font-size: 34px;
  }
}

.btn_more_pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 0 24px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  transition: all 0.3s ease;
  background: none;
}
@media (hover: hover) {
  .btn_more_pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.btn_more_circle {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}
.btn_more_circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.2;
  z-index: 1;
}
.btn_more_circle svg {
  position: relative;
  z-index: 2;
}

.btn_interaction {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.main_stage {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.main_stage > .main_card_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 960px;
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (max-width: 1536px) {
  .main_stage > .main_card_wrapper {
    width: 511px;
    height: 560px;
  }
}
@media screen and (max-width: 768px) {
  .main_stage > .main_card_wrapper {
    width: 308px;
    height: 340px;
  }
}

.main_card_wrapper .main_card_branding {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_card_wrapper .main_card_branding img {
  width: 280px;
}
.main_card_wrapper .main_card_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.main_card_wrapper .main_card_content .card_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main_card_wrapper .main_card_content .card_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_card_wrapper .main_card_content .card_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 88, 138, 0.8) 0%, rgba(0, 88, 138, 0) 60%);
}
.main_card_wrapper .main_card_content .card_icon {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1536px) {
  .main_card_wrapper .main_card_content .card_icon {
    width: 48px;
    height: 48px;
    top: 28px;
    right: 28px;
  }
}
@media screen and (max-width: 768px) {
  .main_card_wrapper .main_card_content .card_icon {
    width: 48px;
    height: 48px;
    top: 20px;
    right: 20px;
  }
}
.main_card_wrapper .main_card_content .card_icon img {
  width: 100%;
  height: 100%;
}
.main_card_wrapper .main_card_content .card_content {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 32px;
  z-index: 2;
}
@media screen and (max-width: 1536px) {
  .main_card_wrapper .main_card_content .card_content {
    left: 36px;
    right: 36px;
    bottom: 28px;
  }
}
@media screen and (max-width: 768px) {
  .main_card_wrapper .main_card_content .card_content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
.main_card_wrapper .main_card_content .card_name {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .main_card_wrapper .main_card_content .card_name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .main_card_wrapper .main_card_content .card_name {
    font-size: 28px;
  }
}
.main_card_wrapper .main_card_content .card_desc {
  display: block;
  margin-top: 16px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media screen and (max-width: 1536px) {
  .main_card_wrapper .main_card_content .card_desc {
    margin-top: 12px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .main_card_wrapper .main_card_content .card_desc {
    margin-top: 12px;
    font-size: 18px;
  }
}
.main_card_wrapper .main_card_content .btn_more_circle {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  opacity: 1;
}
@media screen and (max-width: 1536px) {
  .main_card_wrapper .main_card_content .btn_more_circle {
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .main_card_wrapper .main_card_content .btn_more_circle {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}
.main_card_wrapper .main_card_content .btn_more_circle::before {
  background-color: #FFFFFF;
  opacity: 1;
}
.main_card_wrapper .main_card_content .btn_more_circle svg path {
  stroke: #818286;
}

.sc_kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #FFFFFF;
}
.sc_kv .kv_inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: clip-path;
}
.sc_kv .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sc_kv .kv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc_kv .kv_container {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 0 0 168px 120px;
}
@media screen and (max-width: 1536px) {
  .sc_kv .kv_container {
    padding: 0 40px 120px;
  }
}
@media screen and (max-width: 768px) {
  .sc_kv .kv_container {
    padding: 0 20px 100px;
  }
}
.sc_kv .kv_title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 100px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1em;
}
@media screen and (max-width: 1536px) {
  .sc_kv .kv_title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sc_kv .kv_title {
    font-size: 36px;
  }
}
.sc_kv .kv_desc {
  margin-top: 32px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media screen and (max-width: 1536px) {
  .sc_kv .kv_desc {
    margin-top: 24px;
    font-size: 18px;
  }
}
.sc_kv .kv_btn {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .sc_kv .kv_btn {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_kv .kv_btn .btn_more_pill {
    display: none;
  }
}
.sc_kv .kv_btn .btn_flower {
  display: none;
}
@media screen and (max-width: 768px) {
  .sc_kv .kv_btn .btn_flower {
    display: block;
    width: 52px;
    height: 52px;
  }
  .sc_kv .kv_btn .btn_flower img {
    width: 100%;
    height: 100%;
  }
}

.sc_business {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sc_business .business_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1536px) {
  .sc_business .business_title {
    margin-bottom: 40px;
    padding: 0 40px;
  }
}
.sc_business .business_carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sc_business .business_carousel {
    gap: 16px;
  }
}
.sc_business .carousel_side {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 400px;
}
@media screen and (max-width: 1536px) {
  .sc_business .carousel_side {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .carousel_side {
    height: 268px;
  }
}
.sc_business .carousel_left .carousel_track {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .sc_business .carousel_left .carousel_track {
    gap: 16px;
  }
}
.sc_business .carousel_right .carousel_track {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .sc_business .carousel_right .carousel_track {
    gap: 16px;
  }
}
.sc_business .main_card_placeholder {
  flex-shrink: 0;
  width: 960px;
  height: 560px;
}
@media screen and (max-width: 1536px) {
  .sc_business .main_card_placeholder {
    width: 511px;
    height: 560px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .main_card_placeholder {
    width: 308px;
    height: 340px;
  }
}
.sc_business .side_card {
  flex-shrink: 0;
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1536px) {
  .sc_business .side_card {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .side_card {
    width: 268px;
    height: 268px;
  }
}
.sc_business .side_card .card_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sc_business .side_card .card_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc_business .side_card .card_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  transition: background 0.6s ease;
}
.sc_business .side_card .card_icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1536px) {
  .sc_business .side_card .card_icon {
    width: 52px;
    height: 52px;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .side_card .card_icon {
    width: 52px;
    height: 52px;
    top: 20px;
    right: 20px;
  }
}
.sc_business .side_card .card_icon img {
  width: 100%;
  height: 100%;
}
.sc_business .side_card .card_content {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  z-index: 2;
}
.sc_business .side_card .card_name {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .sc_business .side_card .card_name {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .side_card .card_name {
    font-size: 24px;
  }
}
.sc_business .side_card .btn_more_circle {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1536px) {
  .sc_business .side_card .btn_more_circle {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_business .side_card .btn_more_circle {
    top: 20px;
    right: 20px;
  }
}
.sc_business .side_card .btn_more_circle::before {
  background-color: #FFFFFF;
  opacity: 1;
}
.sc_business .side_card .btn_more_circle svg path {
  stroke: #818286;
}
.sc_business .side_card:has(.card_icon) .btn_more_circle {
  display: none;
}
@media (hover: hover) {
  .sc_business .side_card:hover .btn_more_circle {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
.sc_value {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(2, 89, 151, 0) 0%, rgb(2, 89, 151) 50%, rgb(6, 55, 91) 100%), #FFFFFF;
}
.sc_value .value_inner {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.sc_value .value_content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sc_value .value_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .sc_value .value_title {
    gap: 8px;
  }
}
.sc_value .title_sub {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.03em;
  line-height: 1em;
  opacity: 0;
  transform: translateY(30px);
}
@media screen and (max-width: 1536px) {
  .sc_value .title_sub {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .sc_value .title_sub {
    font-size: 28px;
  }
}
.sc_value .title_main {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 140px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1em;
  opacity: 0;
  transform: translateY(30px);
}
@media screen and (max-width: 1536px) {
  .sc_value .title_main {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .sc_value .title_main {
    font-size: 48px;
  }
}

.sc_network_global {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgb(6, 55, 91) 0%, rgb(12, 25, 60) 50%, rgba(9, 20, 47, 0) 100%), #030913;
  margin-top: -1px;
  overflow: hidden;
}
.sc_network_global .shared_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.sc_network_global .shared_bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 120%;
  max-height: 1200px;
  min-height: 800px;
  opacity: 0.6;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .shared_bg img {
    height: 100%;
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .shared_bg img {
    height: 80%;
    min-height: 400px;
  }
}
.sc_network_global .panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_network_global .panel_inner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_inner {
    padding: 0 20px;
  }
}
.sc_network_global .panel_inner {
  width: 100%;
}
.sc_network_global .panel_network .network_content {
  position: relative;
  width: 100%;
  height: 867px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_content {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.sc_network_global .panel_network .network_header {
  width: 406px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_header {
    width: 100%;
  }
}
.sc_network_global .panel_network .network_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #e7e7e9;
  opacity: 0.6;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .network_label {
    font-size: 20px;
  }
}
.sc_network_global .panel_network .network_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  margin-bottom: 32px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .network_title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.sc_network_global .panel_network .network_grid {
  position: absolute;
  left: 260px;
  top: 279px;
  width: 1204px;
  height: 588px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_grid {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .network_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sc_network_global .panel_network .network_card {
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(218deg, rgba(153, 153, 153, 0.1) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.08) 63%, rgba(152, 152, 153, 0.1) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(209, 210, 212, 0.2);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .network_card {
    min-height: 180px;
    padding: 20px;
  }
}
.sc_network_global .panel_network .network_card[data-index="0"] {
  left: 0;
  top: 180px;
}
.sc_network_global .panel_network .network_card[data-index="1"] {
  left: 308px;
  top: 0;
}
.sc_network_global .panel_network .network_card[data-index="2"] {
  left: 308px;
  top: 308px;
}
.sc_network_global .panel_network .network_card[data-index="3"] {
  left: 616px;
  top: 120px;
}
.sc_network_global .panel_network .network_card[data-index="4"] {
  left: 924px;
  top: 308px;
}
.sc_network_global .panel_network .network_card[data-index="5"] {
  left: 924px;
  top: 0;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .network_card[data-index="0"], .sc_network_global .panel_network .network_card[data-index="1"], .sc_network_global .panel_network .network_card[data-index="2"], .sc_network_global .panel_network .network_card[data-index="3"], .sc_network_global .panel_network .network_card[data-index="4"], .sc_network_global .panel_network .network_card[data-index="5"] {
    left: auto;
    top: auto;
  }
}
.sc_network_global .panel_network .card_icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 100px;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_icon {
    width: 80px;
    height: 45px;
  }
}
.sc_network_global .panel_network .card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sc_network_global .panel_network .card_content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc_network_global .panel_network .card_label {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_label {
    font-size: 18px;
  }
}
.sc_network_global .panel_network .card_value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.sc_network_global .panel_network .card_value .count {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 70px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_network .card_value .count {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_value .count {
    font-size: 48px;
  }
}
.sc_network_global .panel_network .card_value .plus {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_value .plus {
    font-size: 24px;
  }
}
.sc_network_global .panel_network .card_value .unit {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_value .unit {
    font-size: 16px;
  }
}
.sc_network_global .panel_network .card_note {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #a8a9ad;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_network .card_note {
    font-size: 12px;
  }
}
.sc_network_global .panel_global {
  opacity: 0;
}
.sc_network_global .panel_global .global_content {
  display: flex;
  gap: 136px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .global_content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.sc_network_global .panel_global .global_stats {
  flex-shrink: 0;
  width: 780px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .global_stats {
    width: 100%;
  }
}
.sc_network_global .panel_global .global_header {
  flex: 1;
  max-width: 548px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .global_header {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }
}
.sc_network_global .panel_global .global_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #e7e7e9;
  opacity: 0.6;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .global_label {
    font-size: 20px;
  }
}
.sc_network_global .panel_global .global_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .global_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .global_title {
    font-size: 32px;
  }
}
.sc_network_global .panel_global .stat_card_featured {
  position: relative;
  width: 100%;
  height: 230px;
  background: linear-gradient(218deg, rgba(153, 153, 153, 0.1) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.08) 63%, rgba(152, 152, 153, 0.1) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(209, 210, 212, 0.2);
  border-radius: 12px;
  padding: 60px 40px 40px;
  overflow: hidden;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .stat_card_featured {
    height: auto;
    min-height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_featured {
    padding: 40px 24px 24px;
  }
}
.sc_network_global .panel_global .stat_card_featured .stat_title {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}
.sc_network_global .panel_global .stat_card_featured .stat_label {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_featured .stat_label {
    font-size: 18px;
  }
}
.sc_network_global .panel_global .stat_card_featured .stat_year {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #a8a9ad;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}
.sc_network_global .panel_global .stat_card_featured .stat_value {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.sc_network_global .panel_global .stat_card_featured .stat_value .count {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 70px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .stat_card_featured .stat_value .count {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_featured .stat_value .count {
    font-size: 48px;
  }
}
.sc_network_global .panel_global .stat_card_featured .stat_value .unit {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_featured .stat_value .unit {
    font-size: 16px;
  }
}
.sc_network_global .panel_global .stat_card_featured .stat_chart {
  position: absolute;
  top: 20px;
  right: 0;
  width: 452px;
  height: 210px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .stat_card_featured .stat_chart {
    width: 60%;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_featured .stat_chart {
    width: 50%;
    height: 150px;
  }
}
.sc_network_global .panel_global .stat_card_featured .stat_chart .chart_line {
  width: 100%;
  height: 100%;
}
.sc_network_global .panel_global .stat_card_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 184px;
  margin-top: 24px;
  background: linear-gradient(218deg, rgba(153, 153, 153, 0.1) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.08) 63%, rgba(152, 152, 153, 0.1) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(209, 210, 212, 0.2);
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .stat_card_row {
    height: auto;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_card_row {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
.sc_network_global .panel_global .stat_item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.sc_network_global .panel_global .stat_item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 104px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_item:not(:last-child)::after {
    display: none;
  }
}
.sc_network_global .panel_global .stat_item .stat_label {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_item .stat_label {
    font-size: 18px;
  }
}
.sc_network_global .panel_global .stat_item .stat_value {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.sc_network_global .panel_global .stat_item .stat_value .count {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 70px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1536px) {
  .sc_network_global .panel_global .stat_item .stat_value .count {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_item .stat_value .count {
    font-size: 48px;
  }
}
.sc_network_global .panel_global .stat_item .stat_value .unit {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sc_network_global .panel_global .stat_item .stat_value .unit {
    font-size: 16px;
  }
}
.sc_network_global .btn_text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 0 24px;
  height: 56px;
  border-radius: 999px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sc_network_global .btn_text.is_white {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.sc_network_global .btn_text.is_white svg {
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .sc_network_global .btn_text.is_white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .sc_network_global .btn_text.is_white:hover svg {
    transform: translateX(4px);
  }
}

.sc_placeholder {
  display: none;
}

.sc_flower {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  padding: 160px 0 200px;
  overflow: hidden;
}
@media screen and (max-width: 1536px) {
  .sc_flower {
    padding: 100px 0 120px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower {
    padding: 60px 0 80px;
  }
}
.sc_flower .flower_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1536px) {
  .sc_flower .flower_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .flower_inner {
    padding: 0 20px;
  }
}
.sc_flower .flower_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .sc_flower .flower_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.sc_flower .flower_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sc_flower .flower_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #025997;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_flower .flower_label {
    font-size: 20px;
  }
}
.sc_flower .flower_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #161D27;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .sc_flower .flower_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .flower_title {
    font-size: 32px;
  }
}
.sc_flower .btn_flower_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 0 24px;
  height: 48px;
  border-radius: 999px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #161D27;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.sc_flower .btn_flower_link svg {
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .sc_flower .btn_flower_link:hover {
    border-color: #DDDDDD;
  }
  .sc_flower .btn_flower_link:hover svg {
    transform: translateX(4px);
  }
}
.sc_flower .flower_banner {
  position: relative;
  width: 100%;
  height: 660px;
  overflow: hidden;
}
@media screen and (max-width: 1536px) {
  .sc_flower .flower_banner {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .flower_banner {
    height: auto;
  }
}
.sc_flower .banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sc_flower .banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sc_flower .banner_bg img {
    object-fit: fill;
    height: auto;
    min-height: 100%;
  }
}
.sc_flower .banner_cols {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sc_flower .banner_cols {
    flex-direction: column;
  }
}
.sc_flower .banner_col {
  position: relative;
  flex: 1;
  height: 100%;
  padding: 80px 60px 48px;
  display: flex;
  flex-direction: column;
}
.sc_flower .banner_col:not(:first-child) {
  border-left: 1px solid rgba(209, 210, 212, 0.6);
}
@media screen and (max-width: 1536px) {
  .sc_flower .banner_col {
    padding: 60px 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .banner_col {
    height: auto;
    padding: 40px 24px;
  }
  .sc_flower .banner_col:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(209, 210, 212, 0.6);
  }
}
.sc_flower .banner_col.active .col_title {
  color: #FFFFFF;
}
.sc_flower .banner_col.inactive {
  justify-content: flex-end;
}
.sc_flower .banner_col.inactive .col_title {
  color: #FFFFFF;
  opacity: 0.2;
}
.sc_flower .col_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sc_flower .col_ico {
  width: 115px;
  height: 87px;
}
@media screen and (max-width: 1536px) {
  .sc_flower .col_ico {
    width: 90px;
    height: 68px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .col_ico {
    width: 80px;
    height: 60px;
  }
}
.sc_flower .col_ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sc_flower .col_desc {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media screen and (max-width: 1536px) {
  .sc_flower .col_desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .col_desc {
    font-size: 16px;
  }
}
.sc_flower .col_title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  margin-top: auto;
}
@media screen and (max-width: 1536px) {
  .sc_flower .col_title {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .sc_flower .col_title {
    font-size: 28px;
    margin-top: 24px;
  }
}

.sc_recruit {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0A0E12;
  overflow: hidden;
}
@media screen and (max-width: 1536px) {
  .sc_recruit {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit {
    padding: 60px 0;
  }
}
.sc_recruit .recruit_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}
.sc_recruit .recruit_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc_recruit .recruit_inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_inner {
    padding: 0 20px;
  }
}
.sc_recruit .recruit_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_header {
    margin-bottom: 40px;
  }
}
.sc_recruit .recruit_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #e7e7e9;
  opacity: 0.6;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_label {
    font-size: 20px;
  }
}
.sc_recruit .recruit_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_title {
    font-size: 28px;
  }
}
.sc_recruit .recruit_content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_content {
    flex-direction: column;
  }
}
.sc_recruit .recruit_left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sc_recruit .recruit_right {
  flex: 0 0 41%;
  min-width: 0;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_right {
    flex: none;
    width: 100%;
  }
}
.sc_recruit .recruit_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 36px;
  background: linear-gradient(218deg, rgba(153, 153, 153, 0.15) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.08) 63%, rgba(152, 152, 153, 0.15) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(209, 210, 212, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_bar {
    height: auto;
    padding: 20px;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (hover: hover) {
  .sc_recruit .recruit_bar:hover {
    background: linear-gradient(218deg, rgba(153, 153, 153, 0.25) 0%, rgba(255, 255, 255, 0.15) 38%, rgba(255, 255, 255, 0.15) 63%, rgba(152, 152, 153, 0.25) 100%);
  }
}
.sc_recruit .recruit_bar .bar_info {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_bar .bar_info {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.sc_recruit .recruit_bar .bar_hiring {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_bar .bar_hiring {
    font-size: 20px;
  }
}
.sc_recruit .recruit_bar .bar_divider {
  width: 1px;
  height: 26px;
  background-color: rgba(209, 210, 212, 0.6);
  flex-shrink: 0;
}
.sc_recruit .recruit_bar .bar_detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc_recruit .recruit_bar .bar_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_bar .bar_tag {
    font-size: 14px;
    height: 28px;
  }
}
.sc_recruit .recruit_bar .bar_text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_bar .bar_text {
    font-size: 14px;
  }
}
.sc_recruit .recruit_bar .bar_arrow {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.sc_recruit .recruit_banners {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banners {
    flex-direction: column;
  }
}
.sc_recruit .recruit_banner {
  flex: 1;
  position: relative;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_banner {
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banner {
    height: 300px;
  }
}
.sc_recruit .recruit_banner .banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sc_recruit .recruit_banner .banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sc_recruit .recruit_banner .banner_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(54, 78, 92, 0.87) 0%, rgba(54, 78, 92, 0) 49%);
}
.sc_recruit .recruit_banner .banner_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(0deg, rgb(0, 0, 0) 11%, rgba(0, 0, 0, 0) 36%);
}
.sc_recruit .recruit_banner .banner_txt {
  position: absolute;
  top: 48px;
  left: 40px;
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banner .banner_txt {
    top: 28px;
    left: 24px;
    right: 24px;
  }
}
.sc_recruit .recruit_banner .banner_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banner .banner_title {
    font-size: 24px;
  }
}
.sc_recruit .recruit_banner .banner_desc {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banner .banner_desc {
    font-size: 14px;
  }
}
.sc_recruit .recruit_banner .banner_more {
  position: absolute;
  bottom: 44px;
  left: 44px;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_banner .banner_more {
    bottom: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) {
  .sc_recruit .recruit_banner:hover .banner_bg img {
    transform: scale(1.05);
  }
}
.sc_recruit .recruit_job {
  display: flex;
  flex-direction: column;
  height: 560px;
  background: linear-gradient(218deg, rgba(153, 153, 153, 0.15) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.08) 63%, rgba(152, 152, 153, 0.15) 100%);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border: 1px solid rgba(209, 210, 212, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_job {
    height: 480px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job {
    height: 420px;
  }
}
.sc_recruit .recruit_job .job_img {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_job .job_img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_img {
    height: 220px;
  }
}
.sc_recruit .recruit_job .job_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc_recruit .recruit_job .job_bottom {
  flex: 1;
  display: flex;
  justify-content: space-between;
  padding: 36px 4px 4px 20px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_bottom {
    padding: 20px 4px 0;
  }
}
.sc_recruit .recruit_job .job_info {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1536px) {
  .sc_recruit .recruit_job .job_info {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.sc_recruit .recruit_job .job_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_title {
    font-size: 24px;
  }
}
.sc_recruit .recruit_job .job_desc {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_desc {
    font-size: 14px;
  }
}
.sc_recruit .recruit_job .job_more {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .sc_recruit .recruit_job .job_more {
    width: 40px;
    height: 40px;
  }
}
.sc_recruit .recruit_job .job_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.2;
}
.sc_recruit .recruit_job .job_more svg {
  position: relative;
  z-index: 1;
}

.sc_news {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  padding: 120px 0;
}
@media screen and (max-width: 1536px) {
  .sc_news {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .sc_news {
    padding: 60px 0;
  }
}
.sc_news .news_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_news .news_inner {
    padding: 0 20px;
  }
}
.sc_news .news_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .sc_news .news_title_wrap {
    margin-bottom: 32px;
  }
}
.sc_news .news_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #025997;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_news .news_label {
    font-size: 20px;
  }
}
.sc_news .news_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #161D27;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sc_news .news_title {
    font-size: 32px;
  }
}
.sc_news .news_content {
  display: flex;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_content {
    flex-direction: column;
    gap: 60px;
  }
}
.sc_news .news_section {
  flex: 1;
  min-width: 0;
}
.sc_news .news_section_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.sc_news .news_section_label {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #818286;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_news .news_section_label {
    font-size: 24px;
  }
}
.sc_news .news_nav {
  display: flex;
  gap: 8px;
}
.sc_news .news_nav .btn_nav {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #D1D2D4;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .sc_news .news_nav .btn_nav:hover {
    background: #F3F3F3;
  }
}
.sc_news .news_list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sc_news .news_list {
    flex-direction: column;
  }
}
.sc_news .news_card {
  flex: 1;
  height: 340px;
  background: #E8F3FE;
  border-radius: 12px;
  position: relative;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_card {
    height: 300px;
    padding: 32px 24px;
  }
}
@media screen and (max-width: 768px) {
  .sc_news .news_card {
    height: auto;
    min-height: 260px;
  }
}
@media (hover: hover) {
  .sc_news .news_card:hover {
    background: rgb(217.3375, 235.35, 253.3625);
  }
}
.sc_news .news_card .card_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 32px;
  border: 1px solid #025997;
  border-radius: 4px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #025997;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  align-self: flex-start;
  margin-bottom: 20px;
}
.sc_news .news_card .card_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #161D27;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 768px) {
  .sc_news .news_card .card_title {
    font-size: 20px;
  }
}
.sc_news .news_card .card_arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  color: #025997;
}
.sc_news .news_card.has_img {
  padding: 20px;
}
.sc_news .news_card.has_img .card_thumb {
  position: relative;
  width: 100%;
  height: 162px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_card.has_img .card_thumb {
    height: 140px;
  }
}
.sc_news .news_card.has_img .card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc_news .news_card.has_img .card_thumb .thumb_badge {
  position: absolute;
  top: 0;
  right: 0;
}
.sc_news .news_card.has_img .card_title {
  padding: 0;
}
.sc_news .news_divider {
  width: 1px;
  background-color: #DDDDDD;
  margin: 0 80px;
  align-self: stretch;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_divider {
    display: none;
  }
}
.sc_news .news_banner {
  flex-shrink: 0;
  width: 540px;
  display: flex;
  gap: 20px;
  padding-top: 72px;
}
@media screen and (max-width: 1536px) {
  .sc_news .news_banner {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .sc_news .news_banner {
    flex-direction: column;
  }
}
.sc_news .banner_card {
  flex: 1;
  height: 340px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sc_news .banner_card {
    height: 300px;
  }
}
.sc_news .banner_card.brochure {
  background-color: #003264;
}
.sc_news .banner_card.video {
  background-color: #27678C;
}
.sc_news .banner_card .banner_card_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px 0;
  position: relative;
  z-index: 2;
}
.sc_news .banner_card .banner_card_title {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
.sc_news .banner_card .banner_card_btn {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.sc_news .banner_card .banner_card_btn img {
  width: 100%;
  height: 100%;
}
.sc_news .banner_card .banner_card_btn.btn_play {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.sc_news .banner_card .banner_card_img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_news .banner_card .banner_card_img img {
  width: 130px;
  border-radius: 4px;
}
.sc_news .banner_card .banner_card_visual {
  position: relative;
}
.sc_news .banner_card .banner_card_visual img {
  width: 100%;
  display: block;
}
.sc_news .banner_card .banner_card_visual::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg, #27678C 0%, rgba(39, 103, 140, 0) 100%);
  z-index: 1;
}
.sc_news .banner_card .banner_card_visual::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(0deg, #27678C 0%, rgba(39, 103, 140, 0) 100%);
  z-index: 1;
}

.footer {
  position: relative;
  background-color: #F3F3F3;
}
.footer .footer_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1536px) {
  .footer .footer_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_inner {
    padding: 0 20px;
  }
}
.footer .footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 20px;
  border-bottom: 1px solid #D1D2D4;
}
@media screen and (max-width: 768px) {
  .footer .footer_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0 16px;
  }
}
.footer .footer_links {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer_links {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.footer .footer_links a {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6D6E72;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer_links a.is_bold {
  font-weight: 700;
  color: #025997;
}
@media (hover: hover) {
  .footer .footer_links a:hover {
    color: #025997;
  }
}
.footer .footer_links .link_youtube {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer_links .ico_youtube {
  width: 32px;
  height: 32px;
}
.footer .link_divider {
  width: 1px;
  height: 14px;
  background-color: #D1D2D4;
  flex-shrink: 0;
}
.footer .footer_family {
  position: relative;
}
.footer .footer_family .family_select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 220px;
  padding: 16px 16px 16px 20px;
  background: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6D6E72;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer .footer_family .family_select {
    width: 100%;
  }
}
.footer .footer_family .family_select .ico_plus {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .footer .footer_family .family_select:hover {
    background: rgb(247.35, 247.35, 247.35);
  }
}
.footer .footer_family .family_list {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 220px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  padding: 8px 0;
  margin-bottom: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 10;
}
.footer .footer_family .family_list li {
  list-style: none;
}
.footer .footer_family .family_list a {
  display: block;
  padding: 10px 20px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #6D6E72;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .footer .footer_family .family_list a:hover {
    background: #F3F3F3;
    color: #025997;
  }
}
.footer .footer_family.is_open .family_list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .footer_family.is_open .ico_plus {
  transform: rotate(45deg);
}
.footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 0 32px;
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0 20px;
  }
}
.footer .footer_slogan {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #BCBDC1;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
@media screen and (max-width: 1536px) {
  .footer .footer_slogan {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_slogan {
    font-size: 24px;
  }
}
.footer .footer_info {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer .footer_info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer .footer_logo {
  width: 110px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .footer .footer_logo {
    width: 90px;
    height: auto;
  }
}
.footer .footer_copyright_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .footer_offices {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #161D27;
  letter-spacing: -0.02em;
  line-height: 1.3em;
}
.footer .office_divider {
  width: 1px;
  height: 14px;
  background-color: #D1D2D4;
  flex-shrink: 0;
}
.footer .footer_copyright {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #818286;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  text-align: left;
}
.footer .footer_quick {
  position: absolute;
  right: 80px;
  top: -150px;
  width: 60px;
  height: 154px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1536px) {
  .footer .footer_quick {
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_quick {
    right: 20px;
    width: 50px;
    height: 130px;
  }
}
@media (hover: hover) {
  .footer .footer_quick:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}
.footer .footer_quick .quick_logo {
  width: 36px;
  height: 36px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer_quick .quick_logo {
    width: 28px;
    height: 28px;
    margin-top: 12px;
  }
}
.footer .footer_quick .quick_dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #BCBDC1;
  margin-top: 8px;
}
.footer .footer_quick .quick_text {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3em;
  text-align: center;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .footer .footer_quick .quick_text {
    font-size: 10px;
  }
}
.footer .footer_quick .quick_arrow {
  width: 24px;
  height: 24px;
  margin-top: auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer_quick .quick_arrow {
    width: 20px;
    height: 20px;
    margin-bottom: 12px;
  }
}
