/* BASIC css start */
#contentWrapper {
    padding: 0;
    background: transparent;
}

#contentWrap {
    max-width: 100%;
}

#section01 {
    position: relative;
    padding: 38px 0;
    background: #000000;
}

#section01 .swiper-container {
    width: 500px;
    height: 500px;
    position: relative;
    overflow: visible;
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
}

#section01 .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
    background: transparent;
    /*pointer-events: none;*/
}

#section01 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#section01 .swiper-pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0;
    pointer-events: none;
}

#section01 .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #FFFFFF !important;
    border: 0 !important;
    border-radius: 50%;
    position: absolute;
    pointer-events: all;
    cursor: pointer;
    opacity: 1;
    margin: 0 !important;
    transition: all .2s ease-in-out;
}

#section01 .swiper-pagination-bullet:hover {
    width: 20px;
    height: 20px;
    border: 5px solid #ffffff;
}

#section01 .swiper-pagination-bullet-active {
    animation: bullet-bounce 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 15px;
    height: 15px;
    border: 0 solid #ffffff;
}

@keyframes bullet-bounce {
    0% {
        width: 15px;
        height: 15px;
        border-width: 0;
    }
    40% {
        width: 24px;
        height: 24px;
        border-width: 7px;
    }
    70% {
        width: 16px;
        height: 16px;
        border-width: 4px;
    }
    100% {
        width: 20px;
        height: 20px;
        border-width: 5px;
    }
}

#section01 .progress-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#section01 .autoplay-progress {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: -1;
}

#section01 .autoplay-progress svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    fill: none;
    transform: rotate(-90deg);
    overflow: visible;
}

#section01 .autoplay-progress .progress-path {
    stroke-width: 4px;
    stroke: #ffffff;
    fill: none;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 0.1s linear;
}

#section01 .progress-bg {
    stroke: #5A5858;
    stroke-width: 2px;
    fill: none;
}

#section01 .swiper-slide .text-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    text-align: center;
    word-break: keep-all;
}

#section01 .swiper-slide .text-wrap > span {
    display: block;
    margin-bottom: 16px;
    color: #FFF;
    font-family: "HvDTrial Brandon Grotesque";
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    --t-delay: 0.1s
}

#section01 .swiper-slide .text-wrap > strong {
    display: block;
    margin-bottom: 24px;
    color: #FFF;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    --t-delay: 0.15s
}

#section01 .swiper-slide .text-wrap > a {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-family: "HvDTrial Brandon Grotesque";
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    --t-delay: 0.2s;
}

#section01 .swiper-slide .text-wrap > span,
#section01 .swiper-slide .text-wrap > strong,
#section01 .swiper-slide .text-wrap > a {
    opacity: 0;
    transform: translateY(20px);
    transition: all .75s var(--t-delay,0s) ease-in
}

#section01 .swiper-slide-active .text-wrap > span,
#section01 .swiper-slide-active .text-wrap > strong,
#section01 .swiper-slide-active .text-wrap > a {
    transform: translateY(0);
    opacity: 1;
}


#section01 .swiper-slide .list-wrap p {
    margin: 0;
}

#section01 .swiper-pagination-vertical.swiper-pagination-bullets,
#section01 .swiper-vertical > .swiper-pagination-bullets {
    left: 0;
    transform: none;
}

#section01 > .bg-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#section01 > .bg-wrap .bg-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#section01 > .bg-wrap .bg-slide > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0s;
    transform: translateY(-100%);
    z-index: 0;
}

#section01 > .bg-wrap .bg-slide > img.prev {
    transform: translateY(0);
    transition: all 0s;
    z-index: 1;
}

#section01 > .bg-wrap .bg-slide > img.active {
    transform: translateY(0);
    animation: moveSlide 1.5s cubic-bezier(.16,1,.3,1) forwards;
    z-index: 2;
}

