@charset "UTF-8";

body * {margin: 0; padding: 0; box-sizing: border-box;}
h1, h2, h3 {text-wrap: balance; line-height: 0.8;}
p {text-wrap: pretty; line-height: 1.5;}
.mt-0 {margin-top: 0 !important;}
.mt-24 {margin-top: 24px !important;}
.container-inner {position: relative; width: 100%; max-width: 1400px; margin: 0 auto; z-index: 2;} 
.flex-area .text-area .title + p, .title + p {max-width: 100%;}
.company,
.business {position: relative; left: 0; top: 0; margin: 0 auto; color: var(--color-b100);}
.company .hero {
    position: relative;
    background: url(../images/bg/bg-7.png) ;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.business .hero {
    position: relative;
    background: url(../images/business/business-bg.png) ;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.company.technical {
    background: url(../images/bg/bg-3.png) no-repeat center;
    background-size: cover;
}
.company.technical .hero {
    position: relative;
    /* background: url(../images/technical/global.gif); */   
    background-image: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
/* .technical .hero:after {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.6;
    z-index: 1;
} */
.h1.title {
    position: relative;
    font-size: 60px;
    text-align: center;
    color:var(--color-b100);
    margin-top: 0;
}
.hero .h1.title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    z-index: 2;
}
.animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto;
    z-index: 2;
}

/* Animated Text */
.animation-container .h2 {
    position: relative;
    width: 100%;
    margin-top: 0;
    font-size: 3rem;
    font-weight: 500;
    word-break: keep-all;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;        
}
.company.technical.hero-tabs .hero .h1.title,
.company.technical.hero-tabs .animation-container .h2 {
    text-shadow: #004f7b 1px 1px, #004f7b 2px 2px, #004f7b 3px 3px, #004f7b 4px 4px, #004f7b 5px 5px, #004f7b 6px 6px;
}

/* Colorful Moving Lines */
.lines {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.line {
    position: absolute;
    width: 3px;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 0, 255, 0) 0%, cyan 50%, rgba(255, 0, 255, 0) 100%);
    opacity: 0.7;
    animation: moveLines 5s linear infinite;
}

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

/* Positioning the Lines Randomly */
.line:nth-child(1) { left: 10%; animation-delay: 0s; }
.line:nth-child(2) { left: 30%; animation-delay: 1s; }
.line:nth-child(3) { left: 50%; animation-delay: 2s; }
.line:nth-child(4) { left: 70%; animation-delay: 3s; }
.line:nth-child(5) { left: 90%; animation-delay: 4s; }



/* 회사개요 */
.slide {    
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    background: #000;
    text-align: center;
    padding: 0 50px;
    color: var(--color-b100);
}
.overview {
    background-size: cover;
    background-image: url(../images/company/bg3.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 30rem;
    padding-bottom: 30rem;
}
.hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #000;
    z-index: 10;
}

.hero-tabs-container--top {
    position: fixed;
    top: 96px;
}
.hero-tab {
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #fff;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    border: none;
    position: relative;
    z-index: 2;
}
.hero-tab:hover {
    color: white;
}
.hero-tab.active::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: radial-gradient(circle at 50% 50%, #00ffc3 10%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.hero-tab-slider {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 0;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.hero-tab-slider::before {
    content: '';
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00ffc3 10%, transparent 70%);
    transform: translate(-50%, -50%) scale(1.2);
    transition: none;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* 회사개요 */
.overview .h1.title {
    position: relative;
    left: auto;
    top: auto;
    width: 600px;
    text-align: center;
    transform: none;
    
}
.overview .list-wrap {
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    padding: 24px 40px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(15px);
}
.overview .list-wrap li {
    position: relative;    
    width: 100%;
    transition: .5s;
    text-align: left;
    padding: 24px 0;
    display: flex;
    align-items: center;
    color:var(--color-b100);
    font-size: 16px;
    font-weight: 500;
    height: auto;
}
.overview .list-wrap li span + span:before {
    content:"";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 13px;
    margin: -2px 8px 0;
    background-color: rgba(255,255,255,0.2);
}
.overview .list-wrap li:nth-child(1) span + span:before,
.overview .list-wrap li:nth-child(4) span + span:before,
.overview .list-wrap li:nth-child(5) span + span:before {
    display: none;}

.overview .list-wrap li + li {
    border-top: 1px solid rgba(193, 199, 205, .2);
}
.overview .list-wrap li:nth-child(1),
.overview .list-wrap li:nth-child(4),
.overview .list-wrap li:nth-child(5) {
    flex-direction: column;
    align-items: flex-start;
}
.overview .list-wrap li:nth-child(1) span:first-child,
.overview .list-wrap li:nth-child(4) span:first-child,
.overview .list-wrap li:nth-child(5) span:first-child {
    margin-bottom: 4px;
}
.overview .list-wrap li:nth-child(1) span:nth-child(2),
.overview .list-wrap li:nth-child(4) span:nth-child(2), 
.overview .list-wrap li:nth-child(4) span:nth-child(3),
.overview .list-wrap li:nth-child(5) span:nth-child(2) {
    margin-left: 34px;
}
.overview .list-wrap li:after {
    content: "";
    clear: both;
    display: table;
}
.overview .list-wrap li i {
    display: inline-block;
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
    font-weight: 100;
}

