@charset "utf-8";

/* main visual */

/* .main_visual {
    padding: 120px 0 160px 0;
    background: var(--GREY-800, #2E2E2E);
} */

/* .mv_box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mv_img {
    aspect-ratio: 1 / 0.75027;
    background-color: #ddd;
    width: calc(100% - 490px);
}

.mv_txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 440px;
}

.mv_txt h2 {
    color: #9B7FAB;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.4px;
}

.mv_txt p {
    color: #9B7FAB;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.16px;
} */

.main_visual_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* @media (max-width: 768px) {
  .main_visual_wrap {
    height: auto; 
  }
} */

.main_video_box {
  width: 100%;
  height: 100%;
  background-color: #000;
}

.main_video_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb_slider {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  z-index: 10;
}

@media (max-width: 768px) {
  .thumb_slider {
    position: relative;
    bottom: 0;
    padding: 10px;
    background: #222;
  }

 
}

.thumb_slider .swiper-slide {
  /* aspect-ratio: 1 / 0.6117; */
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border 0.2s ease;
  cursor: pointer;
}

.thumb_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb_slider .swiper-slide.active {
  border-color: orange;
}

/* con01 */

.text_over_01 {
    overflow: hidden !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient:
        vertical !important;
}

.text_over_02 {
    overflow: hidden !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient:
        vertical !important;
}

.text_over_04 {
    overflow: hidden !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient:
        vertical !important;
}



.con01.section,
.con02.section {
    /* padding: 80px 0 104px 0; */
    padding: 40px 0;
}

.slide_txt_box .inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.slide_tit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* width: 100%; */
    width: fit-content;
}

.slide_tit h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.4px;
}

.slide_tit p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.2px;
}

.slide_txt_box .view_all_btn {
    margin-left: auto;
}

.view_all_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 8px;
    background: #9B7FAB;
    padding: 16px 32px;
}

.view_all_btn a p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 20px */
}

.slide_img_box {
    aspect-ratio: 1 / 1.375;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slide_img_box img {
    width: 100%;
    /* height: auto; */
    height: 100%;
    display: block;
    transition: filter 0.3s ease;
    cursor: pointer;
}

.slide_img_box .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* 흐려지는 어두운 배경 */
    backdrop-filter: blur(8px);
    /* 배경 흐림 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    padding: 20px;
    cursor: pointer;
}

.slide_img_box .text-box {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.slide_img_box .text-box h3 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
    letter-spacing: 0.07px;
    text-align: left;
}

.slide_img_box .text-box p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: 0.16px;
    text-align: left;
    margin-top: 15px
}

.slide_img_box:hover img {
    filter: blur(4px);
}

.slide_img_box:hover img.eye_con_view_img {
    filter: unset;
}



.slide_img_box:hover .overlay {
    opacity: 1;
}

.slide_img_box:hover .text-box {
    opacity: 1;
    transform: translateY(0);
}

.slide_tit.center {
    text-align: center;
}

.con03.section {
    padding: 240px 0;
}

.main_videos_box {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.video_txt_box {
    width: 560px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video_video_box {
    width: calc(100% - 600px);
    aspect-ratio: 1 / 0.58;
}

.video_con_txt {
    border-radius: 8px;
    background: var(--GREY-800, #2E2E2E);
    height: 80px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.video_con_txt.active {
    border: 1.5px solid #806491;
}

.video_con_txt p {
    color: #FFF;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 20px */
    overflow: hidden !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient:
        vertical !important;
    width: 100%;
}

