.wrapper {
    width: 1200px;
    margin: 0 auto;
}
.top_video {
    width: 100%;
    height: 540px;
    position: relative;
    margin-top: 76px;
}
.top_video::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
}
.top_video .video_txt {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
    font-size: 42px;
    line-height: 1.2;
}
.top_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_video video::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
}

.process_wrap {
    padding: 100px 0 54px 0;
    color: #fff;
}
.process_wrap .wrapper .process h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 54px;
}
.process_wrap .wrapper .process .box_wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.process_wrap .wrapper .process .box_wrap li.box {
    position: relative;
    padding: 10px 10px 22px 22px;
    width: 282px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 34px rgba(255, 255, 255, 0.14);
    transition: all 0.5s linear; 
}
.process_wrap .wrapper .process .box_wrap li.box:hover {
    background-color: #fff;
}
.process_wrap .wrapper .process .box_wrap li.box .number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 56px;
    color: rgba(255, 255, 255, 0.14);
}
.process_wrap .wrapper .process .box_wrap li.box:hover .number {
    color: rgba(0, 0, 0, 0.14);
}
.process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_tit {
    position: absolute;
    bottom: 22px;
    font-size: 24px;
    line-height: 1.2;
    transition: all 0.6s linear;
}
.process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_tit .m_br {
    display: none;
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_tit {
    bottom: 330px;
    color: #000;
    transform: translate(0, 100%);
}
.process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail {
    font-size: 18px;
    line-height: 1.4;
    opacity: 0;
    position: absolute;
    bottom: 22px;
}
.process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail span {
    position: relative;
    display: block;
    transform: translate(0, 22px);
    padding-left: 14px;
    transition: all 0.4s ease; 
    opacity: 0;
    line-height: 1.4;
    word-break: keep-all;
    letter-spacing: -0.5px;
}
.process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail span::before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: #333333;
    content: "";
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_detail {
    opacity: 1;
    color: #333333;
    padding-right: 16px;
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_detail span.n1 {
    opacity: 1;
    transition-delay: .4s;
    transform: translate(0px);
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_detail span.n2 {
    opacity: 1;
    transition-delay: .5s;
    transform: translate(0px);
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_detail span.n3 {
    opacity: 1;
    transition-delay: .6s;
    transform: translate(0px);
}
.process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_detail span.n4 {
    opacity: 1;
    transition-delay: .7s;
    transform: translate(0px);
}

.highlights {
    padding: 80px 0 100px 0;
}
.highlights .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.highlights .title h3 {
    font-size: 18px;
    color: var(--mainpink);
    margin-bottom: 18px;
}
.highlights .title span {
    background-color: var(--mainpink);
    width: 1px;
    height: 100px;
}
.highlights .contents {
    padding: 54px 0;
}
.highlights .swiper_wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.highlights .swiper_wrap::before {
    position: absolute;
    content: '';
    display: flex;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
.highlights .swiper_wrap::after {
    position: absolute;
    content: '';
    display: flex;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
.highlights .swiper_wrap .c_swiper {
    color: var(--mainpink);
    width: fit-content;
    animation: scrollch 30s linear infinite;
}
.highlights .swiper_wrap:hover .c_swiper {
    animation-play-state: paused;
}
@keyframes scrollch {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
    /* 0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    } */
}
.highlights .swiper_wrap .c_swiper .c_wrapper {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide {
    position: relative;
    width: 282px;
    height: 486px;
    margin: 0 12px;
    overflow: hidden;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide::after {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide:hover::after {
    display: block;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .cover_video {
    width: 282px;
    height: 486px;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .cover_video video {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .hover_titile {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .hover_titile span {
    display: block;
    opacity: 0;
    transform: translate(0, 300%);
    transition: all 0.4s ease; 
    -webkit-transition: all 0.4s ease;
} 
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .hover_titile span.n02 {
    font-size: 20px;
}
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide:hover .hover_titile span.n01 {
    margin-bottom: 4px;
    transition-delay: 0.1s;
    opacity: 1;
    transform: translate(0);
    
} 
.highlights .swiper_wrap .c_swiper .c_wrapper .c_slide:hover .hover_titile span.n02 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translate(0);
}


/* ar page*/
.process_wrap.ar_process_wrap .wrapper .process .box_wrap {
    flex-wrap: wrap;
    gap: 14px;
}
.highlights.ar_highlights .swiper_wrap .c_swiper {
    color: var(--mainpink);
    width: auto;
    animation: none;
}
.highlights.ar_highlights .swiper_wrap .c_swiper .c_wrapper {
    width: auto;
    justify-content: center;
}
.highlights.ar_highlights .swiper_wrap .c_swiper .c_wrapper .c_slide:hover::after {
    display: none;
}
.highlights.ar_highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .hover_titile {
    display: none;
}
/* 계정운영 account */
.process_wrap.account_process_wrap .wrapper .process .box_wrap {
    flex-wrap: wrap;
    gap: 14px;
}
@media screen and (max-width:1200px) {
    .wrapper {
        width: 100%;
        padding: 0 12px;
    }
    .process_wrap .wrapper .process .box_wrap {
        gap: 14px;
    }
}
/* ar */
@media screen and (max-width:1024px) {
    .process_wrap.ar_process_wrap .wrapper .process .box_wrap {
        flex-wrap: wrap
    }
    .process_wrap.ar_process_wrap .wrapper .process .box_wrap li.box {
        width: calc(50% - 7px);
    }
    .highlights.ar_highlights .swiper_wrap .c_swiper {
        width: fit-content;
        animation: scrollar 10s linear infinite;
    }
    @keyframes scrollar {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }
}
/* 계정 운영 */
@media screen and (max-width:1024px) {
    .process_wrap.account_process_wrap .wrapper .process .box_wrap {
        flex-wrap: wrap
    }
    .process_wrap.account_process_wrap .wrapper .process .box_wrap li.box {
        width: calc(50% - 7px);
    }
}
@media screen and (max-width:767px) {
    .wrapper {
        padding: 0 20px;
    }
    .top_video {
        height: 320px;
        margin-top: 64px;
    } 
    .top_video .video_txt {
        font-size: 32px;
    }
    .process_wrap {
        padding: 60px 0 30px 0;
    }
    .process_wrap .wrapper .process h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .process_wrap .wrapper .process .box_wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 14px;
    }
    .process_wrap .wrapper .process .box_wrap li.box {
        height: 240px;
        padding: 0 10px 14px 10px;
        width: calc(50% - 7px);
    }
    .process_wrap .wrapper .process .box_wrap li.box .number {
        top: 0;
        right: 8px;
        font-size: 32px;
        line-height: 1.75;
    }
    .process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail {
        font-size: 14px;
        line-height: 1.2;
        bottom: 14px;
    } 
    .process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_tit {
        font-size: 18px;        
    }
    .process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_tit .m_br {
        display: block;
    }
    .process_wrap .wrapper .process .box_wrap li.box:hover .hov_txt .box_tit {
        bottom: 220px;
    }
    .process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail span {
        padding-left: 11px;
    }
    .process_wrap .wrapper .process .box_wrap li.box .hov_txt .box_detail span::before {
        top: 7px;
    }

    .highlights {
        padding: 0 0 100px 0;
    }
    .highlights .title {
        padding: 10px 0;
    }
    .highlights .title h3 {
        line-height: 50px;
        margin-bottom: 0;
    }
    .highlights .title span {
        height: 120px;
    }
    .highlights .contents {
        padding: 20px 0 0 0;
        margin: 0 20px;
    }
    .highlights .swiper_wrap .c_swiper .c_wrapper .c_slide {
        width: 224px;
        height: 386px;
        margin: 0 7px;
    }
    .highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .cover_img {
        width: 224px;
        height: 386px;
    }
    .highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .cover_video {
        width: 224px;
        height: 386px;
    }
    .highlights .swiper_wrap .c_swiper .c_wrapper .c_slide .hover_titile {
        font-size: 20px;
    } 
}