/* 회사연혁 */
.history {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background: #000;
    overflow: hidden;    
    background-image: url(../images/company/bg2.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#historyCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}
.history > * {
    position: relative;
    z-index: 1;
}

@keyframes slidein {
    0%, 100% {
        background-position: 20% 0%;
        background-size: 3400px;
    }
    50% {
        background-position: 100% 0%;
        background-size: 2400px;
    }
}
.history .content {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: 500px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 100%;
    place-items: center;
    z-index: 1;
    overflow-y: auto;
}
.history .content::-webkit-scrollbar {
    width: 7px;
}
.history .content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.3rem var(--scrollbar-track);
    border-radius: 40px;
    margin: 18px 0;
}
.history .content::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0.5rem var(--scrollbar-thumb);
    background-color: var(--primary-clr);
    outline: none;
    border-radius: 40px;
}
.history .slider-list {
    width: 80%;
    height: 500px;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}
.history .swiper {
    width: 300px;
    height: auto;
}
.history .swiper-slide {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.2) inset, 0 1px 0 0 rgba(255, 255, 255, 0.6) inset, 0 4px 16px rgba(0, 0, 0, 0.1);
    user-select: none;
    backdrop-filter: blur(15px) opacity(1);
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: 0.3s ease-out;
}
.history .swiper-slide .img-area {
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.history .swiper-slide img {
    aspect-ratio: 1/1;
    border-radius: 5px;
    margin-bottom: 14px;
    pointer-events: none;
    max-width: 270px;
    transition: 0.3s ease-out;
}
.history .swiper-slide h4 {
    width: max-content;
    color: var(--color-b100);
    margin: 16px auto 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.history .swiper-slide span {
    display: inline-block;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--color-b100);
    max-width: 140px;
    margin: 0 auto;
}
.history .swiper-slide:hover {
    transition: 0.3s ease-out;
    background: rgba(255, 255, 255, 1);   
}
.history .swiper-slide:hover h4 {
    transition: 0.3s ease-out;
    color: var(--color-b900);
}
.history .swiper-slide:hover span {
    transition: 0.3s ease-out;
    color: var(--color-b800);
    border: 1px solid var(--color-b400);
}
.history .swiper-slide:hover img {
    transform: scale(1.2);
    transition: 0.5s ease-out;
}
.history .history-list {
    width: 100%;
    max-width: 580px;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    /* 스크롤바 숨기기 - 크로스 브라우저 지원 */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.history .history-list::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}
.history .history-list .list-item {
    display: grid;
    grid-template-columns: 15% 73% 12%;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 8px 10px;
    margin-bottom: 8px;
    color: var(--light-clr);
    cursor: pointer;
    user-select: none;
    text-align: left;
    transition: all 0.3s ease;
}
.history .history-list .list-item img {
    width: 70%;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
}
.history .history-list .list-item p {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 16px;
}
.history .history-list .list-item p.text-end {
    margin: 0 16px 0 0;
}
.history .list-item .text-wrap span {
    font-weight: 300;
    opacity: 0.5;
    font-size: 13px;
    letter-spacing: -0.5px;
}
.history .list-item.active {
    background-color: rgba(255,255,255,0.2);
    border-radius: 8px;
}
.history .player {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 5px;
    z-index: 15;
    overflow: hidden;
    margin-top: 40px;
}
.history .controls {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
}
.history .controls span {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    font-size: 0;
    transition: .2s ease-out;
    cursor: pointer;
}
.history .controls i {    
    font-size: 20px;    
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    overflow: hidden;
}
.history .controls span:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary);
}

/* 기업소개 */
.slide-3 {
    position: relative;
    background-color: #040911;
    background-image: url(../images/company/bg5.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* padding-top: 30rem;
    padding-bottom: 30rem; */
}
.slide-3 .title.h3 {
    display: block;
    margin: 24px 0 32px;
    font-size: 32px;
    font-weight: 600;
}
.slide-3 .text-area {
    position: relative;
    width: 80%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.slide-3 .text-area p {
    max-width: 100% !important;
    margin: 0;
    word-break: keep-all;
}

.slide-3 .text-area p:nth-child(5),
.slide-3 .text-area p:nth-child(8) {
    margin-top: 24px;
}
.main.company .slide-3 .content .img-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 80px;
    width: 100%;
}
.main.company .slide-3 .content .img-area .img-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    padding: 20px;
    border-radius: 50%;
    backdrop-filter: blur(15px);
    background: rgba(170, 170, 170, .2);
}
.main.company .slide-3 .content .img-area .img-wrap:after {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -40px;
    text-align: center;
    color:#fff;
    font-size: 20px;
}
.main.company .slide-3 .content .img-area .img-wrap:nth-child(1):after {content:"사출기";}
.main.company .slide-3 .content .img-area .img-wrap:nth-child(2):after {content:"자동화";}
.main.company .slide-3 .content .img-area .img-wrap:nth-child(3):after {content:"IML 용기";}
.main.company .slide-3 .content .img-area .img-wrap:nth-child(4):after {content:"프리폼";}
.main.company .slide-3 .content .img-area .img-wrap:nth-child(5):after {content:"리싸이클";}
.slide-3.business {
    position: relative;
    background-color: #040911;
    background-image: url(../images/business/business-bg2.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* padding-top: 30rem;
    padding-bottom: 30rem; */
}
.slide-3.business .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-3.business .content .text-area {
    width: 40%;
    text-align: left;
    align-items: flex-start;
    margin-left: 40px;
}
.slide-3.business .content .text-area p {
    margin: 0;
}
.slide-3.business .content .text-area p:nth-child(3), 
.slide-3.business .content .text-area p:nth-child(7) {
    margin-top: 24px;
}
.slide-3.business .content .img-area {
    position: relative;
    width: 40%;
    max-width: 800px;
    height: 500px;
    margin-top: 40px;
}
.slide-3.business .content .img-area .img-wrap {
    position: absolute;
    width: 180px;
    height: 180px;
    padding: 8px;
    overflow: hidden;
    border-radius: 50%;
    backdrop-filter: blur(15px);
    background: rgba(170, 170, 170, .3);
}

/* 불규칙적 위치 설정 */
.slide-3.business .content .img-area .img-wrap:nth-child(1) {
    top: 5%;
    left: 5%;
}
.slide-3.business .content .img-area .img-wrap:nth-child(2) {
    top: 10%;
    right: 5%;
}
.slide-3.business .content .img-area .img-wrap:nth-child(3) {
    top: 40%;
    left: 35%;    
}
.slide-3.business .content .img-area .img-wrap:nth-child(4) {
    bottom: 0;
    left: 5%;
}
.slide-3.business .content .img-area .img-wrap:nth-child(5) {
    bottom: 0;
    right: -5%;
}

.slide-3.business .content .img-area .img-wrap:nth-child(6) {
    bottom: -15%;
    right: 30%;
}

/* 바운스 애니메이션 */
@keyframes bounceFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -15px);
    }
}

