/*common*/
.e-on .text-fade-in span {
    display: inline-block;
    opacity: 0;
    animation: fadeInChar 1s forwards;
}

@keyframes fadeInChar {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.circular {
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

.circular img {
    animation: rotation 8s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-01,
.section-02,
.section-03,
.section-04,
.section-05 {
    overflow: hidden;
}
/*common//*/

/* 내부 스크롤 컨테이너 */
.scroll-container {
    overflow-y: auto;
    overscroll-behavior: contain;
    /* 이벤트 버블링 방지 */
    max-height: 400px;
    /* 예시 */
}

/*main-visual*/
/*main-visual-swiper*/

#main-visual .swiper {
    width: 100%;
    height: var(--full-height);
    background-color: black;
    position: relative;
    overflow: hidden;
}

#main-visual .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

#main-visual .swiper-slide.swiper-slide-active {
    opacity: 1;
}

/*main-visual img*/
#main-visual .swiper-slide .main-visual-img {
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center;
    transform: scale(1.2, 1.2);
    transition: all 0.4s ease;
}

#main-visual .swiper-slide.swiper-slide-active .main-visual-img {
    animation: image-zoom-out 8s 0s forwards;
}

@keyframes image-zoom-out {
    0% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1.01, 1.01);
    }
}

#main-visual .swiper-slide.slide-01 .main-visual-img {
    background-image: url("../img/main-visual-01.webp");
}
#main-visual .swiper-slide.slide-02 .main-visual-img {
    background-image: url("../img/main-visual-02.webp");
}
#main-visual .swiper-slide.slide-03 .main-visual-img {
    background-image: url("../img/main-visual-03.webp");
}
/*main-visual img//*/

/*main-visual txt*/
#main-visual .swiper-slide .main-visual-txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#main-visual .swiper-slide .main-visual-txt .content {
    display: flex;
    align-items: center;
    height: 100%;
}

#main-visual .swiper-slide .main-visual-txt .content .txt-box {
    position: relative;
}

#main-visual .swiper-slide .main-visual-txt .content .txt-box .circular {
    left: 0;
    top: 0;
    transform: translate(-40%, -40%);
}

#main-visual .swiper-slide .main-visual-txt .content .tit {
    font-family: "Wanted";
    color: #fff;
    font-size: 8rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    /* letter-spacing: -1.5px; */
    line-height: 1.2;
}

#main-visual .swiper-slide .main-visual-txt .content .tit span {
    opacity: 0;
    animation: fadeInChar 4s forwards;
}

#main-visual .swiper-slide .main-visual-txt .content .tit em {
    margin-left: 5rem;
    display: block;
}

#main-visual .swiper-slide .main-visual-txt .content .txt {
    margin-left: 5rem;
    font-size: 2rem;
    color: #ffffffd2;

}

/* #main-visual .swiper-slide.swiper-slide-active .main-visual-txt .content .tit {
    animation: txt-blur 0.8s 0s cubic-bezier(1, 0, 1, 1) forwards;
    opacity: 0;
}

@keyframes txt-blur {
    0% {
        filter: blur(6px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
} */

#main-visual .swiper .option {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#main-visual .swiper .option > div {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#main-visual .swiper .option > div .f-box {
    display: flex;
}

#main-visual .swiper .option > div .swiper-parts {
    display: flex;
    flex-direction: row;
    margin-top: 34rem;
    margin-left: 5rem;
    gap: 2rem;
    align-items: center;
    transition: all 0.4s ease;
}

#main-visual .swiper .option > div .swiper-parts .swiper-btn {
    width: 6rem;
    position: relative;
    height: 1.6rem;
}

#main-visual .swiper .option > div .swiper-parts .swiper-pagination {
    position: relative;
    margin-left: 1rem;
}

/* #main-visual .swiper-button-next,
#main-visual.swiper-container-rtl .swiper-button-next {
    background-image: url("../img/swiper-next-btn.svg");
    right: 0;
    left: auto;
}

#main-visual .swiper-button-prev,
#main-visual.swiper-container-rtl .swiper-button-prev {
    background-image: url("../img/swiper-prev-btn.svg");
    left: 0;
    right: auto;
}

#main-visual .swiper-button-next,
#main-visual .swiper-button-prev {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
} */

#main-visual .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #ffffff;
    opacity: 0.6;
}

#main-visual .swiper-pagination.swiper-pagination-bullets {
    display: flex;
    gap: 2rem;
}

#main-visual .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--grd-color-re);
    position: relative;
    width: 28px;
    border-radius: 16px;
}

#main-visual .swiper-pagination-bullet-active::before {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 100%;
    /* border: 1px solid var(--main-color); */

}
/*main-visual txt//*/
/*main-visual-swiper//*/
/*main-visual//*/

/*main-about*/
#main-about .con-box {
    height: 90vh;
    min-height: 80rem;
    display: flex;
}

#main-about .con-box > div {
    width: 50%;
}

#main-about .con-box .img-wrap {
    position: relative;
}

