@charset "utf-8";

div, p, span, b, strong, ul, li, h1, h2, h3, h4, h5 {word-break: keep-all;}
img {max-width: 100%}

.desc {
    font-size: 18px;
    line-height: 1.7;
}
.arrow {
    width: 14px;
    aspect-ratio: 14 / 12;
}
.arrow .color {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.more-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}
.more-btn span {
    font-size: 14px;
    font-weight: 600;
}
.more-btn .circle {
    width: 46px;
    aspect-ratio: 1 / 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: transform .3s ease;
}
.more-btn .arrow {transition: transform .3s ease;}
.more-btn .arrow .color {
    stroke-dasharray: 20;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset .4s ease;
}
.more-btn.list-btn {justify-content: center;}
.more-btn.list-btn .circle span::before,
.more-btn.list-btn .circle span::after {
    content: "";
    background: #fff;
    width: 14px;
    height: 2px;
    margin: 6px 0;
    display: block;
}
.more-btn.white {color: #fff;}
.more-btn.white .circle {background: #fff;}
.more-btn.white .circle .arrow .color {stroke: #000;}
.more-btn:hover .circle {transform: scale(1.08);}
.more-btn:hover .arrow {transform: translateX(4px);}
.download-btn {
    border: 1px solid #000;
    height: 42px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
    min-width: 180px;
    background: #fff;
}
.download-btn b {font-size: 15px;}
.download-btn:hover {background: #000;}
.download-btn:hover b {color: #fff;}
.download-btn:hover .download .color {stroke: #fff;}
.youtube .inner {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 56.25%;
}
.youtube .inner iframe {
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
.shorts .inner {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
}
.shorts .inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media all and (max-width: 767px) {
    .desc {
        font-size: 15px;
        line-height: 1.5;
    }
    .arrow {width: 12px;}
    .more-btn {gap: 10px;}
    .more-btn span {font-size: 12px;}
    .more-btn .circle {width: 30px;}
    .download-btn {
        min-width: auto;
        padding: 0 12px;
    }
    .download-btn b {
        font-size: 14px;
        padding-right: 20px;
    }
}

/*main*/
.main section {
    position: relative;
    overflow: hidden;
    padding: 200px 0;
}
.main .title {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .title h2 {
    font-size: 36px;
    font-weight: 800;
}
.main .hero {
    height: 100dvh;
    color: #fff;
    background: #000;
    padding: 0;
}
.main .hero .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.main .hero .video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main .hero .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    text-align: center;
}
.main .hero .txt .inner {
    display: inline-flex;
    align-items: center;
    gap: .35em;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    font-size: 150px;
    font-weight: 800;
}
.main .hero .txt .sp-wrap {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    width: auto;
    overflow: hidden;
    height: 1.13em;
    line-height: 1.1em;
}
.main .hero .txt .sp-word {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    transform: translate3d(0,110%,0);
    opacity: 0;
    will-change: transform, opacity;
}
.main .hero .txt .sp-word.active {
    transform: translate3d(0,0,0);
    opacity: 1;
}
.main .hero .txt p {
    font-size: 24px;
    font-weight: bold;
    margin-top: 60px;
}
.main .hero .scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 1;
}
.main .hero .scroll img {animation: scroll 1s ease-in-out 0s infinite alternate;}
.main .hero .scroll span {
    font-size: 13px;
    color: #fff;
}
@keyframes scroll {
    0% {transform: translateY(-3px);}
    100% {transform: translateY(3px);}
}
.main .values {
    background: url(/img/assets/main_values_bg.jpg) center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding-bottom: 0;
}
.main .values h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 400px;
    position: relative;
    z-index: 3;
}
.main .values .txt {
    position: relative;
    z-index: 3;
}
.main .values .txt > div {
    margin-bottom: 400px;
    will-change: transform;
}
.main .values .txt strong {
    display: block;
    font-size: 100px;
    font-weight: 800;
    color: #444;
    margin-bottom: 30px;
}
.main .values .txt strong span {color: #fff;}
.main .values .img > div {
    position: absolute;
    width: 500px;
    aspect-ratio: 5 / 4;
    will-change: transform;
}
.main .values .img span {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}
.main .values .img video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main .values .img .img-1 {top: 200px; left: 50px;}
.main .values .img .img-2 {
    width: 400px;
    aspect-ratio: 400 / 500;
    top: 18%;
    right: 100px;
}
.main .values .img .img-2::before {
    content: "";
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -30px;
    left: -30px;
    opacity: 0.1;
}
.main .values .img .img-2::after {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    z-index: 1;
}
.main .values .img .img-2 video {
    position: relative;
    z-index: 1;
}
.main .values .img .img-3 {top: 35%; left: 0;}
.main .values .img .img-4 {top: 51%; right: 0;}
.main .values .img .img-5 {
    width: 400px;
    aspect-ratio: 400 / 500;
    top: 70%;
    left: 100px;
}
.main .values .img .img-5::before {
    content: "";
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 0.1;
}
.main .values .img .img-5::after {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    z-index: 1;
}
.main .values .img .img-5 video {
    position: relative;
    z-index: 1;
}
.main .values .img .img-6 {top: calc(100% - 400px); right: 100px;}
.main .partners {padding-bottom: 0;}
.main .partners .partners-list {margin: 80px 0;}
.main .partners .partners-list li {
    height: 120px;
    max-width: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main .partners .partners-list li img {max-height: 60px;}
.main .partners .partners-list-02 {margin-bottom: 0;}
.main .news .news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.main .news .news-list li {width: calc((100% - 40px)/3);}
.main .news .news-list li a {display: block}
.main .news .news-list li .img {
    aspect-ratio: 560 / 300;
    overflow: hidden;
}
.main .news .news-list li .img span {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: all .2s;
    display: block;
}
.main .news .news-list li:hover .img span {transform: scale(1.1)}
.main .news .news-list li .txt {
    margin-top: 30px;
    padding-right: 20%;
}
.main .news .news-list li .txt .subject {
    font-size: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.main .news .news-list li .txt .date {
    font-size: 16px;
    color: #888;
    margin-top: 18px;
}
.main .with {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: radial-gradient(#1a1a1a, #000);
}
.main .with::after {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
    z-index: 1;
}
.main .with .txt {
    position: relative;
    z-index: 2;
    text-align: center;
}
.main .with .txt strong {
    font-size: 120px;
    font-weight: 800;
    font-style: italic;
}
.main .with .txt .more-btn {
    margin-top: 80px;
    justify-content: center;
}
.main .with .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.main .with .video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media all and (max-width: 1600px) {
    .main .hero .txt .inner {font-size: 100px;}
}
@media all and (max-width: 1024px) {
    .main .values .img > div {opacity: 0.8;}
    .main .values .txt strong {color: #fff;}
    .main .values .img .img-2 {right: 0;}
}
@media all and (max-width: 991px) {
    .main .hero .txt .inner {font-size: 80px;}
    .main .hero .txt p {
        font-size: 20px;
        margin-top: 50px;
    }
    .main .values .txt strong {font-size: 70px;}
    .main .values .img .img-5 {left: 30px;}
    .main .values .img .img-6 {right: 50px;}
    .main .with .txt strong {font-size: 100px;}
}
@media all and (max-width: 767px) {
    .main section {padding: 80px 0;}
    .main .title {margin-bottom: 25px;}
    .main .title h2 {font-size: 24px;}
    .main .hero .txt {
        width: 100%;
        padding: 0 20px;
    }
    .main .hero .txt .inner {
        display: block;
        font-size: 50px;
    }
    .main .hero .txt p {
        font-size: 16px;
        margin-top: 30px;
    }
    .main .hero .scroll span {font-size: 12px;}
    .main .values {padding-bottom: 0;}
    .main .values h2 {
        font-size: 20px;
        margin-bottom: 200px;
    }
    .main .values .txt strong {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .main .values .img > div {width: 65%;}
    .main .values .img .img-1 {left: 16px;}
    .main .values .img .img-2 {
        top: 23%;
        width: 50%;
    }
    .main .values .img .img-2::before {top: -10px; left: -10px;}
    .main .values .img .img-3 {top: 32%;}
    .main .values .img .img-5 {
        width: 50%;
        top: 60%;
    }
    .main .values .img .img-5::before {top: -10px; right: -10px;}
    .main .values .img .img-6 {right: 16px;}
    .main .partners .partners-list {margin: 30px 0;}
    .main .partners .partners-list li {
        height: 60px;
        max-width: 120px;
        padding: 0 20px;
    }
    .main .partners .partners-list li img {max-height: 24px;}
    .main .news .news-list li {width: 100%;}
    .main .news .news-list li .txt {
        margin-top: 15px;
        padding: 0;
    }
    .main .news .news-list li .txt .subject {font-size: 18px;}
    .main .news .news-list li .txt .date {
        font-size: 12px;
        margin-top: 10px;
    }
    .main .with {padding: 0 16px;}
    .main .with .txt strong {
        font-size: 50px;
        margin-bottom: 20px;
        display: block;
    }
    .main .with .txt .more-btn {margin-top: 50px;}
}

/*hanbang*/
.sub-hanbang section {
    position: relative;
    overflow: hidden;
    padding: 200px 0;
}
.sub-hanbang .container {max-width: 1400px;}
.sub-hanbang .title {margin-bottom: 120px;}
.sub-hanbang .title h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 50px;
}
.sub-hanbang .title h3 {
    font-weight: normal;
    font-size: 50px;
}
.sub-hanbang .hero {
    height: 100dvh;
    padding: 150px 0 0;
}
.sub-hanbang .hero::after {
    content: "";
    background: url(/img/assets/hanbang_hero_bg.svg) center / cover no-repeat;
    width: 100%;
    aspect-ratio: 1920 / 565;
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    opacity: 0.4;
}
.sub-hanbang .hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sub-hanbang .hero .txt {
    width: 46%;
    padding-right: 50px;
}
.sub-hanbang .hero .txt p {
    font-size: 24px;
    color: #aaa;
    font-weight: bold;
}
.sub-hanbang .hero .txt h2 {
    font-size: 80px;
    font-weight: 800;
    margin: 10px 0 20px;
}
.sub-hanbang .hero .txt .btn-wrap {
    display: flex;
    gap: 20px;
    margin-top: 100px;
}
.sub-hanbang .hero .txt .btn-wrap p {
    font-size: 16px;
    font-weight: bold;
    color: #aaa;
    margin-bottom: 15px;
}
.sub-hanbang .hero .txt strong {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
}
.sub-hanbang .hero .img {width: 54%;}
.sub-hanbang .hero .img img {
    max-width: none;
    width: 100%;
}
.sub-hanbang .hero .img .top {
    display: flex;
    align-items: end;
    gap: 10px;
}
.sub-hanbang .hero .img .top > div {flex: 1;}
.sub-hanbang .hero .img .bottom {margin-top: 10px;}
.sub-hanbang .video {background: url(/img/assets/hanbang_video_bg.jpg) center / cover no-repeat}
.sub-hanbang .video .container {max-width: 1000px;}
.sub-hanbang .video .txt {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    color: #fff;
}
.sub-hanbang .video .txt .title {
    margin: 0;
    width: 58%;
    padding-right: 50px;
}
.sub-hanbang .video .txt ul {
    width: 42%;
    margin-top: 72px;
}
.sub-hanbang .video .txt ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}
.sub-hanbang .video .txt ul li:last-child {margin-bottom: 0;}
.sub-hanbang .video .txt ul li .circle {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-hanbang .video .txt ul li .desc {
    width: calc(100% - 30px);
    padding-left: 12px;
}
.sub-hanbang .product .title {text-align: center;}
.sub-hanbang .product ul li {
    margin-bottom: 120px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-hanbang .product ul li:last-child {margin-bottom: 0;}
.sub-hanbang .product ul li .img {width: 57%;}
.sub-hanbang .product ul li .txt {
    width: 43%;
    padding-left: 80px;
    margin-top: -60px;
}
.sub-hanbang .product ul li .txt h4 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}
.sub-hanbang .product ul li .txt p {font-size: 20px;}
.sub-hanbang .product ul li:nth-child(2) .img {order: 2;}
.sub-hanbang .product ul li:nth-child(2) .txt {
    order: 1;
    padding-left: 0;
    padding-right: 50px;
    margin: 0;
}
.sub-hanbang .product .review {
    margin-top: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-hanbang .product .review .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-hanbang .product .review .title .circle {
    width: 300px;
    aspect-ratio: 1 / 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    position: relative;
}
.sub-hanbang .product .review .title .circle h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}
.sub-hanbang .product .review .title .line {
    background: #000;
    width: 150px;
    height: 1px;
    margin: 0 50px;
}
.sub-hanbang .product .review .content {
    width: calc(100% - 550px);
    aspect-ratio: 850 / 520;
    position: relative;
    display: flex;
    align-items: center;
}
.sub-hanbang .product .review .content > div {
    position: absolute;
    background: #ddd;
    border-radius: 20px;
    padding: 30px 35px;
    min-width: 320px;
}
.sub-hanbang .product .review .content > div::after {
    content: "";
    background: url(/img/assets/buuble_tail_gray.svg) center / cover no-repeat;
    display: block;
    height: 27px;
    aspect-ratio: 36 / 27;
    position: absolute;
    bottom: -27px;
    right: 60px;
}
.sub-hanbang .product .review .content p {
    font-size: 20px;
    font-weight: bold;
    color: #888;
}
.sub-hanbang .product .review .content p span {color: #000;}
.sub-hanbang .product .review .content .name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.sub-hanbang .product .review .content .name .circle {
    width: 30px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
}
.sub-hanbang .product .review .content .name span {
    font-size: 14px;
    color: #444;
}
.sub-hanbang .product .review .content .review-01 {top: 0; left: 22%;}
.sub-hanbang .product .review .content .review-02 {background: #eee; top: 28%; left: 0;}
.sub-hanbang .product .review .content .review-03 {background: #eee; top: 26%; right: 0;}
.sub-hanbang .product .review .content .review-02::after,
.sub-hanbang .product .review .content .review-03::after {background-image: url(/img/assets/buuble_tail_lightgray.svg)}
.sub-hanbang .product .review .content .review-04 {top: 65%; left: 8%;}
.sub-hanbang .product .review .content .review-05 {background: #f8f8f8; top: 56%; left: 43%;}
.sub-hanbang .product .review .content .review-05::after {background-image: url(/img/assets/buuble_tail_lightgray2.svg)}
.sub-hanbang .project {background: #000;}
.sub-hanbang .project .title {
    text-align: center;
    color: #fff;
}
.sub-hanbang .project-slider {
    overflow: visible;
    position: relative;
}
.sub-hanbang .project-slider .swiper-wrapper {
    padding: 30px 0;
    align-items: center;
    transform-style: preserve-3d;
}
.sub-hanbang .project-slider .swiper-slide {
    width: 380px;
    aspect-ratio: 380 / 676;
    overflow: hidden;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.sub-hanbang .project-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-hanbang .guide {
    background: #000;
    padding-top: 100px;
    color: #fff;
}
.sub-hanbang .guide .title {margin-bottom: 0;}
.sub-hanbang .guide .title h2 {font-size: 36px;}
.sub-hanbang .guide .top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sub-hanbang .guide .top li {flex: 1;}
.sub-hanbang .guide .top li h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #666;
}
.sub-hanbang .guide .bottom {
    background: #111;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}
.sub-hanbang .guide .bottom li {
    width: 50%;
    padding: 0 50px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.sub-hanbang .guide .bottom li:last-child {border-right: none;}
.sub-hanbang .guide .bottom li p {
    font-size: 24px;
    font-weight: bold;
    color: #666;
}
.sub-hanbang .guide .bottom li p span {color: #fff;}
.sub-hanbang .guide .bottom li .download-btn {
    border: none;
    height: 55px;
    min-width: 200px;
}
@media all and (max-width: 1720px) {
    .sub-hanbang .container {padding: 0;}
    .sub-hanbang .product .review .content > div {min-width: auto;}
}
@media all and (max-width: 1400px) {
    .sub-hanbang .container {padding: 0 80px;}
    .sub-hanbang .video .container {padding: 0;}
    .sub-hanbang .product .review .title .line {width: 100px;}
    .sub-hanbang .product .review .content {width: calc(100% - 500px)}
    .sub-hanbang .product .review .content p {font-size: 18px;}
}
@media all and (max-width: 1200px) {
    .sub-hanbang .hero {
        padding: 85px 0 0;
        display: flex;
        align-items: center;
    }
    .sub-hanbang .hero .txt p {font-size: 20px;}
    .sub-hanbang .hero .txt h2 {font-size: 60px;}
    .sub-hanbang .hero .txt .btn-wrap {margin-top: 70px;}
    .sub-hanbang .product .review .title {
        justify-content: center;
        width: 100%;
        margin-bottom: 50px;
    }
    .sub-hanbang .product .review .title .circle {width: 260px;}
    .sub-hanbang .product .review .title .line {display: none;}
    .sub-hanbang .product .review .content {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .sub-hanbang .guide .bottom li {
        display: block;
        text-align: center;
    }
    .sub-hanbang .guide .bottom li .download-btn {
        margin: 20px auto 0;
    }
}
@media all and (max-width: 1024px) {
    .sub-hanbang .container,
    .sub-hanbang .video .container {padding: 0 32px;}
    .sub-hanbang .hero {
        height: auto;
        padding: 180px 0 80px;
    }
    .sub-hanbang .hero .txt {
        width: 100%;
        padding: 0 0 40px;
        text-align: center;
    }
    .sub-hanbang .hero .txt .btn-wrap {
        justify-content: center;
        margin-top: 40px;
    }
    .sub-hanbang .hero .img {width: 100%;}
}
@media all and (max-width: 991px) {
    .sub-hanbang .video .txt .title {width: 40%;}
    .sub-hanbang .video .txt ul {
        width: 60%;
        margin-top: 15px;
    }
    .sub-hanbang .guide .bottom li p {font-size: 20px;}
}
@media all and (max-width: 767px) {
    .sub-hanbang section {padding: 80px 0;}
    .sub-hanbang .container,
    .sub-hanbang .video .container {padding: 0 16px;}
    .sub-hanbang .title {margin-bottom: 40px;}
    .sub-hanbang .title h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .sub-hanbang .hero {padding-top: 100px;}
    .sub-hanbang .hero .txt p {font-size: 16px;}
    .sub-hanbang .hero .txt h2 {
        font-size: 36px;
        margin: 5px 0 15px;
    }
    .sub-hanbang .hero .txt .btn-wrap {
        margin-top: 30px;
        gap: 10px;
    }
    .sub-hanbang .hero .txt .btn-wrap p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .sub-hanbang .hero .txt strong {
        font-size: 16px;
        margin-top: 25px;
    }
    .sub-hanbang .video .txt {margin-top: 40px;}
    .sub-hanbang .video .txt .title {
        width: 100%;
        padding: 0;
    }
    .sub-hanbang .title h3 {
        font-size: 24px;
        text-align: center;
    }
    .sub-hanbang .video .txt ul {
        width: 100%;
        margin-top: 30px;
    }
    .sub-hanbang .video .txt ul li {margin-bottom: 15px;}
    .sub-hanbang .product ul li {margin-bottom: 60px;}
    .sub-hanbang .product ul li .img {
        width: 100%;
        order: 1 !important;
    }
    .sub-hanbang .product ul li .txt {
        order: 2 !important;
        width: 100%;
        padding: 20px 0 0 !important;
        margin: 0 !important;
        text-align: center;
    }
    .sub-hanbang .product ul li .txt h4 {
        font-size: 21px;
        margin-bottom: 12px;
    }
    .sub-hanbang .product ul li .txt p {font-size: 16px;}
    .sub-hanbang .product .review {margin-top: 80px;}
    .sub-hanbang .product .review .title {margin-bottom: 20px;}
    .sub-hanbang .product .review .title .circle {width: 200px;}
    .sub-hanbang .product .review .title .circle h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .sub-hanbang .product .review .content {display: block;}
    .sub-hanbang .product .review .content > div {
        padding: 15px 20px;
        border-radius: 10px;
        position: relative;
        top: auto !important;
        left: auto !important;
        max-width: 300px;
        margin: 0 auto 12px;
    }
    .sub-hanbang .product .review .content > div::after {
        height: 20px;
        bottom: -20px;
    }
    .sub-hanbang .product .review .content p {font-size: 15px;}
    .sub-hanbang .product .review .content .name {
        gap: 6px;
        margin-top: 12px;
    }
    .sub-hanbang .product .review .content .name .circle {width: 24px;}
    .sub-hanbang .product .review .content .name span {font-size: 12px;}
    .sub-hanbang .project-slider .swiper-slide {width: 200px;}
    .sub-hanbang .guide {padding-top: 0;}
    .sub-hanbang .guide .title h2 {font-size: 24px;}
    .sub-hanbang .guide .top {gap: 15px 10px;}
    .sub-hanbang .guide .top li {
        flex: auto;
        width: calc((100% - 10px)/2);
    }
    .sub-hanbang .guide .top li h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .sub-hanbang .guide .bottom {
        margin-top: 10px;
        padding: 0 20px;
    }
    .sub-hanbang .guide .bottom li {
        width: 100%;
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    .sub-hanbang .guide .bottom li:last-child {border-bottom: none;}
    .sub-hanbang .guide .bottom li p {font-size: 16px;}
    .sub-hanbang .guide .bottom li .download-btn {
        margin-top: 10px;
        height: 40px;
    }
}

/*with us*/
.sub-withUs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sub-withUs::before {
    content: "";
    background: url(/img/assets/symbol.svg) center / cover no-repeat;
    display: block;
    width: 44%;
    aspect-ratio: 850 / 600;
    opacity: 0.02;
    position: fixed;
    left: -200px;
    bottom: -130px;
}
.sub-withUs .process {
    width: 36%;
    position: relative;
    z-index: 1;
    max-height: 300px;
}
.sub-withUs .process ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    position: relative;
}
.sub-withUs .process ul::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    opacity: 0.1;
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
}
.sub-withUs .process ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
}
.sub-withUs .process ul li .circle {
    width: 31px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.sub-withUs .process ul li .circle span {
    width: 7px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background: #000;
}
.sub-withUs .process ul li p {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.sub-withUs .process ul li.active,
.sub-withUs .process ul li.confirm {opacity: 1;}
.sub-withUs .process ul li.active .circle {
    background: rgba(0,0,0,0.05);
    animation: blink 1s ease-in-out 0s infinite alternate;}
@keyframes blink {
    0% {background: rgba(0,0,0,0.1);}
    100% {background: rgba(0,0,0,0.03);}
}
.sub-withUs .process ul li.confirm .circle {background: none;}
.sub-withUs .content {
    width: 64%;
    position: relative;
    z-index: 1;
}
.sub-withUs .select-wrap {margin-left: auto;}
.sub-withUs a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sub-withUs a:first-child {border-top: 1px solid rgba(0,0,0,0.2)}
.sub-withUs b {
    font-size: 60px;
    opacity: 0.2;
    transition: all .2s;
}
.sub-withUs .more-btn {
    opacity: 0;
    transition: all .2s;
}
.sub-withUs a:hover b,
.sub-withUs a:hover .more-btn {opacity: 1;}
.sub-withUs .content h3 {
    font-size: 36px;
    margin-bottom: 80px;
}
.sub-withUs .form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    font-size: 18px;
}
.sub-withUs .half-group {
    width: calc((100% - 30px)/2);
    margin-right: 30px;
}
.sub-withUs .half-group:last-child {margin-right: 0;}
.sub-withUs .form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    width: 100%;
}
.sub-withUs .form-input {
    border: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    width: 100%;
}
.sub-withUs .form-input::placeholder {color: rgba(0,0,0,0.3)}
.sub-withUs .form-input:focus {
    outline: none !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    box-shadow: none !important;
}
.sub-withUs textarea.form-input {
    border: 1px solid #ddd;
    height: 188px;
    padding: 20px;
    resize: none !important;
}
.sub-withUs textarea.form-input:focus {border: 1px solid #ddd !important;}
.sub-withUs .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sub-withUs .radio-group label {
    width: calc((100% - 20px)/3);
    border: 1px solid #ddd;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}
.sub-withUs .radio-group input {display: none;}
.sub-withUs .radio-group span {
    font-size: 18px;
    opacity: 0.6;
    transition: all .2s;
}
.sub-withUs .radio-group label:has(input:checked) {border: 1px solid #000;}
.sub-withUs .radio-group label:hover span,
.sub-withUs .radio-group label:has(input:checked) span {
    font-weight: bold;
    opacity: 1;
}
.sub-withUs .file-wrap {
    position: relative;
    width: 100%;
}
.sub-withUs .file-wrap .form-input {
    border: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    padding-right: 120px;
}
.sub-withUs .file-btn {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #fff;
    border: 1px solid #000;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}
.sub-withUs .file-group input[type=text] {
    padding: 15px 0;
    padding-right: 100px;
}
.sub-withUs .slider-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.sub-withUs .slider-controls button {
    border: 1px solid #ddd;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
}
.sub-withUs .slider-controls .prev-btn {color: rgba(0,0,0,0.5)}
.sub-withUs .slider-controls .prev-btn .arrow {
    transform: rotate(90deg);
    opacity: 0.5;
}
.sub-withUs .slider-controls .prev-btn .arrow .color {stroke: #000;}
.sub-withUs .slider-controls .next-btn {
    background: #000;
    color: #fff;
}
.sub-withUs .slider-controls .next-btn svg {transform: rotate(-90deg)}

@media all and (max-width: 1200px) {
    .sub-withUs .process {width: 250px;}
    .sub-withUs .content {width: calc(100% - 250px)}
}
@media all and (max-width: 1024px) {
    .sub-withUs b {font-size: 42px;}
    .sub-withUs .content h3 {
        font-size: 30px;
        margin-bottom: 50px;
    }
}
@media all and (max-width: 991px) {
    .sub-withUs .process {
        width: 100%;
        max-height: none;
        margin-bottom: 50px;
    }
    .sub-withUs .process ul {
        display: flex;
        gap: 10px;
        align-items: start;
        flex-direction: row;
    }
    .sub-withUs .process ul::after {
        width: 100%;
        height: 1px;
        left: 0;
    }
    .sub-withUs .process ul li {
        display: block;
        text-align: center;
        flex: 1;
    }
    .sub-withUs .process ul li .circle {
        width: 23px;
        margin: -11px auto 5px;
    }
    .sub-withUs .process ul li .circle span {width: 5px;}
    .sub-withUs .process ul li p {font-size: 12px;}
    .sub-withUs .content {width: 100%;}
}
@media all and (max-width: 767px) {

    .sub-withUs .content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .sub-withUs .form-group {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .sub-withUs .half-group {
        width: 100%;
        margin: 0 0 20px;
    }
    .sub-withUs .half-group:last-child {margin-bottom: 0;}
    .sub-withUs .form-label {margin-bottom: 10px;}
    .sub-withUs .radio-group label {
        width: calc((100% - 10px)/2);
        height: 60px;
    }
    .sub-withUs .radio-group span {font-size: 15px;}
    .sub-withUs textarea.form-input {padding: 12px;}
    .sub-withUs .file-btn {
        padding: 4px 12px;
        font-size: 12px;
    }
    .sub-withUs .file-group input[type=text] {padding-right: 80px;}
    .sub-withUs .slider-controls {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 10;
        background: #000;
        gap: 0;
        justify-content: space-around;
    }
    .sub-withUs .slider-controls > button {
        width: 50%;
        border: none !important;
    }
    .sub-withUs .slider-controls .prev-btn {background: #eee;}
    .sub-withUs .select-wrap {margin-top: 20%;}
    .sub-withUs a {padding: 20px 0;}
    .sub-withUs b {font-size: 24px;}
    .sub-withUs a b,
    .sub-withUs a .more-btn {opacity: 1;}
}