/* 바운싱 애니메이션 - fadeInUp과 함께 사용 */
.slide-3.business .content .img-area .img-wrap:nth-child(1).animate.fadeInUp.one.bouncing {
    animation: fadeInUp 1s 0.4s both, bounceFloat 2.5s ease-in-out 1.4s infinite;
}
.slide-3.business .content .img-area .img-wrap:nth-child(2).animate.fadeInUp.two.bouncing {
    animation: fadeInUp 1s 1.7s both, bounceFloat 2.5s ease-in-out 2.7s infinite;
}
.slide-3.business .content .img-area .img-wrap:nth-child(3).animate.fadeInUp.three.bouncing {
    animation: fadeInUp 1s 2.3s both, bounceFloat 2.5s ease-in-out 3.3s infinite;
}
.slide-3.business .content .img-area .img-wrap:nth-child(4).animate.fadeInUp.four.bouncing {
    animation: fadeInUp 1s 3.3s both, bounceFloat 2.5s ease-in-out 4.3s infinite;
}
.slide-3.business .content .img-area .img-wrap:nth-child(5).animate.fadeInUp.five.bouncing {
    animation: fadeInUp 1s 3.9s both, bounceFloat 2.5s ease-in-out 4.9s infinite;
}
.slide-3.business .content .img-area .img-wrap:nth-child(6).animate.fadeInUp.six.bouncing {
    animation: fadeInUp 1s 4.5s both, bounceFloat 2.5s ease-in-out 5.5s infinite;
}
.slide.business .text-area {
    margin: 40px 0;
}
.slide-5.business .text-area p {
    margin: 0;
}
.slide-5.business .img-area {
    width: 1200px;
    margin-top: 24px;
}


/* CI */
.slide .text-area .title + p {
    max-width: 100%;
}
.slide-4 {
    /* background: linear-gradient(135deg, #1b1b1b 0%, #0e0e0e 100%); */
    position: relative;
}
.slide-4::before,
.slide-4::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
}

.slide-4::before {
    background: #00ffc3;
    top: 10%;
    left: 10%;
}

