@import url(./reset.css);
@import url('/font.css');
/* 초기화 */
:root {
    --transition-basic: .3s;
    --transition-custom: .4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-custom2: 1s ease-in-out;
    --transition-custom3: 1.5s ease;
}

@font-face {
    font-family: "Fjalla One";
    src: url('/fonts/FjallaOne-Regular.ttf');
}


@font-face {
    font-family: 'Pretendard';
    src: url('/fonts/PretendardVariable.woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-variable.ttf');
    font-display: swap;
}


html {
    font-size: 62.5%;
    /* scroll-behavior: smooth; */
    overscroll-behavior: none;
    /* overflow : hidden; */
    overflow-x: hidden;
    word-break: keep-all;
    word-wrap: break-word;
    box-sizing: border-box;

}

body {
    background-color: #191919;
    font-family: 'Pretendard';
    font-size: 1.6rem;
    /* scroll-behavior: smooth; */
    overscroll-behavior: none;
    overflow: hidden;
}

a {
    text-decoration: none;
}

a:hover, a:visited {
    color: inherit;
}

.page-index-wrapper a:hover, a:visited {
    color: #fff;
}

#scroll-container {
    width: 100%;
}

header {
    width: 100%;
    display: block;
    position: fixed;
    background-color: transparent;
    background-color: rgb(255, 255, 255, 0.3);
    z-index: 99999;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
    height: 90px;
    margin: 0 auto;
    width: 95%;
}

@media all and (max-width: 576px) {
    .header-container {
        max-height: 60px;
    }
}

.gnb > ul {
    display: flex;
    align-items: center;
    gap: clamp(12px, 4vw, 90px);
}

.gnb ul li {
    /* padding : 60px; */
}


.gnb > ul > li > a {
    font-weight: 500;
    color: #fff; /* 기본 색 지정 */
    text-decoration: none; /* 밑줄 제거 */
}

.gnb > ul > li > a:link,
.gnb > ul > li > a:visited,
.gnb > ul > li > a:active {
    color: #fff;
    text-decoration: none;
}


@media all and (max-width: 850px) {
    .gnb {
        display: none;
    }

    .m_btn {
        display: block;
        fill: #fff;
        stroke: #fff;
        width: 30px;
        height: 30px;
    }
}


@media all and (min-width: 851px) {
    .m_btn {
        display: none;
    }
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.95);
    box-sizing: border-box;
    transition: right .3s ease;
    z-index: 100000;
}


.mobile-menu ul > li > a:link,
.mobile-menu ul > li > a:visited,
.mobile-menu ul > li > a:active {
    color: #fff;
    text-decoration: none;
}


/* 모바일에서만 보이도록 */
@media all and (max-width: 576px) {
    .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.mobile-menu.open {
    right: 0; /* 화면 안으로 슬라이드 인 */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.6); /* 어둡게 */
    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease;
    z-index: 90000; /* 메뉴보다 아래 */
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.m_menu_close_btn {
    width: 30px;
}

.mobile-menu ul {
    width: 95%;
    margin: 40px auto 0;
}

.mobile-menu ul > li {
    height: 60px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mobile-menu ul > li > a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mobile-menu ul > li:first-child {
    border-top: none;
}


.mobile-menu-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 10px auto 0;

}

/*
.m_menu_logo{

} */


/* main {
  width: 100%;
}

main > section {
  min-height: 100vh;
} */


/*

.page-section {
  min-height: 100vh;
} */

br.mo-only {
    display: none;
}

@media screen and (max-width: 1200px) {
    .lg {
        display: none;
    }
}

@media all and (max-width: 768px) {
    br.mo-only {
        display: block;
    }
}

.section-main {
    background-image: url('/img/bg_section_main.png');
    background-size: cover;
    background-position: center center;
    z-index: 999;
    height: 960px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


.main-contents-wrapper {
    padding: 190px 110px 110px 79px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}


/* .slide-in {

} */

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translate(0);
    }
}


.main-contents-title1 {

    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1px;
    text-transform: uppercase;

    opacity: 0;
    transform: translateX(-20px); /* 왼쪽에서 시작 */
    animation: slideIn 0.8s ease-out forwards; /* 애니메이션 실행 */
}


.main-contents-title2 {
    color: #FFF;
    text-align: right;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 130px */
    letter-spacing: -1px;
    text-transform: uppercase;

    margin-top: 60px;

    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.8s ease-out forwards; /* 애니메이션 실행 */
}

.main-contents-description {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.48px;

    font-family: 'Inter';
}


.section-company-desc {
    background-image: url('./img/bg_section_disc.png');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
    
    /* 이미지가 가로 1920px일 때 세로 비율 유지 - 충분한 높이 확보 */
    /* 배경 이미지가 잘리지 않도록 충분히 큰 높이 설정 */
    /* 1920px 기준으로 이미지 높이를 충분히 확보 */
    min-height: 1344px; /* 1920px * 0.7 = 1344px, 충분한 높이 */
    height: auto;
    overflow: visible;
}


.company-desc-title {
    color: #FFF;
    text-align: right;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    padding-top: 80px;
    margin-bottom: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1700px;
    padding-right: 40px;
    padding-left: 40px;
}

.company-desc-subtitle {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
    text-align: right;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1700px;
    padding-right: 40px;
    padding-left: 40px;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}


.company-desc-contents-group {
    display: flex;
    gap: 80px;
    max-width: 1700px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
    /* 배경 이미지 높이를 확보하기 위해 최소 높이 설정 */
    min-height: 1184px; /* 1344px - 160px (padding) = 1184px */
}

@media all and (max-width: 576px) {
    .company-desc-contents-group {
        flex-direction: column;
        margin-top: 60px;
        gap: 40px;
    }
}