#main-about .con-box .img-box {
    background-image: url("../img/main-company-img.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#main-about .img-mask {
    --mask-position: 100%;
    /* 처음엔 전부 덮음 */

    width: 100%;
    height: 100%;

    /* 왼쪽에서 오른쪽으로 사라지는 마스크 */
    mask-image: linear-gradient(to left, black var(--mask-position), transparent var(--mask-position));
    -webkit-mask-image: linear-gradient(to left, black var(--mask-position), transparent var(--mask-position));

    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#main-about .con-box .info-wrap {
    align-items: center;
    padding: 12rem;
}

#main-about .con-box .info-wrap .sub-tit {
    margin: 1rem 0 2rem;
    font-size: 2.4rem;
}

#main-about .con-box .info-wrap .txt {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2;
    color: #4d4d4d;
    width: 90%;
    margin-bottom: 4rem;
}

#main-about .btn-box:hover a .btn-txt,
#main-about .btn-box:hover a span {
    color: #ffffff;
}

#main-about .con-box .btn-box .txt {
    margin: 0;
}

#main-about .con-box .info-wrap .text-box .title-box {
    position: relative;
    display: inline-block;
}

#main-about .con-box .info-wrap .circular {
    right: 0;
    top: 0;
    opacity: 0.1;
    transform: translate(40%, -40%);
}
/*main-about//*/

/*main-product*/
#main-product .pd-wrap {
    padding: 16rem 0 28rem;
    position: relative;
    background-image: url("../img/pd-bg.jpg");
    background-size: cover;
    overflow: hidden;
}

#main-product .pd-wrap .title-box {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}

#main-product .main-pd-list {
    max-width: 188rem;
    margin: auto;
    position: relative;
}

#main-product .swiper-slide .tit {
    font-family: "Wanted";
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    height: 6.8rem;
}

#main-product .swiper-slide .pd-info .t-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

#main-product .swiper-slide .pd-info .t-box > .txt {
    font-family: "Wanted";
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    color: #ffffff;
    padding: 0.4rem 1.4rem;
    background: var(--grd-color);
    border-radius: 10rem;
    display: inline-block;
    margin: auto;
}

#main-product .swiper-slide {
    background: #fff;
    overflow: hidden;
    transition: all 0.8s ease;
}

#main-product .swiper-slide:hover {
    border-radius: 60rem;
}

#main-product .swiper-slide:hover .pd-hover-con {
    opacity: 0.8;
    visibility: visible;
}

#main-product .swiper-slide a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 8rem 2rem 5rem;
}
/* 
#main-product .swiper-slide a::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E60012;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

#main-product .swiper-slide:hover a::before {
    opacity: 0.8;
    visibility: visible;
} */

#main-product .swiper-slide a .pd-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 1rem; */
    overflow: hidden;
}

#main-product .swiper-slide a .pd-info .img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 26rem;
    margin-top: 1rem;
    overflow: hidden;
}

#main-product .swiper-slide .main-pd {
    display: block;
    padding: 1rem;
    object-fit: cover;
    max-height: 26rem;
}

#main-product .swiper-slide:hover .image img {
    transform: rotate(180deg);
}

#main-product .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

#main-product .swiper-btn .next-prev {
    width: 19rem;
    /* height: 7.8rem; */
    position: relative;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
}

#main-product .swiper-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20%;
    z-index: 1;
}

#main-product .swiper-btn .next-prev .swiper-button-next,
#main-product .swiper-btn .next-prev .swiper-button-prev {
    width: 7.8rem;
    height: 7.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 100%;
    background-image: url("../img/arrow.svg");
    background-size: 1.6rem;
}

#main-product .swiper-btn .next-prev .swiper-button-next {
    transform: rotate(180deg);
}

#main-product .swiper-pagination {
    position: relative;
    margin-bottom: 4rem;
}

/* #main-product .swiper-container-horizontal > .swiper-pagination-progressbar,
#main-product .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
} */

#main-product .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #161616;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

#main-product .big-logo-wrap {
    position: absolute;
    right: -100%;
    bottom: -0.4rem;
    transition: all 1s ease;
}

#main-product .big-logo-wrap.e-on {
    right: 0;
}
/*main-product//*/

/*main-partner*/
#main-partner .con-box {
    padding: 18rem 0;
    background: linear-gradient(#fff, #f9f9f9);
}

#main-partner .title-box {
    margin-bottom: 5rem;
}

#main-partner .map-info-wrap {
    gap: 4rem;
}

#main-partner .map-info-wrap .info-box {
    width: 17%;
    margin-top: 5rem;
}

#main-partner .map-info-wrap .info-box .info {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 4.4rem;
}

#main-partner .map-info-wrap .info-box .info .tit {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
    color: #3C3C3C;
}

#main-partner .map-info-wrap .info-box .info .num-text {
    gap: 0.2rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

#main-partner .map-info-wrap .info-box .info .num {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    /* color: var(--main-color); */
}

#main-partner .map-info-wrap .info-box .info .txt {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4d4d4d;
}