.slide-4::after {
    background: var(--primary);
    bottom: 10%;
    right: 10%;
}
.slide-4 .text-area p:nth-child(4) {
    margin-top: 24px;
}
.card {
    position: relative;
    margin-top: 60px;
    --radius: 4rem;  
    background: linear-gradient(10deg, #141414, #202020);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;  
    width: 800px;
    height: 300px;
    overflow: hidden;
    background: rgba(255,255,255,1);
}
.card .img-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    padding: 24px;
    transform: translate(-50%, -50%);
}
.card .img-wrap img {
    width: 100%;
    opacity: 1;
}
/* 비전과 가치 */
#vision,
#recycleSolutions {
    position: relative;
    overflow: hidden;
}
#vision #visionCanvas,
#recycleSolutions #visionCanvas,
#certificate #visionCanvas,
#visionCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#vision > *,
#recycleSolutions > * {
    position: relative;
    z-index: 1;
}
.slide5 .box-wrap {
    position: relative; 
    width: 100%; 
    max-width: 1400px; 
    margin: 60px auto; 
    display: flex; 
    flex-wrap: wrap; 
    align-items: flex-start; 
    justify-content: space-between;
    gap: 24px;
}
.slide5 .box-wrap .box { 
    position: relative;   
    width: calc(50% - 12px);
    height: 240px;
    padding: 40px;
    text-align: left;
    color: white;
    /* text-transform: uppercase; */
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
}
.slide5 .box-wrap .box.blur-box {
    border-radius: 20px;
    background: rgba(170, 170, 170, .1); 
}
.slide5 .box-wrap .box .img-wrap {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.slide5 .box-wrap .box .text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.slide5 .box-wrap .box .text-wrap > * {
    white-space: nowrap;
}
.slide5 .box-wrap .box .text-wrap span {
    display: block;
    font-size: 14px;
    color: var(--primary);
}
.slide5 .box-wrap .box .text-wrap h3 {
    margin: 24px 0;
    font-weight: 500;
    color:#fff;
}
.slide5 .box-wrap .box .text-wrap p {
    display: block;
    font-size: 16px;
    opacity: 0.7;
    font-weight: 300;
    margin: 0;
}
#cooperation.slide{
    background-size: cover;
    background-image: url(../images/technical/global.gif);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 30rem;
    padding-bottom: 30rem;
}
.flex-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide .flex-wrap.content {
    position: relative;
    margin-top: 80px;
    gap:80px;
    z-index: 2;
}
.slide .flex-wrap.content .img-area {
    max-width: 500px;
}
.slide .flex-wrap.content .text-area p {
    text-align: left;
    line-height: 2;
}
.slide#engineering {
    background: none;
}
.technical .slide-1 .content {
    align-items: flex-start;
}
.technical .slide .flex-wrap.content .img-area {
    position: relative;
    width: 800px;
    /* padding: 24px; */
    /* background: rgba(170, 170, 170, .3);
    border-radius: 40px; */
}
.technical .slide .flex-wrap.content .img-area span {
    display: inline-block;
    width: 240px;
    height: 60px;
    border: 0;
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translate(-50%);
    padding: 12px 24px;
    background: rgba(255, 255, 255, .1);
    border-radius: 60px;
    backdrop-filter: blur(10px) opacity(1);
}
.technical .slide .flex-wrap.content .img-area span img {
    width: 100%;
    border-radius: 0;
}
.technical .slide .flex-wrap.content .img-area .swiss img {
    width: 140px;
}
.technical .slide .flex-wrap.content .img-area .corvaglia {
    top: 116px;
}
.technical .slide-1 .box-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.technical .slide-1 .box-wrap .box {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: left;
    color: white;
    /* text-transform: uppercase; */
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 24px;
}
.technical .slide-1 .box-wrap .box.blur-box {
    border-radius: 20px;
    background: rgba(170, 170, 170, .2);
}
.technical .slide-1 .box-wrap .box .img-wrap {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.technical .slide-1 .box-wrap .box .text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.technical .slide-1 .box-wrap .box .text-wrap span {
    display: block;
    font-size: 14px;
    color: var(--primary);
}
.technical .slide-1 .box-wrap .box .text-wrap h3 {
    font-size: 20px;
    margin: 16px 0;
    font-weight: 500;
}
.technical .slide-1 .box-wrap .box .text-wrap p {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    word-break: keep-all;
}
.technical .slide-3 #historyCanvas {
    opacity: 1;
}
.technical .slide-3 .img-area {margin-top: 40px; display: flex; gap: 40px;}
.technical .slide-3 .img-area img {width: 400px;}
.technical .slide-4 {
    background-size: cover;
    background-image: url(../images/technical/technical4-bg.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 20rem;
    padding-bottom: 20rem;
}
.technical .slide-4 .img-area {
    margin-top: 80px;
}
.technical .slide-4 .img-area .blur-box {
    border-radius: 40px;
    background: rgba(170, 170, 170, .2);
}

/*=== animate Trigger  ===*/
.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.one {
-webkit-animation-delay: 0.2s;
-moz-animation-delay: 0.2s;
animation-delay: 0.2s;
}

.two {
-webkit-animation-delay: 0.4s;
-moz-animation-delay: 0.4s;
animation-delay: 0.4s;
}

.three {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
animation-delay: 0.6s;
}

.four {
-webkit-animation-delay: 0.8s;
-moz-animation-delay: 0.8s;
animation-delay: 0.8s;
}

.five {
-webkit-animation-delay: 1.0s;
-moz-animation-delay: 1.0s;
animation-delay: 1.0s;
}

.six {
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
animation-delay: 1.2s;
}
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/* ========================================
 * Certificate Section - Sticky Scroll Effect
 * ======================================== */
/* .certificate-section {
    background: url(../images/bg/bg-6.png);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 0;
    padding-bottom: 0;
} */
/* 
.certificate-title-wrap {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1;
}
.certificate-title-inner {
    position: relative;
}
.certificate-title-wrap .title {
    position: relative;
    z-index: 2;
    color: var(--color-b100);
}
.certificate-title-wrap .body-m {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    color: var(--color-b100);
    text-align: center;
}

.certificate-img-section {
    z-index: 5;
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100vh;
    padding-bottom: 20rem;
    display: flex;
    position: relative;
    flex: 1;
}
.certificate-img-section .blur-box .tit p {
    text-align: center;
}
.certificate-img-section .blur-box:nth-child(1) {
    left: 20%;
}

.certificate-img-section .blur-box:nth-child(2) {
    right: 20%;
}

.certificate-img-section .blur-box:nth-child(3) {
    left: 20%;
}

.certificate-img-section .blur-box:nth-child(4) {
    right: 20%;
}

.certificate-img-section .blur-box:nth-child(5) {
    left: 20%;
} */

/* Certificate 섹션 탭 및 스와이퍼 스타일 */
#certificate .inner {
    position: relative;
    z-index: 10;
    margin: 80px auto;
    min-width: 1400px;
    max-width: 100%;
    padding: 0 20px 40px;
}

#certificate .tab_btn {
    margin-bottom: 60px;
}

#certificate .tab_btn .scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

#certificate .tab_btn .scroll::-webkit-scrollbar {
    height: 4px;
}

#certificate .tab_btn .scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

#certificate .tab_btn ul {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: max-content;
    justify-content: center;
}

#certificate .tab_btn li {
    flex-shrink: 0;
}

#certificate .tab_btn button {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: .2s ease-out;
    white-space: nowrap;
    overflow: hidden;
    z-index: 2;    
    box-sizing: border-box;
    position: relative;
    backdrop-filter: blur(10px);
}
#certificate .tab_btn li button:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-b100);
    transform: translateX(-102%);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    transition: .2s ease-out;
    z-index: -1;
}
#certificate .tab_btn button:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-b900);
    border-color: rgba(255, 255, 255, 0.3);
}
#certificate .tab_btn button:hover:before {
    transform: translateX(0);
}
#certificate .tab_btn li.active button {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 600;
}