/* 빙산 레이아웃 - 배경 이미지에 맞춰 레이블만 배치 */
.company-desc-iceberg-wrapper {
    flex: 0 0 auto;
    width: 50%;
    max-width: 700px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.iceberg-label {
    color: #FFF;
    font-family: "Fjalla One";
    font-size: 3.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    position: absolute;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

/* 절대 좌표로 빙산 위치에 배치 - 섹션 전체 기준 */
.iceberg-label-surface {
    top: calc(32% - 150px);
    left: calc(18% + 100px);
    transform: translateX(-50%);
    width: auto;
}

.iceberg-label-deep {
    top: calc(50% - 30px);
    left: calc(18% + 100px - 30px);
    transform: translateX(-50%);
    width: auto;
}

/* 통계 정보 레이아웃 */
.company-desc-stats-wrapper {
    flex: 0 0 auto;
    width: 45%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: relative;
    min-height: 700px;
    align-items: flex-start;
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0;
    align-items: flex-start;
}

.stats-text-bold {
    color: #FFF;
    font-family: "Fjalla One";
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
    white-space: nowrap;
    margin: 0;
}

.stats-text-normal {
    color: #FFF;
    font-family: 'Inter';
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
    opacity: 0.9;
    white-space: normal;
    margin: 0;
}

.stats-surface {
    position: absolute;
    top: calc(30% - 50px - 50px);
    left: 100px;
    width: 100%;
}

.stats-deep {
    position: absolute;
    top: calc(48% + 80px);
    left: 100px;
    width: 100%;
}

@media all and (max-width: 1200px) {
    .company-desc-contents-group {
        gap: 50px;
    }
    
    .company-desc-iceberg-wrapper {
        width: 45%;
    }
    
    .company-desc-stats-wrapper {
        width: 50%;
    }
}

@media all and (max-width: 1920px) {
    .section-company-desc {
        min-height: calc(100vw * 0.7);
    }
    
    .section-partners {
        min-height: calc(100vw * 0.7);
    }
}

@media all and (max-width: 768px) {
    .section-company-desc {
        background-size: 100% auto;
        min-height: calc(100vw * 0.7);
        padding: 60px 0 80px;
    }
    
    .company-desc-title {
        font-size: 3.6rem;
        padding: 0 20px;
        text-align: right;
    }
    
    .company-desc-subtitle {
        font-size: 2rem;
        padding: 0 20px;
        margin-bottom: 40px;
        text-align: right;
    }
    
    .company-desc-contents-group {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .company-desc-iceberg-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: 500px;
    }
    
    .iceberg-label {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .iceberg-label-surface {
        top: 35%;
        left: 25%;
    }
    
    .iceberg-label-deep {
        top: 55%;
        left: 25%;
    }
    
    .company-desc-stats-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        position: relative;
    }
    
    .stats-surface {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 40px;
    }
    
    .stats-deep {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 0;
    }
    
    .stats-text-bold {
        font-size: 2rem;
        white-space: normal;
    }
    
    .stats-text-normal {
        font-size: 1.6rem;
        white-space: normal;
    }
}

.company-desc-contents-item-wrapper {
    flex: 1;
    padding: 40px;

    max-width: 548px;
    /* height: 500px; */
    flex-shrink: 0;
    border-radius: 20px;
    border: red;

    background-color: rgba(255, 255, 255, 0.10);
    box-sizing: border-box;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}


.company-desc-contents-item-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}


@media all and (max-width: 576px) {
    .company-desc-contents-item-wrapper {
        margin-left: 3rem;
        margin-right: 3rem;
    }
}

.company-desc-contents-item-svg-wrapper {
    width: 60px;
    height: 60px;
    background-color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.20);
    border: 1px solid #fff;
    border-radius: 999px;

}

.company-desc-contents-item-title {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.56px;
    margin-top: 30px;
}


.company-desc-contents-item-discription {
    color: #FFF;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 26px */
    letter-spacing: -0.4px;

}


@keyframes elasticSlide {
    0% {
        transform: translateX(-160px);
        opacity: 0;
    }
    60% {
        transform: translateX(20px); /* 오른쪽으로 살짝 지나가서 */

    }
    80% {
        transform: translateX(-10px); /* 원래 자리보다 조금 왼쪽 */
    }
    100% {
        transform: translateX(0); /* 최종 자리 */
        opacity: 1;
    }
}


/*
.section-solution {
  width: 90%;
  height: 960px;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}


.solution-text-wrapper {
  position: relative;
  height: 120px;
}


.solution-text {
  color: #FFF;
  text-align: center;
  font-family: "Fjalla One";
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.old-text {
  opacity: 1;
  transform: translate(-50%, 0);
}

.new-text {
  opacity: 0;
  transform: translate(-50%, 40px);
}


.section-solution.scrolled-up .old-text {
  opacity: 0;
  transform: translate(-50%, -40px);
}

.section-solution.scrolled-up .new-text {
  opacity: 1;
  transform: translate(-50%, 0);
}


*/

/*
.section-solution {
  width: 90%;
  height: 960px;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.solution-title {
  position: relative;
  color: #fff;
  font-family: "Fjalla One";
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
}


.left-text,
.right-text,
.new-text {
  display: inline-block;
  transition: transform 1.2s ease, opacity 1s ease;
}


.new-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
}


.solution-title.split .left-text {
  transform: translateX(-220px);
  opacity: 0.5;
}

.solution-title.split .right-text {
  transform: translateX(220px);
  opacity: 0.5;
}

.solution-title.split .new-text {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}





/*



















*/