#main-partner .map-info-wrap .map-box {
    width: 83%;
}

#main-partner .map-info-wrap .map-box {
    position: relative;
}

#main-partner .map-info-wrap .map-box .map-img img {
    width: 100%;
}

#main-partner .map-info-wrap .map-box .p-dot {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#main-partner .map-info-wrap .map-box .p-dot .item {
    position: absolute;
}

#main-partner .map-info-wrap .map-box .p-dot .item.item-01 {
    left: 8%;
    top: 28%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-02 {
    left: 11%;
    top: 23%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-03 {
    left: 12%;
    top: 59%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-04 {
    left: 14%;
    top: 30%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-05 {
    left: 20%;
    top: 45%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-06 {
    left: 31%;
    top: 45%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-07 {
    left: 34%;
    top: 57%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-08 {
    left: 37%;
    top: 56%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-09 {
    left: 40%;
    top: 68%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-10 {
    left: 43%;
    top: 38%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-11 {
    left: 46%;
    top: 73%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-12 {
    left: 67%;
    top: 25%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-13 {
    left: 76%;
    top: 38%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-14 {
    left: 84%;
    top: 55%;
}
#main-partner .map-info-wrap .map-box .p-dot .item.item-15 {
    left: 88%;
    top: 70%;
}

#main-partner .map-info-wrap .map-box .p-dot .d-img {
    width: auto;
}

#main-partner .map-info-wrap .map-box .p-dot .site {
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 1rem;
    height: 0.4rem;
    border-radius: 100%;
    background-color: #31313140;
}

#main-partner .map-info-wrap .map-box .p-dot .top-safe {
    left: 41%;
    top: 43%;
    z-index: 9;
}

#main-partner .top-safe .point span {
    border: 1px solid rgba(230, 0, 18, 0.5);
    border-radius: 50%;
    animation-fill-mode: both;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    margin: 0;
    width: 20rem;
    height: 20rem;
    animation: circle 4s cubic-bezier(1, 2, 0.66, 3) infinite;
    box-sizing: border-box;
}

#main-partner .top-safe .point span:nth-child(2) {
    animation-delay: 0.5s;
}
#main-partner .top-safe .point span:nth-child(3) {
    animation-delay: 1s;
}
#main-partner .top-safe .point span:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes circle {
    0% {
        -webkit-transform: scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

#main-partner .top-safe .point {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -5px 0 0 -5px;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--main-color);
    border-radius: 10px;
}
#main-partner .top-safe .point::after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 240%;
    height: 240%;
    background-color: var(--main-color);
    opacity: 0.2;
}

#main-partner .top-safe .logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 20%);
    background-color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: 60px;
    margin-top: 1rem;
    box-shadow: 0 0 2rem #dadada;
}

#main-partner .top-safe .logo-wrap img {
    width: 10rem;
}

#main-partner .partner-wrap {
    margin-top: 10rem;
    overflow: hidden;
}

#main-partner .main-customer-list {
    display: flex;
    flex: 0 0 auto;
    white-space: nowrap;
    /* overflow: hidden; */
    transition: 0.3s;
    margin-bottom: 3rem;
}

#main-partner .main-customer-list .main-customer-flow {
    display: flex;
    align-items: center;
    animation: textLoop 40s linear infinite;
    margin: 0 40px;
}

#main-partner .main-customer-list .main-customer-flow .flow-line {
    display: flex;
    align-items: center;
    width: max-content;
}

#main-partner .main-customer-list .main-customer-flow .flow-item {
    display: flex;
}

#main-partner .main-customer-list .main-customer-flow .flow-item span {
    margin: 0 2rem;
    background-color: #ffffff;
}

#main-partner .main-customer-list .main-customer-flow .flow-item img {
    height: 8.2rem;
    width: auto;
    padding: 0.6rem;
}

#main-partner .main-customer-list .main-customer-flow.reverse {
    animation: textLoopReverse 40s linear infinite;
}

@keyframes textLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes textLoopReverse {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0%, 0, 0);
    }
}
/*main-partner//*/

/*main-contact*/
#main-contact .contact-wrap {
    padding-bottom: 4rem;
}

#main-contact .inquiry-box {
    padding: 23rem 0;
    background-color: #222222;
    background-image: url("../img/main-inquiry-bg.png");
    background-size: cover;
}

#main-contact .inquiry-box .title-box .tit {
    color: #ffffff;
}

#main-contact .inquiry-box .title-box .txt {
    color: #ffffffcb;
}

#main-contact .inquiry-box .notification .txt {
    color: #ffffff;
}

#main-contact .inquiry-box .agree-check .checkwrap > p {
    color: #ffffff;
}

#main-contact .inquiry-box .btn-box:hover {
    border: 2px solid #ffffff !important;
    background-color: #ffffff;
}

#main-contact .inquiry-box .btn-box:hover a .btn-txt,
#main-contact .inquiry-box .btn-box:hover a span {
    color: #161616;
}
/*main-contact//*/