#certificate .tab_con .con {
    display: none;
}

#certificate .tab_con .con.active {
    display: block;
}

#certificate .slider_wrap {
    position: relative;
}

#certificate .swiper-container {
    width: 100%;
    overflow: visible;
}

#certificate .swiper-wrapper {
    display: flex;
    margin-left: -180px;
}

#certificate .swiper-slide {
    height: auto;
}

#certificate .gallery-item {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#certificate .gallery-item:hover {
    transition: opacity 0.3s ease-in-out;
}

#certificate .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#certificate .swiper-scrollbar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: absolute;
    bottom: -40px;
    left: 0;
}
#certificate .swiper-scrollbar-drag {
    background: rgba(0, 161, 228, 0.8);
    border-radius: 2px;
    cursor: grab;
}
#certificate .swiper-scrollbar-drag:active {
    cursor: grabbing;
}
#certificate .swiper-slide {
    width: 340px;
    opacity:0;
    transform: translateX(120px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#certificate .swiper-slide-visible {
    opacity:1;
    transform: translateX(0) scale(1);
}

/* 추가적인 다이나믹 애니메이션 효과 */
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(120px) scale(0.9);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

#certificate .con.active .swiper-slide-visible {
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#certificate .swiper-slide a {display:block;width:100%; max-width: 340px; height:480px;position:relative;border-radius:20px;overflow:hidden;background-color:#111; transition: opacity 0.3s ease-in-out;}
#certificate .swiper-slide a:before{content:"";width:100%;height:100%;position:absolute;left:0;top:0;z-index:1;background:rgba(0,0,0,.4);opacity:0;transition:.25s ease-out}
#certificate .swiper-slide a .card-hover {position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; color: #fff; transition: opacity 0.3s ease-in-out; z-index: 2; opacity: 0; transition:.25s ease-out}
#certificate .swiper-slide a .card-hover i {display: block; margin-top:40px; font-size: 40px; font-weight: 100;}
#certificate .swiper-slide a .card-hover .text {display: block; margin-top: 40px; font-size: 20px; font-weight: 400; text-align: center; line-height: 1.2; opacity: 0.7;}
#certificate .swiper-slide a .card-hover .text + .text {margin-top: 16px;}
#certificate .swiper-slide a img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover;transition:.25s ease-out;opacity:0.9;}
#certificate .swiper-slide a:hover:before {opacity:1; background: rgba(0, 0, 0, .6);}
#certificate .swiper-slide a:hover .card-hover {opacity: 1;}
#certificate .swiper-slide a:hover img{transform:scale(1.1)}
#certificate .swiper-slide:last-child{margin-right:0}

@media (max-width: 768px) {
    #certificate .tab_btn {
        margin-bottom: 40px;
    }

    #certificate .tab_btn button {
        padding: 12px 24px;
        font-size: 14px;
    }

    #certificate .swiper-scrollbar {
        margin-top: 24px;
    }
}

/* Certificate Lightbox 스타일 */
.certificate-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.certificate-lightbox.active {
    display: flex;
}

.certificate-lightbox .lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.certificate-lightbox .lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-lightbox .lightbox-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    max-height: 90vh;
}

.certificate-lightbox .lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.certificate-lightbox .lightbox-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

.certificate-lightbox .lightbox-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.certificate-lightbox .lightbox-close,
.lg-next, .lg-prev {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}
.lg-outer .lg-thumb-item {
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.4)
}
.lg-outer .lg-thumb-item img {
    border-radius: 0;
}
.lg-prev:hover,
.lg-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}
.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
    border-color: var(--primary);
}
.lg-sub-html h4 {
    font-size: 24px;
    font-weight: 500;
}
.lg-counter {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding-left: 20px;
    padding-top: 12px;
    height: 47px;
    vertical-align: middle;
}
/* 제품소개 */
.product .halo-container {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 0;
}
.product {  
    position: relative; 
    width: 100vw;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

/* INTRO */
.product .intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 30px;
    min-height: 100vh;
    width: 100%;
    padding: 60px 100px;
    /* background: url(../images/product/intro_bg.gif) no-repeat center; */
    background: url(../images/product/bg-1.png) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product .intro-content {
    padding-right: 100px;
}
.product .intro-content .title {
    margin-bottom: 40px;
}
.product .intro-content .title {
    text-align: center;
    margin-bottom: 40px;
    color: transparent;
    font-size: 60px;
    line-height: 1.2;
    animation: fade-in-out 12s linear infinite;
}
@keyframes fade-in-out {
    0% {
        color: #fff;
        filter: hue-rotate(0deg);
        text-shadow: 0 0 10px #00b3ff, 0 0 20px #00b3ff;
    }
    30%,
    70% {
        color: #fff;
        filter: hue-rotate(360deg);
        text-shadow: 0 0 10px #00b3ff, 0 0 20px #00b3ff;
    }
    100% {
        color: transparent;
        box-shadow: none;
        filter: hue-rotate(0deg);
    }
}
.product .intro-content p {
    max-width: 100%;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 10px #00b3ff, 0 0 20px #00b3ff;
    /* color: #94a3b8; */
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}
.product .card-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
    margin-top: 80px;
}