.section-solution {
    width: 90%;
    height: 960px;
    background-color: #191919;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* 텍스트를 겹쳐 놓기 위한 wrapper */
.solution-text-wrapper {
    position: relative;
    height: 120px;
}

/* 공통 텍스트 스타일 */
.solution-text {
    color: #FFF;
    text-align: center;
    font-family: "Fjalla One";
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

/* 초기 상태 */
.old-text {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* 새 텍스트는 더 아래에서 시작하여 겹치지 않음 */
.new-text {
    opacity: 0;
    transform: translate(-50%, 180px);
    /* 아래에서 자연스럽게 올라오도록 거리 확보 */
}

/* 스크롤 위로 → old는 더 위로, new는 중앙으로 */
.section-solution.scrolled-up .old-text {
    opacity: 0;
    transform: translate(-50%, -180px);
}

.section-solution.scrolled-up .new-text {
    opacity: 1;
    transform: translate(-50%, 0);
}


@media all and (max-width: 576px) {


    .section-solution {
        height: 50vh;
        width: 95%;
    }

    .solution-text-wrapper {
        height: auto;
    }

    .solution-text.old-text {
        line-height: 1.2;
    }

    .solution-text.old-text span {
        display: block; /* ← 줄바꿈 핵심 */
    }

    /* 모바일에서 시작 위치 조정 (선택) */
    .new-text {
        transform: translate(-50%, 220px);
    }

    .section-solution.scrolled-up .old-text {
        transform: translate(-50%, -220px);
    }
}


.section-contact {
    width: 100%;
    height: 960px;
    background-image: url('/img/bg_section_contact.png');
    background-position: center center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 576px) {
    .section-contact {
        height: 60vh;
    }
}

.contact-contents-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    width: 95%;
    padding: 80px 20px;
}

@media all and (max-width: 576px) {
    .contact-contents-wrapper {
        margin-left: 30px;
        margin-right: 30px;
    }
}


.contact-title {
    color: #FFF;
    text-align: center;
    font-family: "Fjalla One", 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 104px */
    letter-spacing: -0.8px;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 60px;
}

.contact-title-highlight {
    color: #0A97CF;
    font-weight: 400;
}

/* 한글 부분의 폰트 웨이트를 영문과 동일하게 맞춤 */
.contact-title {
    font-weight: 400;
}

.contact-title * {
    font-weight: inherit;
}

.contact-discription {
    color: #FFF;

    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;

    margin-top: 40px;
}

.contact-button {
    display: flex;
    width: 200px;
    height: 60px;
    padding: 0 52px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #FFF;
    color: #003477;
    font-size: 16px;
    font-weight: 500;
    font-family: Inter;
    cursor: pointer;
    border: none;

    margin-top: 60px;

    /* 애니메이션 효과 추가 */
    transition: all 0.5s ease; /* 크기, 색상 변화를 부드럽게 */
}

.contact-button:hover {
    transform: scale(1.2); /* 버튼 확대 */
    background-color: #003477; /* 배경색 변경 */
    color: #FFF; /* 텍스트 색상 변경 */
}

@media all and (max-width: 576px) {
    .contact-discription {
        margin-top: 20px;
    }

    .contact-button {
        width: 150px;
        height: 50px;
        margin-top: 30px;
    }
}

.contact-cards-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.contact-card-number {
    font-size: 60px;
    font-weight: 400;
    background: linear-gradient(to bottom, #FFFFFF, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Fjalla One";
    margin-bottom: 20px;
    line-height: 100%;
    letter-spacing: -0.6px;
}

.contact-card-title {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Pretendard';
    margin-bottom: 25px;
    line-height: 1.4;
}

.contact-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.contact-card-list li {
    color: #FFF;
    font-size: 16px;
    font-family: 'Pretendard';
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.contact-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 16px;
    height: 16px;
    background-image: url('/img/check.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.contact-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.contact-card-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 5px;
    color: #FFF;
    font-size: 14px;
    font-family: 'Pretendard';
    font-weight: 500;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media all and (max-width: 1200px) {
    .contact-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
        width: 100%;
    }
}

@media all and (max-width: 576px) {
    .contact-contents-wrapper {
        padding: 40px 15px;
    }
    
    .contact-title {
        margin-bottom: 40px;
        font-size: 36px;
    }
    
    .contact-card {
        padding: 30px 20px;
        min-width: 100%;
    }
    
    .contact-card-number {
        font-size: 36px;
        line-height: 100%;
        letter-spacing: -0.36px;
        background: linear-gradient(to bottom, #FFFFFF, rgba(255, 255, 255, 0.5));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .contact-card-title {
        font-size: 18px;
    }
    
    .contact-card-list li {
        font-size: 14px;
    }
    
    .contact-card-buttons {
        gap: 10px;
    }
    
    .contact-card-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}


.section-service {
    display: flex;
    box-sizing: border-box;
    padding: 0 90px;
    justify-content: space-between;
    align-items: center;
    height: 960px;
    background-image: url('./img/bg_section_service.png');
    background-position: center center;
    background-size: cover;
}


@media all and (max-width: 768px) {
    .section-service {
        flex-direction: column;
        align-items: center;

    }
}


.service-title {
    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 104px */
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.service-discription {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;
}

.service-contents-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item-group {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.40);
    border-right: 1px solid rgba(255, 255, 255, 0.40);
    height: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
    flex: 1;
    max-width: 980px;
}


@media all and (max-width: 768px) {
    .service-item-group {
        width: 100%;
        border-left: none;
        border-right: none;
    }
}

.service-item-wrapper {
    height: 260px;
    border-top: 1px solid rgba(255, 255, 255, 0.40);
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}


@media all and (max-width: 576px) {
    .service-item-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}


.service-item-title-wrapper {
    display: flex;
    gap: 10px;
}

.service-item-title-img {
    width: 35px;
    height: 39px;
    aspect-ratio: 35/39;
}

@media all and (max-width: 576px) {
    .service-item-title-img {
        width: 24px;
        height: 24px;
        aspect-ratio: 1;
    }
}

.service-item-title-text {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;
}

/*
@media all and (max-width : 576px) {
   .service-item-title-text{
      line-height: 1.4em;
      height: 1.4em;
   }
} */

/* .service-item-amount{
   color: #FFFDFD;
   font-family: "Fjalla One";
   font-style: normal;
   font-weight: 400;
   line-height: normal;
}

*/
.service-item-amount span {
    color: #0A97CF;
    text-align: right;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.service-item-amount {
    color: #FFFDFD;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.section-partners {
    padding: 80px 0;
    background-image: url(/img/bg-section-partner.png);
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    box-sizing: border-box;
    
    /* section-company-desc와 동일한 세로 비율 */
    min-height: 1344px; /* 1920px * 0.7 = 1344px */
    height: auto;
    overflow: visible;
}

@media all and (max-width: 576px) {
    .section-partners {
        min-height: calc(100vw * 0.7);
        padding: 60px 0 80px;
    }
}

.partners-title {
    color: #FFF;
    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

@media all and (max-width: 768px) {
    .partners-title {
    }
}

.partners-description {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;

    margin-top: 40px;

    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.text-inquiry {
    color: #003477;
    font-family: 'Pretendard';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}


.btn-inquiry {
    display: flex;
    position: relative; /* 추가: ::after 위치 기준 */
    width: 116px;
    height: 40px;
    padding: 11px 23px 10px 24px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    border-radius: 50px;
    background-color: #FFF;
    color: #003477;
    border: none;
    transition: all 0.5s ease; /* 크기, 색상 변화를 부드럽게 */
    cursor: pointer;
}

.btn-inquiry::after {
    content: "";
    position: absolute;
    right: 20px; /* 버튼 내부에서 오른쪽 여백 지정 */
    top: 50%; /* 수직 중앙 */
    transform: translateY(-50%); /* 정확히 중앙 정렬 */
    width: 12px;
    height: 13px;

    background-color: #003477;

    mask-image: url('/img/inquery_arrow.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: background-color 1s ease;

}

.btn-inquiry:hover {
    transform: scale(1.2);
    background-color: #003477;
    color: #fff;
}

/* hover 시 화살표 색 변경 */
.btn-inquiry:hover::after {
    background-color: #FFF;
}


/* .btn-inquiry{
   display: flex;
   width: 116px;
   height: 40px;
   padding: 11px 23px 10px 24px;
   justify-content: center;
   align-items: center;
   gap : 10px;

   border-radius: 50px;
   background-color: #FFF;
   color: #003477;
   border : none;
   transition: all 0.5s ease;

}

.btn-inquiry::after{
  content: "";
  position: absolute;
  right: 50px;
  width: 16px;
  height: 16px;

  background-color: #003477;

  mask-image: url('/img/inquery_arrow.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 1s ease;
}


.btn-inquiry:hover {
    transform: scale(1.2);
    background-color: #003477;
    color : #fff;
}


.btn-inquiry:hover::after {
  background-color: #FFF;
} */


@media all and (max-width: 850px) {
    .btn-inquiry {
        display: none;
    }
}

.site-footer {
    color: #fff;
    background-color: #191919;
    border-top: 1px solid rgb(255, 255, 255, 0.3);
    padding: 100px 0;
}

.site-footer .footer-container {
    width: 95%;
    max-width: 1700px;
    margin: 0 auto;
}

.footer-company-name {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
}

.footer-first-wrapper {
    display: flex;
    box-sizing: border-box;
    padding-bottom: 64px;
    justify-content: space-between;
    border-bottom: 1px solid rgb(255, 255, 255, 0.4);
}

@media all and (max-width: 768px) {
    .footer-first-wrapper {
    }
}

.footer-second-wrapper {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.footer-company-name-wrapper {
    display: flex;
    gap: 20px;
    padding-top: 29px;
    box-sizing: border-box;
}

.footer-company-info-wrapper {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 60%;
    margin-left: 0;
    padding-left: 0;
}

.footer-company-address {
    color: rgb(255, 255, 255, 0.5);
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
}

.footer-arrow-img-container {
    width: 116px;
    height: 116px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0A97CF;
    border-radius: 999px;
    box-shadow: none;

    /* 애니메이션으로 자연스럽게 나타나도록 설정 */
    transition: box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.footer-arrow-img-container:hover {
    /* hover 시 그림자 적용 */
    box-shadow: 0 0 25px rgba(10, 151, 207, 0.45),
    0 0 60px rgba(10, 151, 207, 0.25);
}


@media all and (max-width: 576px) {
    .footer-arrow-img-container {
        width: 70px;
        height: 70px;
    }
}


.site-header {
    background-color: #191919;
    color: #fff;
    padding: 20px;
    text-align: center;
}


.footer-company-moto {
    color: #0A97CF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;
    text-transform: uppercase;
    margin-top: 40px;
}

.footer-logo-img {
    max-width: 404px;
    width: 100%;
    height: auto;
}

.footer-inquiry-text {
    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-left: 0;
    padding-left: 0;
}

@media all and (max-width: 768px) {
    .footer-logo-img {
        width: 150px;
    }
}

.footer-arrow-img {
    width: 100%;
    max-width: 116px;
    height: auto;
    cursor: pointer;
}

@media all and (max-width: 576px) {
    .footer-arrow-img {
        width: 20px;
        height: 20px;
    }
}

.section-sub-banner {
    width: 100%;
    height: 100vh;
    background-image: url('./img/bg_section_sub_banner.png');
    background-position: top center;
    background-size: cover;

    display: flex;
    align-items: center;
}


.sub-banner-wrapper {
    padding-left: 110px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sub-banner-title {
    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 130px */
    letter-spacing: -1px;
    text-transform: uppercase;
}

.sub-banner-path {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    letter-spacing: -0.32px;
}

@media all and (max-width: 576px) {
    .sub-banner-title,
    .sub-banner-path {
        text-align: center;
    }
}


@media all and (max-width: 576px) {
    .section-sub-banner {
        display: flex;
        height: 50vh;
        align-items: center;
        justify-content: center;
    }

    .sub-banner-wrapper {
        padding-left: 0;
    }
}


.section-digital-world {
    width: 100%;
    height: 100vh;
    background-image: url('/img/bg_digital_world.png');
    background-position: center center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}


@media all and (max-width: 768px) {
    .section-digital-world {
    }
}


.section-mission {
    width: 100%;
    height: 100vh;

    background-image: url('/img/bg_mission.png');
    background-position: center center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media all and (max-width: 576px) {
    .section-mission {
    }
}


.our-mission-text {
    color: #FFF;
    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1px;
    text-transform: uppercase;

    margin-bottom: 80px;
}

.section-to-this-end {
    width: 100%;
    height: 100vh;

    background-image: url('/img/bg_to_this_end.png');
    background-position: center center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}


@media all and (max-width: 576px) {
    .section-to-this-end {
    }
}

.section-leverage {
    width: 100%;
    height: 100vh;

    background-image: url('/img/bg_leverage.png');
    background-position: center center;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
}


@media all and (max-width: 576px) {
    .section-leverage {
    }
}


.company-introduce-text {
    color: #FFF;

    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 104px */
    letter-spacing: -1.6px;
    text-transform: uppercase;

}

.neon-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -1px;
    text-transform: uppercase;

    text-shadow: 0 0 20px rgba(239, 255, 22, 0.6),
    0 0 30px rgba(239, 255, 22, 0.4);

    /* 애니메이션 적용 */
    animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(239, 255, 22, 0.2),
        0 0 20px rgba(239, 255, 22, 0.1);
    }
    50% {
        text-shadow: 0 0 25px rgba(239, 255, 22, 0.8),
        0 0 40px rgba(239, 255, 22, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(239, 255, 22, 0.4),
        0 0 30px rgba(239, 255, 22, 0.3);
    }
}

.section-history {
    margin-top: 200px;
    max-width: 1400px;
    width: 95%;
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 80px;
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-history > .company-introduce-text {
    flex-shrink: 0;
    margin: 0;
    text-align: left;
    padding-left: 0;
}

@media all and (max-width: 576px) {
    .section-history {
        flex-direction: column;
        gap: 50px;
        padding-left: 30px;
        padding-right: 30px;

        margin-top: 60px;
    }
}


.now-year-text {
    color: #0A97CF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -3.4px;
    text-transform: uppercase;
    width: 200px;
}

.year-text {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -3.4px;
    text-transform: uppercase;
    width: 200px;
}

@media all and (max-width: 576px) {
    .now-year-text {
        width: 10rem;
    }

    .year-text {
        width: 10rem;
    }
}

.achievements-by-year-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media all and (max-width: 576px) {
    .achievements-by-year-wrapper {
        gap: 0;
    }
}

.achievements-info-wrapper {
    padding-left: 40px;
    padding-bottom: 120px;
    border-left: 1px solid #fff;
    position: relative;
    flex: 1;
}

@media all and (max-width: 576px) {
    .achievements-info-wrapper {
        padding-left: auto;
        padding-bottom: 50px;
    }
}


.key-achievements-text {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 36.4px */
    letter-spacing: -0.56px;
}

.primary-achievements-text {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.48px;
}

.other-achievements-text {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.48px;
    opacity: 0.5;
}

.achievement-item {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.achievement-month {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.02em;
    min-width: 50px;
    flex-shrink: 0;
}

.achievement-content {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.02em;
    opacity: 0.5;
    flex: 1;
}

@media all and (max-width: 768px) {
    .primary-achievements-text,
    .other-achievements-text {
        display: none;
    }
}


.eclipse-company-history {
    position: absolute;
    left: 0;
    /* top : 0; */
    top: 0.04rem;
    transform: translateX(-50%);
}

.section-patents {
    max-width: 1700px;
    width: 90%;
    margin: 140px auto 140px auto;
}

@media all and (max-width: 768px) {
    .section-patents {
        margin: 60px auto;
    }
}

.patent-img {
    display: flex;
    flex-direction: column;
}

.patents-group {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 140px;
    justify-content: space-between;
    gap: 10px;
}


/* @media all and (max-width : 576px) {
    .patents-group{
         width: 100%;
         display: grid;
         grid-template-columns: 1fr 1fr;
    }
} */


@media all and (max-width: 768px) {
    .patents-group {
        margin-bottom: 60px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        box-sizing: border-box;
    }
}


.patent-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/* @media all and (max-width: 576px) {
    .patent-item-wrapper{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
} */


.patent-item-img {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 10px;
    aspect-ratio: 260/360;

}

.patent-text {
    color: #FFF;

    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.4px;
}

.tech-proof-title {
    color: #FFF;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.52px;
    text-transform: uppercase;

    margin-bottom: 50px;
}

.text-proof-description {
    color: #FFF;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
    margin-bottom: 80px;
}

.patent-table-wrapper {
    width: 100%;
}

.patent-list {
    width: 100%;
    border-collapse: collapse;
}

.patent-list tr {
    /* height: 90px; */
}

.patent-list tr > th {
    color: #FFF;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.4px;
    border-bottom: 2px solid #fff;
    text-align: center;
    vertical-align: middle;
    padding: 20px 0;
}


.patent-list tr > td {
    padding: 10px 0;
    color: #FFF;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;

    border-bottom: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
}

.patent-list tr td.text-left {
    text-align: left;
}


.patent-list tr:last-child > td {
    border-bottom: none;
}


@media all and (max-width: 576px) {
    .patent-table-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .patent-list {
        width: 100%;
    }


    .patent-list tr > th:first-child,
    .patent-list tr > td:first-child {
        min-width: 100px;
    }

    .patent-list tr > th:nth-child(3),
    .patent-list tr > th:nth-child(4),
    .patent-list tr > th:nth-child(5),
    .patent-list tr > td:nth-child(3),
    .patent-list tr > td:nth-child(4),
    .patent-list tr > td:nth-child(5) {
        display: none;
    }

    .patent-list tbody {
        display: table-cell;
        width: 100%;
    }

    .patent-list tr {
        display: flex;
        width: 100%;
    }

    .patent-list tr > th:nth-child(1),
    .patent-list tr > td:nth-child(1) {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .patent-list tr > th:nth-child(2),
    .patent-list tr > td:nth-child(2) {
        width: calc(100% - 100px);
    }
}

.patent-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.patent-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #00a2ff;
    border-radius: 10px;
}

.patent-table-wrapper::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 10px;
}


.section-product-info {
    padding-bottom: 100px;
}


.product-vertical-line {
    border-left: 2px solid #fff;
    height: 150px;
}


@media all and (max-width: 576px) {
    .product-vertical-line {
        height: 40px;
    }
}

.product-description-wrapper {
    max-width: 1336px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-description-text {
    color: #5E5E5E;
    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 88.4px */
    letter-spacing: -1.36px

}

.product-abstract {
    display: flex;
    flex-direction: column;
    align-items: center;


}


.track-wrapper-ltr {
    overflow: hidden;
    width: 100%;
    background-color: transparent;

    margin-top: 20px;
}

.track-wrapper-rtl {
    overflow: hidden;
    width: 100%;
    background-color: transparent;

    margin-top: 84px;

}

.track {
    display: flex;
    width: max-content;
    gap: 28px;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 262px;
    height: 130px;
    padding: 20px;

    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.10);

    box-sizing: border-box;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 🔥 핵심 */
}

@media all and (max-width: 576px) {
    .card {
        width: 130px;
        height: 65px;
        padding: 10px;
    }

    .track {
        gap: 14px;
    }
}

.track.rtl {
    animation: slide-rtl 30s linear infinite;
}

@keyframes slide-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.track.ltr {
    animation: slide-ltr 30s linear infinite;
}

@keyframes slide-ltr {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/* .what-is-olpemi-text{
   color: #FFF;

   text-align: center;
   font-family: "Fjalla One";
   font-style: normal;
   font-weight: 400;
   line-height: 130%;
   letter-spacing: -2px;
   text-transform: uppercase;
} */

.what-is-olpemi-text {
    text-align: center;
    font-family: "Fjalla One";
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.text-line {
    display: inline-block;
    font-family: "Fjalla One";

    background: linear-gradient(
            90deg,
            #fff 50%,
            #595959 50%
    );
    background-size: 200% 100%;
    background-position: 100% 0;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: none;
}

/* Intersection Observer로 visible 됐을 때 실행 */
.animate-target.is-visible .line-1 {
    animation: textFill 3s ease forwards;
}

.animate-target.is-visible .line-2 {
    animation: textFill 3s ease forwards;
    animation-delay: 3s;
}

.animate-target.is-visible .line-3 {
    animation: textFill 3s ease forwards;
    animation-delay: 6s;
}

.animate-target.is-visible .line-4 {
    animation: textFill 3s ease forwards;
    animation-delay: 9s;
}


.animate-target.is-visible .line-5 {
    animation: textFill 3s ease forwards;
    animation-delay: 12s;
}

.animate-target.is-visible .line-6 {
    animation: textFill 3s ease forwards;
    animation-delay: 15s;
}


/* 애니메이션 */
@keyframes textFill {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0% 0;
    }
}


.product-abstract-wrapper {
    margin-top: 239px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media all and (max-width: 576px) {
    .product-abstract-wrapper {
        margin-top: 80px;
        gap: 20px;
    }
}

.product-features-wrapper {
    margin: 200px auto 0 auto;
    width: 95%;
    box-sizing: border-box;
    max-width: 1700px;
}

@media all and (max-width: 768px) {
    .product-features-wrapper {
        margin: 50px auto 0;
    }
}

.feature-item-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1/0.5;

    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    margin-top: 50px;


    transform: scale(0);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    transform-origin: center center;
}


.feature-item-container.show {
    transform: scale(1);
    opacity: 1;
}

.feature-img-1 {
    background-image: url("/img/feature_1.png");
    background-position: center center;
    background-size: cover;
}

.feature-img-2 {
    background-image: url("/img/feature_2.png");
    background-position: center center;
    background-size: cover;
}

.feature-img-3 {
    background-image: url("/img/feature_3.png");
    background-position: center center;
    background-size: cover;
}


@media all and (max-width: 576px) {
    .feature-item-container {
        aspect-ratio: 1;
    }
}


.feature-title-wrapper {
    position: absolute;
    top: 10%;
    left: 5%;
}

.feature-description-text {
    position: absolute;
    bottom: 10%;
    right: 5%;

    color: #FFF;

    text-align: right;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 42px */
    letter-spacing: -0.56px;
}

.feature-banner-text {
    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

@media all and (max-width: 1024px) {

    .feature-item-container {
        aspect-ratio: auto;
        padding: 30px 15px;
        display: flex;
        flex-direction: column;
        gap: 30px 0;
        margin-top: 30px;
    }

    .feature-title-wrapper {
        position: unset;
    }

    .feature-description-text {
        position: unset;
    }
}

@media all and (max-width: 576px) {
    .feature-banner-text {
        font-size: 2.2rem;
        max-width: 95%;
    }

    .feature-title-wrapper img {
        display: none;
    }

    .feature-banner-text br {
        display: none;
    }
}

@media all and (max-width: 576px) {
    .feature-description-text {
        bottom: 10%;
        left: 5%;
        text-align: left;
        font-size: 1.6rem;
    }

    .feature-description-text br {
        display: none;
    }
}


.product-description-img-container {
    margin-top: 200px;
    width: 100%;
    aspect-ratio: 1/0.5;
}

@media all and (max-width: 576px) {
    .product-description-img-container {
        display: none;
    }
}

.product-description-img-container img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.30);
}


.trial-button {
    width: 323px;
    height: 60px;
    font-weight: 500;
    font-family: Inter;
    letter-spacing: -0.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #003477;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border: none;
    cursor: pointer;

    /* background-image: url('/img/inquery_arrow.svg');
    background-repeat: no-repeat;
    background-position: right 40px center; */

    margin-top: 60px;
    transition: color 1s ease;
}


@media all and (max-width: 576px) {
    .trial-button {
        width: 50%;
        aspect-ratio: 2/1;
        height: auto;
    }
}

/* 프로그레시브 바 */
.trial-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0A97CF;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s ease;
    z-index: 0;
}

/* hover 시 */
.trial-button:hover::before {
    transform: scaleX(1);
}

.trial-button:hover {
    color: #FFF;
}

/* 텍스트를 위로 */
.trial-button span {
    position: relative;
    z-index: 1;
}

/* .trial-button span {
  display: inline-flex;
  gap: 4px;
} */

/* 기본(PC)에서는 한 줄 */
.mobile-break {
    display: inline;
    font-style: normal;
}


.trial-button::after {
    content: "";
    position: absolute;
    right: 40px;
    width: 16px;
    height: 16px;

    background-color: #003477;

    mask-image: url('/img/inquery_arrow.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    transition: background-color 1s ease;
    z-index: 1;
}


/* hover 시 화살표 색 변경 */
.trial-button:hover::after {
    background-color: #FFF;
}

/* 모바일에서만 줄바꿈 */
@media all and (max-width: 576px) {
    .trial-button span {
        flex-direction: column;
        line-height: 1.2;
    }

    .mobile-break {
        display: block;
    }

    /* 프로그레시브 바 제거 */
    .trial-button::before {
        display: none;
    }

    /* hover 색상 무효화 */
    .trial-button:hover {
        color: #003477;
    }

    /* 화살표 색상 고정 */
    .trial-button::after {
        right: 12px;
        background-color: #003477;
    }

    /* hover 시 화살표 변화도 무효화 */
    .trial-button:hover::after {
        background-color: #003477;
    }

    /* hover transition 자체 제거 (선택) */
    .trial-button {
        transition: none;
        padding-right: 18px;
    }
}


.section-create-trial {
    background-image: url(/img/bg_section_create.png);
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 960px;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 576px) {
    .section-create-trial {
        height: auto;
        padding: 80px 0;
    }
}

.create-create-trial-contents-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.create-trial-title {
    color: #FFF;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-align: center;
}

.create-trial-title span {
    color: #0A97CF;
    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 104px */
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.create-trial-description {
    color: #FFF;

    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;

    margin-top: 40px;
}

.section-product-line {
    padding-top: 140px;
    padding-bottom: 300px;
}

.product-line-title {
    color: #FFF;

    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 104px */
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.product-line-description {
    color: #FFF;

    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: -0.48px;
    max-width: 1700px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.product-line-wrapper {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1700px;

    align-items: stretch;
}

@media all and (max-width: 1024px) {
    .product-line-wrapper {
        flex-wrap: wrap;
    }

    .product-line-wrapper .product-item-card_container {
        width: calc(50% - 14px);
        flex: none;
    }
}

.product-item-card_container {
    flex: 1;
}

.product-item-card {
    border-radius: 10px;
    background-color: #0A97CF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #0A97CF;
}


.product-item-name {
    color: #FFF;

    text-align: center;
    font-family: "Fjalla One";
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 46.8px */
    letter-spacing: -0.72px;

    margin-top: 50px;
    /* font-size : 36px; */
}

.product-item-description {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.36px;
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 18px;
}


.product-item-function {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;

    margin-top: 20px;
    font-size: 16px;
}

.product-item-img {
    max-width: 40%;
    margin-top: 40px;
}


@media all and (max-width: 768px) {
    .product-line-description br {
        display: none;
    }

    .section-product-line {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .product-line-wrapper {
        flex-direction: column;
        margin-top: 40px;
    }

    .product-line-wrapper .product-item-card_container {
        width: 100%;

    }

    .product-line-title {
        font-size: 38px !important;
    }

    .product-item-name {
        font-size: 32px !important;
    }

    .product-item-function {
        font-size: 18px !important;
    }

    .product-item-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 10px;
    }

    .product-item-img {
        max-height: 88px;
        margin-top: 20px;
    }

    .product-item-description {
        font-size: 1.6rem;
    }
}


/* @media all and (max-width : 567px) {
  .product-item-description{
   font-size : 2cqw;
   margin-bottom : 20px;
  }
} */


/* 도입 사례 검색  */

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 8px 12px;
    border-radius: 8px;
    width: 548px;
    height: 60px;

    border-radius: 999px;

    margin-left: auto;
    margin-bottom: 120px;
    box-sizing: border-box;


    position: relative;

}

@media all and (max-width: 576px) {
    .search-box {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        height: 45px;
    }
}

.search-type {
    width: 120px;
    padding: 8px 30px 8px 10px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    color: #fff;

    background-image: url('/img/polygon.svg');
    background-repeat: no-repeat;
    background-position: right 10px center;
    outline: none;
}

.search-type option {
    color: #000;
}

.search-input {
    flex: 1;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
}

.search-btn-container {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 999px;

    position: absolute;
    right: 10px;
}

.search-btn-img {
    width: 20px;
    height: 20px;
}

.section-case-area {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 140px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    padding-bottom: 140px;
}

.case-list-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3em;
    column-gap: 3em;
    width: 100%;
}

@media all and (max-width: 576px) {
    .case-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .search-btn-container {
        width: 35px;
        height: 35px;
        right: 5px;
    }
}


.case-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
}

.case-img-wrapper {
    aspect-ratio: 548 / 360;
    width: 100%;
    overflow: hidden;
    background-color: #ddd;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.case-item-date {
    font-family: Inter;
    font-weight: 400;
    line-height: 130%;
    color: #fff;
}

.case-item-title {
    font-family: Inter;
    font-weight: 700;
    line-height: 130%;
    color: #fff;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.pagination-container {
    width: 425px;
    height: 45px;

    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    align-self: center;

    margin-top: 80px;
}

.page-move-button {
    padding: 8px 12px;

    background-color: transparent;
    cursor: pointer;
    border: none;
    color: #fff;

}

.page-index-wrapper {
    display: flex;
    gap: 8px;
}


.page-index {
    display: flex; /* Flexbox 모드 켜기 */
    justify-content: center; /* 가로 중앙 */
    align-items: center; /* 세로 중앙 */
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
}

.current-page {
    background-color: #0A97CF;
    color: #fff;
    border: none;
}

.page-move-button.prev {
    margin-right: 8px;
}

.page-move-button.next {
    margin-left: 8px;
}

.section-inquiry {
    width: 95%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 140px;
    display: flex;
    height: auto;
    padding-bottom: 140px;
}


@media all and (max-width: 768px) {
    .section-inquiry {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
    }

    .invitation-text br {
        display: none;
    }

    .inquiry-right-area {
        width: 100%;
        margin-top: 40px;
    }
}

.invitation-text {
    font-family: "Fjalla One";
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    font-style: normal;

    color: #fff;
}


.inquiry-left-area {
    flex: 1;
}

.inquiry-right-area {
    flex: 1;
}


@media all and (max-width: 576px) {
    .inquiry-left-area {
        flex: none;
    }

}


.inquiry-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 100px;

}


.inquiry-contact-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.inquiry-contact-type-wrapper {
    display: flex;
    gap: 8px;
}


.inquiry-contact-type-name {
    font-family: "Fjalla One";
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: -0.8px;
    color: #fff;
}

.inquiry-contact-type-content {
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: -0.8px;
    color: #fff;
}


@media all and (max-width: 576px) {
    .inquiry-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

.inquiry-form-field-wrapper {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    gap: 10px;
}


@media all and (max-width: 576px) {
    .inquiry-form-field-wrapper {
        width: 100%;
        padding-bottom: 0;
    }
}

@media all and (max-width: 576px) {
    .inquiry-form {
        width: 100%;
    }
}

.inquiry-form-label {
    font-family: 'Pretendard';
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.8px;
    color: #fff;
}

.inquiry-form-field {
    font-family: 'Pretendard';
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.8px;
    background-color: transparent;
    border: none;
    color: #fff;
    margin-bottom: 20px;
    padding: 0;
}

.inquiry-form-textarea {
    height: 300px;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    font-family: 'Pretendard';
    border: none;
    resize: none;
}

@media all and (max-width: 768px) {
    .inquiry-form-textarea {
        height: 120px;
    }
}


.inquiry-form-field-wrapper:not(:first-child) {
    margin-top: 50px;
}

@media all and (max-width: 576px) {
    .inquiry-form-field-wrapper:not(:first-child) {
        margin-top: 30px;
    }
}


.inquiry-form-field:focus,
.inquiry-form-textarea:focus {
    outline: none;
}


.inquiry-submit-button {
    width: 260px;
    height: 260px;
    background-color: #0A97CF;
    font-family: "Fjalla One";
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.8px;
    border-radius: 999px;
    margin-top: 80px;
    color: #fff;
    border: none;
    cursor: pointer;

    /* 기본 상태에서는 그림자 없음 */
    box-shadow: none;

    /* 애니메이션으로 자연스럽게 나타나도록 설정 */
    transition: box-shadow 0.3s ease;
}

.inquiry-submit-button:hover {
    /* hover 시 그림자 적용 */
    box-shadow: 0 0 25px rgba(10, 151, 207, 0.45),
    0 0 60px rgba(10, 151, 207, 0.25);
}

@media all and (max-width: 768px) {
    .inquiry-submit-button {
        width: 100px;
        height: 100px;
        margin-top: 60px;
        font-size: 16px !important;
    }
}

.section-notice-area {
    display: flex;
    flex-direction: column;
    max-width: 1700px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 140px 0;
}

@media all and (max-width: 576px) {
    .section-notice-area {
        padding: 80px 0;
    }
}

.notice-item {
    box-sizing: border-box;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    /* height: 120px; */
}

.notice-item > p {
    font-family: 'Pretendard';
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -2%;
    color: #fff;
    background-color: transparent;
}

.notice-item .tit {
    width: calc(100% - 130px);
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-item .date {
    min-width: 130px;
    width: 130px;
    text-align: right;
}

.notice-item:hover {
    background-color: #fff;
}

.notice-item:hover > p {
    color: #000;
}

.section-notice-detail {
    margin-bottom: 80px;
}

.notice-item-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 200px;
    border-top: 1px solid #fff;
    max-width: 1700px;
}

@media all and (max-width: 768px) {
    .notice-item {
        /* height: 80px; */
        padding: 20px 10px;
    }

    .notice-item .tit {
        width: calc(100% - 100px);
    }

    .notice-item .date {
        min-width: 90px;
        width: 90px;
    }
}


@media all and (max-width: 576px) {
    .notice-item-area {
        margin-top: 80px;
    }
}


.notice-item-title {
    font-family: 'Pretendard';
    font-weight: 700;
    line-height: 130%;
    color: #fff;
    margin-top: 60px;
}

.notice-item-content {
    font-weight: 400;
    font-family: 'Pretendard';
    line-height: 150%;
    color: #fff;
    text-align: left;
    min-height: 300px;
    border-top: 1px solid rgb(255, 255, 255, 0.3);
    width: 100%;
    padding-top: 60px;
}

.notice-file-button {
    background-color: #363636;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    gap: 20px;
    align-self: stretch;
    border: none;
    border-radius: 5px;
    font-family: 'Pretendard';
    align-items: center;
    cursor: pointer;
}

.notice-list-date {
    font-family: 'Pretendard';
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -2%;
    color: rgb(255, 255, 255, 0.3);
}

.notice-item-date {
    font-family: 'Pretendard';
    font-weight: 400;
    line-height: 130%;
    margin-top: 20px;
    color: rgb(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.go-to-list-button {
    width: 200px;
    height: 60px;
    border-radius: 5px;
    background-color: #fff;
    font-family: "Fjalla One";
    margin-top: 60px;
    cursor: pointer;
    border: none;

    transition: all 0.5s ease; /* 크기, 색상 변화를 부드럽게 */
}

@media all and (max-width: 576px) {
    .go-to-list-button {
        width: 30%;
        height: auto;
        aspect-ratio: 200 / 60;
    }
}

.go-to-list-button a {
    color: #003477;
}


.go-to-list-button:hover {
    background-color: #003477;
    transform: scale(1.2);

}


.go-to-list-button:hover a {
    color: #fff;
}

.notice-item-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media all and (max-width: 768px) {
    .notice-item-content {
        padding-top: 30px;
    }

    /* 메인 페이지 */
    .main-contents-description {
        margin-top: 10px;
    }

    .section-main {
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-contents-wrapper {
        padding: 0;
        width: 95%;
        margin: 0 auto;
    }

    .company-desc-title {
        padding-top: 80px;
    }

    .company-desc-subtitle {
        margin-top: 20px;
    }

    .company-desc-contents-item-wrapper {
        margin: 0 auto;
        width: 95%;
        padding: 30px 20px;
    }

    .company-desc-contents-item-wrapper .company-desc-contents-item-title br {
        display: none;
    }

    .company-desc-contents-item-svg-wrapper {
        display: none;
    }

    .company-desc-contents-item-title {
        margin-top: 0;
    }

    .section-contact {
        height: auto;
        padding: 80px 0;
    }

    .section-company-desc {
        padding-bottom: 50px;
    }

    .contact-contents-wrapper {
        margin: 0 auto;
        width: 95%;
    }

    .section-service {
        padding: 80px 0;
        height: auto;
    }

    .section-service .service-item-group {
        width: 95%;
        margin: 50px auto 0;
        padding: 0;
    }

    .section-service .service-item-wrapper {
        height: auto;
        flex: none;
        padding: 25px 15px;
    }

    .service-contents-wrapper {
        width: 95%;
        margin: 0 auto;
        gap: 20px;
    }

    .service-contents-wrapper .service-discription br {
        display: none;
    }

    .section-partners {
        height: auto;
        padding: 80px 0;
    }

    .section-partners .partners-description {
        width: 95%;
        margin-top: 20px;
    }

    .section-partners .track-wrapper-rtl {
        margin-top: 40px;
    }

    .site-footer {
        padding: 60px 0;
    }

    .footer-arrow-img-container {
        width: 55px;
        height: 55px;
    }

    .footer-arrow-img-container img {
        max-width: 20px;
    }

    .footer-company-address .m_none {
        display: none;
    }


    /* 서브페이지 */
    .section-sub-banner {
        height: 100vh;
    }

    .section-history {
        height: 100vh;
        margin: 0 auto;
        padding: 0;
        justify-content: center;
    }

    .section-case-area {
        padding: 80px 0;
    }

    .page-index {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .pagination-container {
        margin-top: 40px;
    }

    .notice-item-title {
        margin-top: 30px;
    }

    .notice-item-date {
        margin-bottom: 20px;
    }

    .notice-file-button {
        padding: 15px;
    }

    .product-item-name {
        margin-top: 0;
    }

    .product-item-description {
        margin: 20px 0 0 0;
    }

    .product-item-function {
        margin-top: 10px;
    }

    .text-proof-description {
        margin-bottom: 40px;
    }

    .create-trial-description {
        margin-top: 20px;
    }

    .trial-button {
        margin-top: 30px;
    }

    .inquiry-contact-info-wrapper {
        margin-top: 50px;
    }

    .inquiry-contact-type-wrapper img {
        max-height: 20px;
        max-width: 23px;
    }

}

/* Ele Position */
.ele-up {
    opacity: 0;
    transform: translateY(5.208vw);
    transition: opacity var(--transition-custom3), transform var(--transition-custom3);
}

.ele-delay1 {
    transition-delay: .1s;
}

.ele-delay2 {
    transition-delay: .2s;
}

.ele-delay3 {
    transition-delay: .3s;
}

.ele-delay4 {
    transition-delay: .4s;
}

.ele-delay5 {
    transition-delay: .5s;
}

.ele-delay6 {
    transition-delay: .6s;
}

.ele-delay7 {
    transition-delay: .7s;
}

.ele-delay8 {
    transition-delay: .8s;
}

.ele-delay9 {
    transition-delay: .9s;
}

.ele-delay10 {
    transition-delay: 1s;
}

.ele-delay11 {
    transition-delay: 1.1s;
}

.ele-delay12 {
    transition-delay: 1.2s;
}

.ele-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.company-introduce-text {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 3s, opacity 3s;
}

.on .company-introduce-text {
    transform: translateY(0);
    opacity: 1;
}

.sub-fadeUp {
    overflow: hidden;
}

.sub-fadeUp span {
    display: block;
    transform: translateY(100%);
    animation-name: fadeIn;
    animation-duration: .7s;
    animation-timing-function: ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.sub-fadeUp.delay-1 span {
    animation-delay: .6s;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (max-width: 768px) {
    .company-introduce-text {
        transform: translateY(0);
        opacity: 1;
        transition: none;
    }

}


/* Popup */
#popup {
    position: relative;
    z-index: 999999;
}

.popup-layer {
    z-index: 10000;
    position: absolute;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
    animation: popup-fade .65s ease-in-out .35s forwards;
    opacity: 0;
    max-width:800px;
}

@keyframes popup-fade {
    0% { opacity: 0;
        -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
        transform: translateY(25px); }
    100% { opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); }
}
.popup-layer__body {
    background: #fff;
}

.popup-layer__body img {
    display: block;
    margin: 0 auto;
    border: none;
    max-width: 100%;
}

.popup-layer__foot {
    background: #424242;
}

.popup-layer__foot ul {
    display:flex;
    flex-wrap: wrap;
}

.popup-layer__foot li {
    width:50%;
    padding:10px;
}

.popup-layer__foot li:first-child {
    padding-right:0;
}

.popup-layer__foot li:last-child {
    text-align: right;
}
.popup-layer__foot button {

    background: #424242;
    border: none;
    outline: none;

}

.popup-layer__foot span {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
    /* .popup-layer { z-index: 999; } */
    .popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

    .popup-layer {
        width:calc(100% - 10px);
    }

    .popup-layer img {
        max-width: none;
        width:100%;
        height: auto !important;
    }
    .popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
    .popup-layer-foot li { width: 100%; }
    .popup-layer-foot li:last-child { text-align: left; }
}
