/* sec01 */
.sec01 {
}
.sec01 .container {
  padding: 120px 0;
  gap: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sec01 .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #111;
}
.sec01 .title span {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.56px;
}
.sec01 .title h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 88px;
  letter-spacing: -1.44px;
}
.sec01 .desc {
  align-self: flex-end;
  display: flex;
  width: 336px;
  padding-top: 168px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.sec01 .desc p {
  color: #595959;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.44px;
}
.sec01 .btns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.sec01 .btns a {
  display: flex;
  width: calc(100% / 2 - 8px);
  height: 50px;
  border-radius: 8px;
  background: #fff;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
}
.sec01 .scroll_slide {
}
.sec01 .scroll_slide .slider_container {
  display: flex;
  gap: 20px;
  width: 100%;
}

.sec01 .scroll_slide img {
  flex-shrink: 0;
  height: auto;
  width: 400px;
}

/* sec02 */
.sec02 {
}
.table_box {
  margin: 60px 0 40px;
  display: flex;
  gap: 0 16px;
}
.sec02 .cage {
  padding-top: 0;
}
.table_box > div {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
}
.table_box .left {
  display: flex;
  width: 272px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
}
.sec02 .table_box .left::before {
  position: absolute;
  content: "";
  background-image: url(../img/cursor01.svg);
  width: 88.762px;
  height: 62px;
  left: -48px;
  top: 186px;
  background-repeat: no-repeat;
  background-size: contain;
}
.table_box .left .tit {
  display: flex;
  padding: 12px;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px; /* 133.333% */
  letter-spacing: -0.54px;
}
.table_box .left .tit img {
  width: 24px;
  height: 24px;
}

.table_box .left .con_list {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
  width: 100%;
}
.table_box .left .con_list h5 {
  color: #aaa;
  font-size: 16px;
  font-weight: 600;
  padding: 0 12px;
}
.table_box .left .con_list ul {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
.table_box .left .con_list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
}
.table_box .left .con_list ul li img {
  width: 18px;
  height: 20px;
}
.table_box .right {
  width: 700px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.sec02 .table_box .right::before {
  position: absolute;
  content: "";
  background-image: url(../img/cursor02.svg);
  width: 99px;
  height: 62px;
  right: -44.5px;
  top: 259px;
  background-repeat: no-repeat;
  background-size: contain;
}
.sec03 .table_box .right::before {
  position: absolute;
  content: "";
  background-image: url(../img/cursor03.svg);
  width: 89px;
  height: 62px;
  right: 6px;
  top: 243px;
  background-repeat: no-repeat;
  background-size: contain;
}
.table_box .right .tit {
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.table_box table {
  border-collapse: collapse; /* 경계 깔끔하게 만들기 */
  width: 100%;
}

.table_box table thead {
  border-bottom: 1px solid #e9e9e7;
}
.table_box table thead th {
  color: #888;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.42px;
  text-align: left;
  padding: 0 8px; /* auto → 0으로 수정 */
  height: 36px;
  vertical-align: middle;
}

.table_box table tbody tr {
  border-bottom: 1px solid #e9e9e7;
}

.table_box table tbody td {
  padding: 8px;
  font-size: 14px;
  color: #595959;
  vertical-align: middle;
  border-right: 1px solid #e9e9e7;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.42px;
  font-weight: 500;
}
.table_box table tbody td:last-child {
  border-right: 0;
}

.table_box table tbody td span {
  color: #595959;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.42px;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 200px;
  background: #d3efff;
}
.table_box table tbody td span.pink {
  background: #ffd7d7;
}
.table_box table tbody td span.orange {
  background: #ffdcc3;
}
.table_box table tbody td span.yellow {
  background: #ffedac;
}
.table_box table tbody td span.green {
  background: #d8f4bc;
}
.menu_td {
  font-weight: 600 !important;
}
.toggle_td {
  vertical-align: top;
}
.toggle_td em {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 22px;
  gap: 0 3px;
  border-radius: 500px;
  background: #2e6fff;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.toggle_td em.off {
  color: #b8b8b8;
  background: #e8e8e8;
}
.toggle_td em .circle {
  width: 11px;
  height: 11px;
  border-radius: 500px;
  background: #fff;
}
.sec02_video_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 20px;
}
.sec02_video_list ul li {
  width: calc(100% / 3 - 14px);
}
.sec02_video_list ul li .img {
  cursor: pointer;
}
.sec02_video_list ul li h4 {
  margin-top: 12px;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
}
.sec02_video_list ul li h4 span {
  font-weight: 600;
}
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.video-content {
  position: relative;
  z-index: 2;
  background: #000;
  border-radius: 10px;
  width: 800px;
  aspect-ratio: 16/9;
}
.video-content iframe {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}
.video-close {
  position: absolute;
  top: -40px;
  right: -5px;
  cursor: pointer;
  width: 30px;
}
/* sec03 */
.sec03 .sec03_box {
  margin: 60px 0 40px;
  display: flex;
  gap: 0 16px;
}

.sec03_landing_list {
  display: flex;
  gap: 0 20px;
  align-items: stretch;
}
.sec03_landing_list .preview {
  width: 736px;
  height: 420px;
  position: relative;
}
.sec03_landing_list .preview a {
  display: inline-block;
  width: 100%;
}
.sec03_landing_list .preview span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  width: 84px;
  height: 28px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.sec03_landing_list ul {
  width: 232px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.sec03_landing_list ul li {
  position: relative;
  cursor: pointer;
}
.sec03_landing_list ul li span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  width: 72px;
  height: 28px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 100%;
}
.popup-wrapper {
  display: none;
  position: fixed;
  height: 100%;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.popup-wrapper .popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 101;
}
.popup-content {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  z-index: 103;
}
.popup-content p {
  text-align: center;
  margin-top: 12px;
}
.popup-close {
  position: absolute;
  top: -40px;
  right: -5px;
  cursor: pointer;
  width: 30px;
}
.popup-swiper .swiper-button-next,
.popup-swiper .swiper-button-prev {
  width: 30px;
  height: 30px;
  top: 55%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.popup-swiper .swiper-button-next {
  background-image: url("../img/swiper_next_btn.svg");
  right: 32px;
}

.popup-swiper .swiper-button-prev {
  background-image: url("../img/swiper_prev_btn.svg");
  left: 32px;
}

/* 기본 아이콘 제거 */
.popup-swiper .swiper-button-next::after,
.popup-swiper .swiper-button-prev::after {
  display: none;
}
.popup-pager ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 45px;
  margin-top: -2px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.popup-pager ul li {
  width: calc(100% / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.42px;
  background-color: #fff;
}
.popup-pager ul li.active {
  color: #fff;
  background: #111;
}

/* sec04 */
.sec04 {
}
.sec04_con_list {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
  margin: 60px 0 80px;
}
.sec04_con_list .tit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
.sec04_con_list .tit span {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.36px;
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #1a191f;
}

.sec04_con_list .tit h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  padding: 20px 0 28px;
}
.sec04_con_list .tit ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec04_con_list .tit li {
  padding: 6px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.36px;
  border-radius: 8px;
  background: #1a191f;
}
.sec04_box {
  border-radius: 8px;
  background: #fff;
  display: flex;
  padding: 32px 24px;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  justify-content: space-between;
  position: relative;
}

.sec04_con_list > li:first-child .sec04_box::before {
  position: absolute;
  content: "";
  background-image: url(../img/cursor04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 351px;
  top: 266.5px;
  width: 90px;
  height: 62px;
}
.sec04_box .img {
  width: 608px;
}
.sec04_box .txt {
  padding: 16px;
}
.sec04_box .txt h5 {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
  margin-bottom: 28px;
}
.sec04_box .txt > div {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.sec04_box .txt > div.after {
  padding-top: 18px;
}
.sec04_box .txt > div span {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  width: 80px;
  height: 32px;
  padding: 0px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #9fa3af;
}
.sec04_box .txt > div ul {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.sec04_box .txt > div ul li {
  color: #a0a0a0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  padding-left: 24px;
  position: relative;
}
.sec04_box .txt > div li::before {
  position: absolute;
  content: "";
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 5px;
  height: 5px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 500px;
  background: #a0a0a0;
}
.sec04_box .txt > div.after li {
  color: #111;
}
.sec04_box .txt > div.after li::before {
  background: #111;
}

.sec04_banner {
  position: relative;
}
.sec04_banner .img {
}
.sec04_banner .txt {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.sec04_banner .txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.36px;
}
.sec04_banner .txt h5 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.6px;
  margin: 8px 0 28px;
}
.sec04_banner .txt a {
  display: flex;
  width: 180px;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.32px;
  border-radius: 8px;
}

/* sec05 */
.sec05 .section_title {
  text-align: left;
}
.sec05 .section_title span {
  color: #2e6fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}
.sec05_list {
  margin-top: 60px;
}
.sec05_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sec05_list ul li {
  width: calc(100% / 3 - 14px);
  background: #fff;
  padding: 28px 24px;
  border-radius: 8px;
}
.sec05_list ul li span {
  color: #2e6fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.28px;
}
.sec05_list ul li h5 {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
  margin: 4px 0 16px;
}
.sec05_list ul li p {
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.36px;
}
.sec05_list ul li img {
  margin-top: 32px;
  width: 72px;
  height: 72px;
  display: block;
  margin-left: auto;
}

/* sec06 */
.sec06 {
  background: #111;
}
.sec06 .section_title {
  text-align: left;
  color: #fff;
}
.sec06 .cage {
  position: relative;
  padding: 140px 0 60px;
}
.sec06 .portview_link {
  position: absolute;
  right: 0;
  bottom: 60px;
}
.sec06 .portview_link a {
  border-radius: 8px;
  border: 1px solid #fff;
  display: flex;
  height: 48px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.36px;
  transition: all 0.3s ease;
}
.sec06 .portview_link:hover a {
  color: #111;
  border: 1px solid #111;
  background-color: #fff;
  transition: all 0.3s ease;
}
.sec06 .portview_link:hover a span {
  background: #111;
  transition: all 0.3s ease;
}
.sec06 .portview_link .hamburger {
  display: flex;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5px;
  transition: all 0.3s ease;
}
.sec06 .portview_link a span {
  display: block;
  width: 12px;
  height: 1.5px;
  background: #fff;
}
.sec06_slide {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  padding-bottom: 140px;
}
.sec06_slide ul {
  display: flex;
  gap: 0 20px;
}
.sec06_slide ul li {
  width: 544px;
  height: 300px;
  cursor: pointer;
  position: relative;
}
.sec06_slide ul li .sec06_logo {
  opacity: 0;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  transition: all 0.5s ease;
}
.sec06_slide ul li:hover .sec06_logo {
  opacity: 1;
  transition: all 0.3s ease;
}

/* sec07 */
.sec07 .container {
  display: flex;
  align-items: center;
  gap: 0 104px;
}
.sec07 .txt {
  color: #fff;
}
.sec07 .txt span {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.48px;
}
.sec07 .txt h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.96px;
  margin: 16px 0;
}
.sec07 .txt p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.4px;
}
.sec07 .txt a {
  margin-top: 60px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.36px;
  display: flex;
  width: 180px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: #111;
}
.sec07_slide {
  width: 400px;
  position: relative;
}
.sec07_slide .swiper-container {
  height: 100%;
  height: 468px;
  overflow: hidden;
}
.sec07_slide .swiper-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}

.sec07_slide .swiper-slide {
  width: 100%;
  height: 84px !important;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.4;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.sec07_slide .swiper-slide.active {
  opacity: 1;
  transform: scale(1);
  border: 2px solid #2e6fff;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.sec07_slide .swiper-slide .num {
  color: #727272;
  font-size: 24px;
  font-weight: 700;
}

.sec07_slide .swiper-slide h4 {
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.sec07_slide .swiper-slide em {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  background: #2e6fff;
}

.btn-prev,
.btn-next {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.btn-prev {
  top: -42.5px;
}

.btn-next {
  bottom: -42.5px;
}

.quick {
  position: fixed;
  right: 62px;
  bottom: 60px;
}
.quick ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick ul li {
  display: flex;
  width: 160px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #F59E0B;
  box-shadow: 0px 0px 8px 0px rgba(34, 34, 34, 0.15);
}
.quick ul li a {
  display: flex;
  padding: 0px 16px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.28px;
}
.quick ul li a span {
  color: #F59E0B;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.24px;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: #FFF;
}
.quick ul li:last-child {
  background: #FFF;
}
.quick ul li:last-child a {
  color: #111;
}
.quick ul li:last-child  a span {
  color: #FFF;
  background: #F59E0B;
}

@media (min-width: 2000px) {
  .sec01 .scroll_slide img {
    flex-shrink: 0;
    height: auto;
    width: 490px;
  }
}