.product .card-container:hover {
    max-width: 1400px;
    gap: 20px;
    justify-content: center;
}
.product .intro .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    aspect-ratio: 5/5;
    background: linear-gradient(#fff2, transparent);
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin: 0 -45px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transform: rotate(calc(var(--r) * 1deg)) translateY(calc(var(--y) * 1px))
        translateX(calc(var(--x) * -1px));
    transition: all 0.8s linear;
    border-radius: 24px;
    flex-shrink: 0;
}
.product .intro .card img,
.product .intro .item img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 24px;
}
.card-container:hover .card {
    margin: 0;
    transform: rotate(0deg) translateY(0) translateX(0);
    flex: 0 0 calc(25% - 16px);
}
.product .slide-1 {
    padding-top: 80px;
}
.row {
    --gutter-x: 1.5rem;
    --gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-0.5 * var(--gutter-x));
    margin-left: calc(-0.5 * var(--gutter-x));
}
.product .closure-moulds .row .col {
    width: 25%;
    height: 320px;
    padding: 0 16px;
}
.product .closure-moulds .row .col .card {
    width: 100%;
    height: 100%;
    background: none;
}
.product .closure-moulds .row .col .card.card-flip {
    cursor: pointer;
}
.product .closure-moulds .row .col .card.card-flip .card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    transform-style: preserve-3d;
}
.product .closure-moulds .row .col .card.card-flip .card-body {
    text-align: center;
    flex: 1 1 auto;
    padding: 24px;
}
.product .closure-moulds .row .col .card-flip-front .h1 {
    display: block;
    color: #fff;
    margin: 0 auto;
}