.video_icon {
    width: 8px;
    height: 8px;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    background: var(--pri, #806491);
}

.con04.section {
    padding: 80px 0;
}

.con04 .slide_tit h2,
.con04 .slide_tit p {
    color: #171717;
}

.main_notice_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.main_notice_yo {
    width: calc(50% - 20px);
}

.notice_tit {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.notice_tit h2 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 28px */
    letter-spacing: 0.07px;
}

.notice_tit a {
    color: var(--text, #9B7FAB);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 20px */
}

.main_notice_con {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notice_one {
    border-radius: 8px;
    background: var(--GREY-800, #2E2E2E);
    padding: 24px 80px;
    cursor: pointer;
}

.notice_one h3 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 20px */

    overflow: hidden !important;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient:
        vertical !important;

}

.notice_one p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: 0.16px;
    margin-top: 8px;
}

.infi_Swiper .swiper-slide {
    border-top: 1px solid var(--GREY-700, #444);
    /* border-right: 1px solid var(--GREY-700, #444); */
    border-bottom: 1px solid var(--GREY-700, #444);

    display: flex;
    padding: 28px 56px;
    justify-content: center;
    align-items: center;
}

.infi_Swiper .swiper-slide img {
    /* width: 100%;
    height: 100%; */
    height: 38px;
    width: 78px;
}

.con05.section {
    padding: 250px 0 120px 0;
}

.infi_Swiper {
    margin-top: 120px;
}

.infi_loop_box {
    position: relative;
}

.infi_loop_box::after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(34, 34, 34, 0.00) 0%, #222 50%);
    z-index: 999;
}

.infi_loop_box::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(270deg, rgba(34, 34, 34, 0.00) 0%, #222 50%);
    z-index: 999;
}

.video_video_box img {
    width: 100%;
}

.slide_box {
    border-top: 1px solid #444;
    /* border-bottom: 1px solid #444; */
    padding: 16px 0 0 0;
}

.slide_txt_box {
    margin-bottom: 40px;
    width: 100%;
}

.cate_box ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cate_box ul li {
    cursor: pointer;
}

.cate_box ul li p {
color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%;
letter-spacing: 0.16px;
}

@media (max-width: 1400px) {
    .slide_txt_box .inner {
        width: 93.75%;
        flex-wrap: wrap;
        gap: 20px;
    }

     .main_video_box video {
    /* height: 700px; */
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
}

@media (max-width: 1200px) {
    .main_videos_box {
        flex-direction: column;
    }

     .main_visual_wrap {
    height: auto; 
  }

    .video_video_box,
    .main_notice_yo
     {
        width: 100%;
    }

    .con03.section,
    .con05.section {
        padding: 80px 0;
    }
    .main_notice_box {
        flex-direction: column;
    }

}

@media all and (max-width:1000px) {
    .main_visual {
        padding: 60px 0;
    }

    .mv_box {
        flex-direction: column;
    }

    .mv_txt,
    .mv_img {
        width: 100%;
    }

    .mv_txt h2 {
        font-size: 32px;
    }

    .slide_tit h2 {
        font-size: 30px;
    }

    .con01_slide,
    .con02_slide {
        padding: 0 10px;
    }

    .video_txt_box {
        width: 100%;
    }

    .video_con_txt {
        height: 65px;
        padding: 0 20px;
    }

    .video_con_txt p,
    .notice_one h3 
     {
        font-size: 18px;
    }
    .notice_tit a {
        font-size: 16px;
    }
    .notice_tit h2 {
        font-size: 23px;
    }
    .notice_one {
        padding: 20px 25px;
    }
    .notice_one p {
        font-size: 15px;
    }
}


@media all and (max-width:650px) {
.infi_Swiper .swiper-slide {
    padding: 25px 50px;
}
}

a {
    text-decoration: unset !important;
}


/* 20251021 추가 */
/* .overlay_wrapper {
	width: 100%;
	height: 100%;
	position: relative;

     display: flex;
    align-items: center;
    justify-content: center;
} */

.state_badge {
	position: absolute;
	top: 12px;
	left: 12px;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.40);
	padding: 8px;
    z-index: 99;
}



/* 20251230 추가 */
@media (max-width: 1440px) {
    .slide_tit {
        width: 61%;
    }
}