@keyframes moveSlide {
    0% {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.section {
    position: relative;
}

.section .bg-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.section .mo-img {
    display: none;
}

.section .contents-wrap {
    position: absolute;
    left: calc(50% + 88px);
    top: 50%;
    transform: translateY(-50%);
    max-width: 512px;
    word-break: keep-all;
}

.section .contents-wrap .title {
    margin-bottom: 20px;
    color: #FFF;
    font-size: 54px;
    font-weight: 500;
    line-height: 60px;
}

.section .contents-wrap .text {
    margin-bottom: 40px;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.section .contents-wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: 48px;
    border-radius: 4px;
    background: #FFF;
    color: #211D1D;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    transition: all .5s;
}

.section .contents-wrap .btn:hover {
    background: #FB663A;
    color: #FFF;
}


.sign-wrap {
    background: #212529;
    color: #FFFFFF;
    padding: 40px 16px;
    box-sizing: border-box;
}

.sign-wrap .contents-wrap {
    margin: 0 auto;
    max-width: 1200px;
}

.sign-wrap .contents-wrap > p {
    margin-bottom: 8px;
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
}

.sign-wrap .inner-box {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}

.sign-wrap .inner-box .left {
    width: 100%;
}

.sign-wrap .inner-box .left > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sign-wrap .inner-box .left > ul > li {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.sign-wrap .inner-box .left > ul > li:before {
    content: '';
    min-width: 26px;
    width: 26px;
    height: 26px;
    background: url('/design/hangso1/mallskin/pc/images/icon_main_check.png') no-repeat center;
}

.sign-wrap .inner-box .btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    border-radius: 4px;
    background: #FB663A;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.section-slider-wrap {
    padding: 48px 0 32px;
    box-sizing: border-box;
    overflow: hidden;
}

.section-slider-wrap > .wide-wrap > .item.left {
    width: 33%;
    display: flex;
    justify-content: flex-end;
}

.section-slider-wrap .swiper-container {
    width: 67%;
}

.section-slider-wrap > .wide-wrap > .item.left .inner-box {
    width: 375px;
    padding-left: 16px;
    box-sizing: border-box;
}

.section-slider-wrap > .wide-wrap > .item.left .title {
    color: #211D1D;
    font-size: 54px;
    font-weight: 500;
    line-height: 60px;
    word-break: keep-all;
    margin-bottom: 24px;
}

.section-slider-wrap > .wide-wrap > .item.left .btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #211D1D;
    color: #211D1D;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    transition: all .5s;
}

.section-slider-wrap > .wide-wrap > .item.left .btn-link:hover {
    background:  #FB663A;
    color: #FFF;
    border: 1px solid #FB663A;
}

.section-slider-wrap .swiper-container .swiper {
    margin-bottom: 0;
}

.section-slider-wrap > .wide-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-slider-wrap .swiper-container .swiper-slide {
    padding: 0 8px;
}

.section-slider-wrap .swiper-container .swiper-button-next {
    right: 24px;
    top: 50%;
}

@media (max-width: 940px) {
    .section .contents-wrap {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 100%;
        text-align: center;
    }

    .section .contents-wrap .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #section01 {
        height: 544px;
    }

    #section01 .swiper-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .section .contents-wrap {
        width: 100%;
        top: auto;
        transform: translateX(-50%);
        bottom: 80px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .section .contents-wrap .title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .section .contents-wrap .text {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .section .contents-wrap .btn {

    }

    .section .bg-img {
        display: none;
    }

    .section .mo-img {
        display: block;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .sign-wrap {
        padding: 32px 16px;
    }

    .sign-wrap .contents-wrap > p {
        margin-bottom: 12px;
    }

    .sign-wrap .inner-box {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .sign-wrap .inner-box .left > ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 60px;
    }

    .section-slider-wrap > .wide-wrap > .item.left .title {
        width: auto;
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 542px) {
    #section01 .swiper-container {
        transform: translate(-50%, -50%) scale(0.8);
    }

    #section01 .swiper-slide .text-wrap {
        transform: translate(-50%, -50%) scale(1.2);
    }

    #section01 .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
    }

    #section01 .swiper-pagination-bullet-active {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 440px) {
    #section01 .swiper-container {
        transform: translate(-50%, -50%) scale(0.7);
    }

    #section01 .swiper-slide .text-wrap {
        transform: translate(-50%, -50%) scale(1.3);
    }

    #section01 .swiper-slide .text-wrap > span {
        margin-bottom: 0;
    }

    #section01 .swiper-slide .text-wrap > strong {
        margin-bottom: 16px;
    }

    .sign-wrap {
        padding: 32px 27px;
    }

    .sign-wrap .inner-box .left > ul {
        padding: 0;
    }

    .section-slider-wrap > .wide-wrap {
        flex-direction: column;
        gap: 0;
    }

    .section-slider-wrap > .wide-wrap > .item.left {
        width: 100%;
        margin-bottom: 32px;
    }

    .section-slider-wrap .swiper-container {
        width: 100%;
        margin-left: 16px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .section-slider-wrap > .wide-wrap > .item.left .inner-box {
        text-align: center;
    }

    .section-slider-wrap > .wide-wrap > .item.left .btn-link {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .section-slider-wrap > .wide-wrap > .item.left .title {
        margin-bottom: 16px;
    }

}

@media (max-width: 375px) {
    #section01 .swiper-container {
        transform: translate(-50%, -50%) scale(0.6);
    }

    #section01 .swiper-slide .text-wrap {
        transform: translate(-50%, -50%) scale(1.4);
    }

    .section .contents-wrap .text {
        font-size: 16px;
        line-height: 24px;
    }

    .sign-wrap .contents-wrap > p {
        font-size: 18px;
        line-height: 26px;
    }

    .sign-wrap .inner-box .left > ul > li {
        font-size: 14px;
        line-height: 18px;
    }


}











/* BASIC css end */