/* corvaglia 캡 금형 */
.container-inner .row {justify-content: center;}
.product .closure-moulds {padding-bottom:80px;}
.product .closure-moulds .row .col {width:25%; height:320px;}
.product .closure-moulds .row .col .card.card-flip {cursor:pointer; padding: 0;}
.product .closure-moulds .row .col .card-flip-front {width:100%; height:100%; border-radius:36px; display:flex; align-items:flex-start; justify-content:center; text-align:center;}
.product .closure-moulds .row .col .card-flip-front .h1 {display:block; color:#fff; margin: 0 auto; font-size: 48px; line-height: 1; font-weight: 500; text-transform: none;}
.product .closure-moulds .row .col:nth-child(1) .card-flip-front {background:#e41869 url(../images/product/corvaglia/bg-cap.jpg) no-repeat center 100%; background-size: 100%;}
.product .closure-moulds .row .col:nth-child(2) .card-flip-front {background:#6e90a6 url(../images/product/corvaglia/bg-mold.jpg) no-repeat center 100%; background-size: 100%;}
.product .closure-moulds .row .col:nth-child(3) .card-flip-front {background:#eebf00 url(../images/product/corvaglia/bg-cap-production.jpg) no-repeat center 100%; background-size: 100%;}
.product .closure-moulds .row .col:nth-child(4) .card-flip-front {background:#95be09 url(../images/product/corvaglia/bg-cap-application.jpg) no-repeat center 100%; background-size: 100%;}
.product .closure-moulds .row .col .card-flip-back {width:100%; height:100%; padding:24px 0; border-radius:36px; display:flex; align-items:center; justify-content:center; text-align:center;transform: rotateY(180deg); background: rgba(170, 170, 170, .1); backdrop-filter: blur(15px); transition: .4s;}
.product .closure-moulds .row .col .card-flip-back .card-body {display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 16px; background-color: transparent;     }
.product .closure-moulds .row .col .card-flip-back .card-body h6 {margin-top: 8px; font-size: 24px; color: #fff; font-weight: 500;}
.product .closure-moulds .row .col .card-flip-back .card-body p {font-size:16px; line-height:1.3; font-weight:400; word-break:keep-all; color:rgba(255,255,255,0.7)}
.product .closure-moulds .row .col .card-body i {display:inline-block; width:100px; height:100px; border-radius:50%;}
.product .closure-moulds .row .col:nth-child(1) .card-flip-back .card-body i {background: url(../images/product/corvaglia/bg-cap.jpg) no-repeat center; background-size: cover}
.product .closure-moulds .row .col:nth-child(2) .card-flip-back .card-body i {background: url(../images/product/corvaglia/bg-mold.jpg) no-repeat center; background-size: cover}
.product .closure-moulds .row .col:nth-child(3) .card-flip-back .card-body i {background: url(../images/product/corvaglia/bg-cap-production.jpg) no-repeat center; background-size: cover}
.product .closure-moulds .row .col:nth-child(4) .card-flip-back .card-body i {background: url(../images/product/corvaglia/bg-cap-application.jpg) no-repeat center; background-size: cover}
.product .neck-finish {position: relative; clear: both;  display: block; margin: 0x auto; width: 100%; padding: 80px 0; z-index: 2; 
    /* background-image: url(../images/product/bg-2.jpg); background-size: cover; background-position: 50%; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; */
}
.product .neck-finish .blur-box {background: rgba(170, 170, 170, .1); padding:0;}
.product .neck-finish .h3 {color:#fff;}
.product .neck-finish p {font-size: 18px; letter-spacing: -1px;  color:rgba(255,255,255,0.7)}
.product .neck-finish .accordion-button {font-size:20px; font-weight:600; font-weight: 400;}
.product .neck-finish .accordion-button:after {fill:#fff}
.product .neck-finish .accordion-body, 
.product .neck-finish .accordion-body > div > div {display:flex; flex-wrap:nowrap; align-items:flex-end; justify-content:flex-start; text-align:center;}
.product .neck-finish .accordion-body {gap: 40px;}
.product .neck-finish .accordion-body img {max-width: 120px; margin: 0 auto;}
.product .neck-finish .accordion-body > div > div {gap: 16px}
.product .neck-finish .accordion-body > div {display:flex; flex-direction:column;}
.product .neck-finish .accordion-body .tag {padding: 4px 16px; border-radius: 100px;}
.product .application {position: relative; width: calc(100% + 100px); margin: 0 -50px;}
.product .application .box-wrap .blur-box p {word-break: keep-all; white-space: normal;}
.product .application .box-wrap .blur-box i[class^="ri-"], 
.product .application .box-wrap .blur-box i[class*=" ri-"] {color: var(--primary); font-weight: 100;}
.product .container-inner .img-area.flex-wrap {width: 100%; margin: 80px auto; display: flex; gap: 40px;}
.product .slide.features .row {margin: 0 auto;}
.product .slide.features .row .col {margin-top: 80px;}
.product .slide.features .row .col .h4 {margin-bottom: 24px;}
.product .slide.features .row .col p {line-height: 1.6; margin-bottom: 0; word-break: keep-all;}
.product .slide.features .row .col .icon {display: block; width:80px; margin: 0 auto 24px; border-radius: 0;}
.product .slide.features .flex-wrap.content {flex-wrap: nowrap; align-items: flex-start; max-width: 1200px; margin: 80px auto;}
.product .slide.features .flex-wrap.content .img-area {max-width: 700px; width: 600px;}
.product .slide.features .flex-wrap.content .table-area {width: 40%;}
/* table */
.table-area {position: relative; width: 100%; overflow: hidden; z-index: 10;}
.table-area .table.dark-table {position: relative; width: 100%; background: rgba(170, 170, 170, .1) !important; overflow: hidden; z-index: 10;}
.table-area .table.dark-table > :not(caption) > * > * {padding: 0.75rem 0.75rem; color: #fff; background: none;}
.table-area .table.dark-table th {background-color: #00b3ff; padding: 16px; font-size: 20px;}
.table-area .table.dark-table td {padding: 18px; vertical-align: middle; border-top: 1px solid rgba(255,255,255,0.1)}
.table-area .table.dark-table tbody tr td {border-bottom: 0;}
.table-area .table.dark-table tbody tr td[rowspan]  {border-right: 1px solid rgba(255,255,255,0.1)}

.product.iml .container-inner {position: relative; width: 100%; margin: 0 auto; padding: 80px 0;} 
.product.iml .container-inner .row [class^="col-"] {display: inline-block; padding-bottom: 80px;}
.product.iml .container-inner .row [class^="col-"]:first-child {display: flex; align-items: center; justify-content: center; flex-direction: column;} 
.product.iml .container-inner .row .display-2 {color:var(--primary); background: linear-gradient(90.72deg, #cbfdb1 3.49%, #acbff1 50.67%, #efa7ec 100.79%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;} 
.product.iml .container-inner .row [class^="col-"].applications {display: flex; flex-direction: column; align-items: center; justify-content: center;}
.product.iml .container-inner .row [class^="col-"].applications > div {margin-top: 16px}
.product.iml .container-inner .row.lineup .title {margin-bottom: 40px;}
.product.iml .container-inner .row.lineup .icon {display: inline-block; width: 80px; height: 80px; margin-bottom: 24px; border-radius: 50%; background-color: transparent; overflow: hidden;}
.mt_24 {margin-top: 24px !important;}
.color-primary {color: var(--primary) !important}
i.ri-check-line,
i.ri-checkbox-circle-fill {display: inline-block; margin-right: 8px; font-size: 20px; font-weight: lighter; vertical-align: middle;}

.recycle .slide-1 .box-wrap {position: relative; width: 100%; max-width: 1200px; margin-top: 40px; display: flex; gap: 24px; flex-direction: column; z-index: 10}
.recycle .slide-1 .box-wrap .blur-box {width: 100%; display: flex; align-items: center; padding: 40px 80px; gap: 80px; background: rgba(170, 170, 170, .2);}
.recycle .slide-1 .box-wrap .blur-box .img-wrap {min-width: 160px; height: 100%; flex-shrink: 0;}
.recycle .slide-1 .box-wrap .blur-box .img-wrap img {width: 120px; height: 120px;}
.recycle .slide-1 .box-wrap .blur-box .text-wrap {text-align: left;}
.recycle .slide-1 .box-wrap .blur-box .text-wrap h3 {margin: 0; font-weight: 500;}
.recycle .slide-1 .box-wrap .blur-box .text-wrap p {margin: 24px 0 0; font-weight: 400; opacity: 0.6; word-break: keep-all;}
.recycle .slide-2 p {width: 100%; max-width: 100%;}
.recycle .slide-2 .img-area,
.recycle .slide-3 .img-area {position: relative; margin: 80px auto 0; display: flex; gap: 80px; align-items: flex-start; justify-content: center; z-index: 10;}
.recycle .slide-2 .img-area .blur-box,
.recycle .slide-3 .img-area .blur-box {width: 200px; height: 200px; padding: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(170, 170, 170, .2); overflow: hidden;}
.recycle .slide-3 .img-area .blur-box {background: rgba(170, 170, 170, .3);}
.recycle .slide-2 .img-area p,
.recycle .slide-3 .img-area p {display: block; width: 100%; text-align: center; margin: 24px auto; font-size: 24px;}
.recycle .slide-3 {background-image: url(../images/product/bg-2.png);}
.recycle .slide-4 {padding: 80px 0 0; height: 100vh; flex-direction: column; align-items: center; justify-content: flex-end;}
.recycle .slide-4 .img-container {position: relative; width: 100%; max-width: 1200px; flex: 1; margin: 40px auto; padding: 0; text-align:center; z-index: 10}
.recycle .slide-4 .img-container .img-wrap.img1 {position: absolute; top: 60%; left: 50%; transform: translate(-50%, -50%) !important; width: 400px; height: 400px;  background: rgba(170, 170, 170, .2); padding: 0;}
.recycle .slide-4 .img-container .img-wrap {position: absolute; width: 200px; height: 200px; border-radius: 50%; overflow: hidden;}
.recycle .slide-4 .img-container .img-wrap.img2 {top: 0; left: 50%; margin-left: -100px;}
.recycle .slide-4 .img-container .img-wrap.img3 {top: 60%; left: auto; right: 50%; margin-right: -440px; margin-top: -100px;}
.recycle .slide-4 .img-container .img-wrap.img4 {top: 60%; left: 50%; margin-left: -440px; margin-top: -100px;}
.recycle .slide-4 .img-container .img-wrap.img2.bouncing {
    animation: fadeInUp 1s 0.4s both, bounceFloat 2.5s ease-in-out 1.4s infinite;
}
.recycle .slide-4 .img-container .img-wrap.img3.bouncing {
    animation: fadeInUp 1s 1.7s both, bounceFloat 2.5s ease-in-out 2.7s infinite;
}
.recycle .slide-4 .img-container .img-wrap.img4.bouncing {
    animation: fadeInUp 1s 2.3s both, bounceFloat 2.5s ease-in-out 3.3s infinite;
}


/* 문의하기 */
.contact.section1{width:100%;min-height:85vh;padding-top:200px;background-attachment:fixed;background-repeat:no-repeat;background-position:center;background-size:cover;text-align:center;background-image:url(../images/bg/bg-4.png);animation:visualScale 3s linear;}
.contact.section1 .circle-motion{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:10%;width:100%;margin:0 auto;padding:40px;text-align:center;}
.contact.section1 .circle-motion li{position:relative;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:24px;}
.contact.section1 .circle-motion li p{position:absolute;left:50%;top:calc(100% + 24px);display:block;font-size:20px;color:#fff;white-space:nowrap;transform:translateX(-50%);}
.contact.section1 .circle-motion li .circle{position:relative;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;width:120px;height:120px;border:1px solid #fff;border-radius:50%;}
.contact.section1 .circle-motion li .circle:before{width:88.56%;height:88.56%;}
.contact.section1 .circle-motion li .circle:after{width:78.86%;height:78.86%;}
.contact.section1 .circle-motion li .circle:before, 
.contact.section1 .circle-motion li .circle:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:rgba(225,225,255,.1);border-radius:50%;}
.contact.section1 .circle-motion li .circle1 {background:url(../images/company/icon-phone.svg) no-repeat center; background-size:32px;}
.contact.section1 .circle-motion li .circle2 {background:url(../images/company/icon-printer.svg) no-repeat center; background-size:32px;}
.contact.section1 .circle-motion li .circle3 {background:url(../images/company/icon-email.svg) no-repeat center; background-size:32px;}
.contact.section1 .circle-motion li .circle4 {background:url(../images/company/icon-location.svg) no-repeat center; background-size:32px;}
.contact.section2 .container-inner {clear: both; padding: 80px 0;}
.contact.section2 form {max-width:1000px; margin:0 auto 80px;}
.contact.section2 h2 {margin-bottom:40px;}
.contact.section2 form .row [class^="col-"] {margin-bottom: 24px;}
.contact.section2 form .row .form-control,
.contact.section2 form .row .form-select {color: #fff; background-color: rgba(170, 170, 170, 0.1) !important; border:1px solid rgba(255,255,255,0.1) !important;}

/* 포커스 상태 스타일 유지 */
.contact.section2 form .row .form-control:focus,
.contact.section2 form .row .form-select:focus {
    color: #fff !important;
    background-color: rgba(170, 170, 170, 0.1) !important;
    border: 1px solid rgba(0, 161, 228, 0.5) !important;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 161, 228, 0.25) !important;
}

/* 브라우저 autofill 배경색 제어 (Chrome, Safari, Edge) */
.contact.section2 form .row .form-control:-webkit-autofill,
.contact.section2 form .row .form-control:-webkit-autofill:hover,
.contact.section2 form .row .form-control:-webkit-autofill:focus,
.contact.section2 form .row .form-select:-webkit-autofill,
.contact.section2 form .row .form-select:-webkit-autofill:hover,
.contact.section2 form .row .form-select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(170, 170, 170, 0.1) inset !important;
    box-shadow: 0 0 0 1000px rgba(170, 170, 170, 0.1) inset !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.contact.section2 form .row .form-label {font-weight: 400; display: block; margin-bottom: 8px;}
.contact.section2 form .inquiry_content .btn_submit {background-color:var(--primary); color:#fff; margin:24px auto 0; border: 0;}
.contact.section2 form .inquiry_content .btn_submit:before {background-color:#fff;}
.contact.section2 form .inquiry_content .btn_submit .icon {display:inline-block; vertical-align:middle; width:24px; height:24px; margin-left:8px; background:url(../images/company/icon-send-white.svg) no-repeat 0 50%;}
.contact.section2 form .inquiry_content .btn_submit .icon:before {display: none;}
.contact.section2 form .inquiry_content .btn_submit:hover {border:1px solid var(--primary); color:var(--primary); font-weight: 500; border: 0;}
/* .contact.section2 form .inquiry_content .btn_submit:hover .icon {background:url(../images/company/icon-send-green.svg) no-repeat 0 50%;} */
.contact.section2 form .privacy_link,
.contact.section2 form .btn-reset {color:#fff;}
.contact.section2 form .privacy_link:hover,
.contact.section2 form .btn-reset:hover {transform:translateY(-2px); color:var(--primary);}
.contact.section2 form .privacy_link {text-decoration: underline;}
