@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

* {
    font-family: Pretendard;
}

/* Mini Swiper */
/* Mini Swiper Banner - Top fixed banner */
.mini-swiper-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #111;
    z-index: 2000;
    display: flex;
    align-items: center;
    color: #fff;
}

.mini-swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.close-banner {
    position: absolute;
    right: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    z-index: 10000;
    top: 10px;
}

/* Header Styles for Desktop */
.header {
    position: fixed;
    top: 60px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    transition: background 0.3s ease;
    box-shadow: none;
    background: #fff !important;
    border-bottom: 1px solid #DBDFE6;
    /* background: linear-gradient(180deg, rgba(21, 21, 21, 0.54) 0%, rgba(21, 21, 21, 0.00) 100%); */
}

.header.mt50 {
    top: 0px;
}

.header {
    background: #fff !important;
}

.header .h_inner {
    max-width: 1520px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-height: 40px;
    min-width: 120px;
    transition: opacity 0.3s;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 20px;
}

.header-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: right;
}

.header-menu > .menu-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap:35px;
}

.header-menu a {
    margin: 0 15px;
    color: #1C1D1F;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    font-size: 17px;
    line-height: 1.5;
}

.header-button {
    color: #fff !important;
    width: 209px;
    height: 49px;
    flex-shrink: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #3182F6 0%, #0052F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.40);
}

/* Dropdown for Submenu with Arrow */
.dropdown {
    position: relative;
}

.dropdown>a {
    white-space: nowrap;
}

.dropdown>a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 5px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5" fill="none"%3E%3Cpath d="M1 1L4 4L7 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat;
    margin-left: 5px;
    vertical-align: middle;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
    border-radius: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    color: var(--gray7, #61646A);
    text-decoration: none;
    font-weight: normal;
    vertical-align: middle;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    margin: 0;
    padding-left: 15px;
} */

/* Icons in Dropdown Menu */
/* .dropdown-menu .menu-icon {
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 0px;
} */

/* Call-to-action Button */
.header-button {
    padding: 10px 20px;
    background-color: #0066ff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 15px;
}

/* Adjusted Spacing */

/* .header-menu .header-login {
    margin-left: 225px;
    margin-right: 20px;
} */

.header-menu .info_btn {
    display: none;
}

.header-menu .info_btn:hover {
    cursor: pointer;
}

.header-menu .info_btn .loginUser {
    margin: 0 15px;
    color: var(--gray7, #61646A);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    line-height: 1.5;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.header.scrolled .hamburger-menu div {
    background-color: #000;
}

.hamburger-menu div {
    width: 25px;
    height: 3px;
    /* background-color: #fff; */
    background-color: #000;
    margin: 5px;
    transition: 0.4s;
}

/* Mobile Menu */
/* .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    flex-direction: column;
    padding-top: 20px;
} */

/* .mobile-menu.active {
    display: flex;
} */

/* Mobile Menu Header */
/* .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 45px;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
} */

/* .mobile-menu a {
    padding: 15px 20px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
} */

/* .manual-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.download-icon {
    margin-left: 5px;
    font-size: 18px;
    color: #333;
} */

/* Call-to-action Button in Mobile Menu */
.mobile-cta-button {
    padding: 15px;
    text-align: center;
    color: #fff !important;
    border-radius: 24.5px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: linear-gradient(90deg, #3182F6 0%, #0052F0 100%);
    font-size: 18px;
    text-decoration: none;
    margin: 20px auto;
    width: 209px;
    height: 49px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 20px 15px;
}

/* Swiper Slider Styles */
.swiper-container {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin-top: 101px;
}

.swiper-container.mt50 {
    margin-top: 0;
}

.swiper-wrapper img {
    /* width: 100%; */
}

/* Swiper Custom Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #000;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-slide img {
    /* width: 100%; */
}

/* Responsive Styles for Mobile */
@media (max-width: 1270px) {

    .main {
        /* margin-top: 40px !important; */
        
    }

    /* Hide mini swiper banner on mobile */
    .mini-swiper-container {
        display: none;
    }

    /* .main{
        margin-top: 20px!important;
    } */

    .header {
        box-sizing: border-box;
        top: 0;

    }

    .swiper-container {
        margin-top: 0;
    }

    .header-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

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

    .swiper-slide:first-child img {
        display: none;
    }

    .swiper-slide:first-child img:last-child {
        display: block !important;
    }
}

p.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #f7f7f7;
    color: #333;
    font-weight: bold;
}

.label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 13px;
}

.label.basic {
    background-color: #e6e6e6;
    color: #666;
}

.label.pro {
    background-color: #d4f8e8;
    color: #1cb78c;
}

.label.premium {
    background-color: #ffe3cc;
    color: #f78e1e;
}

.label.expert {
    background-color: #ffe2e5;
    color: #e63946;
}

.info {
    text-align: center;
    font-size: 12px;
    color: #777;
}

.info a {
    color: #3182f6;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

/* 메인 섹션 */
.bs-main-section {
    text-align: center;
    padding: 60px 20px;
}

.bs-main-title {
    width: 100%;
    margin-bottom: 20px;
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    text-align: left;
}

.bs-main-title span {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--black1, #373C43);
    font-family: 'Pretendard';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.44px;
}

.bs-video-container {
    width: 100%;
}

.bs-stats-container {
    display: flex;
    max-width: 1200px;
    gap: 20px;
    margin: 0 auto;
}

.bs-stat-card:hover {
    background: linear-gradient(260deg, #48A3F4, #3176F3);
    color: #fff;
}

.bs-stat-card:hover strong {
    color: #fff;
}

.bs-stat-card {
    width: 100%;
    color: #333;
    padding: 60px 50px;
    border-radius: 8px;
    font-size: 17px;
    text-align: center;
    font-weight: 400;
    background: #F3F6F9;
}

.bs-stat-card strong {
    color: #3182F6;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
    margin-top: 10px;
    display: block;
}


/* FAQ 섹션 */
.bs-faq-section {
    background-color: #F3F6F9;
    padding: 150px 20px;
    text-align: center;
}

.bs-faq-title {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.bs-faq-container {
    max-width: 1200px;
    /* 최대 너비 설정 */
    margin: 0 auto;
    /* 중앙 정렬 */
    text-align: left;
}

.bs-faq-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    /* 세로 방향으로 배치 */
    align-items: flex-start;
    /* 좌측 정렬 */
}

.client-info {
    display: flex;
    /* 아이콘과 텍스트를 같은 행에 배치 */
    align-items: center;
    /* 수직 정렬 */
    margin-bottom: 10px;
    /* 질문 박스 위 여백 */
}

.client-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 10px;
}

.client-label {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.question-box {
    position: relative;
    display: flex;
    margin-left: 75px;
    justify-content: start;
}

.question-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: -13px;
    border-width: 0px 15px 15px 0px;
    border-style: solid;
    border-color: #fff transparent;
    display: block;
    width: 0;
}

.answer-box::before {
    content: "";
    position: absolute;
    right: 0;
    top: -13px;
    border-width: 0px 0px 15px 15px;
    border-style: solid;
    border-color: #E5F3FF transparent;
    display: block;
    width: 0;
}

.question-box p {
    width: 479px;
    /* 너비 설정 */
    background-color: #ffffff;
    /* 흰색 배경 */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 10px;
    /* A 박스와의 간격 */
    font-weight: 400;
    color: var(--gray7, #61646A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.answer-box {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: right;
    margin-top: 50px;
}

.answer-box p {
    display: flex;
    gap: 10px;
    width: 665px;
    /* 너비 설정 */
    background: #E5F3FF;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    font-weight: 600;
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
}

/* 기능 섹션 */
.bs-features-section {
    padding: 150px 20px;
    text-align: center;
}

.bs-features-title {
    color: var(--black1, #373C43);
    font-size: 28px;
    margin-bottom: 60px;
    font-weight: bold;
}

.bs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bs-feature-item {
    background-color: #F7F7F8;
    padding: 50px 30px 15px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--black1, #373C43);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

.bs-feature-item p {
    margin-top: 25px;
    position: relative;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

.bs-feature-item p:last-child {
    text-align: right;
}

.bs-feature-item p:last-child a {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-icon {
    text-align: left;
}

.bs_top_tit {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

/* 반응형 디자인 */
@media (max-width: 1050px) {
    .bs_top_tit {
        flex-wrap: wrap;
    }

    .bs-video-container iframe {
        width: 100%;
    }

    .bs-video-placeholder {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .bs-main-title {
        font-size: 24px;
        /* 제목 크기 조정 */
    }

    .bs-main-title span {
        font-size: 20px;
        /* 서브 제목 크기 조정 */
    }

    .bs-stats-container {
        flex-direction: column;
        /* 세로 방향으로 변경 */
        align-items: center;
        /* 중앙 정렬 */
    }

    .question-box {
        width: calc(100% - 50px);
    }

    .bs-stat-card {
        width: 90%;
        padding: 50px 0px;
    }

    .bs-faq-container {
        max-width: 100%;
        /* FAQ 최대 너비 조정 */
    }

    .question-box p {
        width: 100%;
        /* 질문 박스 너비 조정 */
        padding: 20px;
        /* 패딩 조정 */
    }

    .answer-box p {
        width: 100%;
        /* 답변 박스 너비 조정 */
        padding: 20px;
        /* 패딩 조정 */
    }

    .bs-features-grid {
        grid-template-columns: 1fr;
        /* 기능 섹션 1열로 변경 */
    }

    .bs-feature-item {
        padding: 20px;
        /* 패딩 조정 */
    }
}

.intro_>div {
    max-width: 1200px;
    margin: 0 auto;
}

.intro_tit {
    padding: 150px 0;
    text-align: left;
}

.intro_tit.center {
    text-align: center;
}

.intro_tit>span {
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.44px;
}

.intro_tit h3 span {
    font-size: 38px;
    font-weight: bold;
    color: var(--blue2, #3182F6);
}

.intro_tit h3 {
    color: #373C43;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    margin: 20px 0;
}

.intro_tit>p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.intro_ul_01 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.intro_ul_01 li {
    padding: 30px 20px;
    width: 100%;
    height: 420px;
    text-align: left;
    box-sizing: border-box;
    background: url('/about/img/intro_ul_01_01.png') no-repeat center / cover;
}

.intro_ul_01 li:nth-child(2) {
    background: url('/about/img/intro_ul_01_02.png') no-repeat center / cover;
}

.intro_ul_01 li:nth-child(3) {
    background: url('/about/img/intro_ul_01_03.png') no-repeat center / cover;
}

.intro_ul_01 li span {
    color: var(--gray8, #424756);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.intro_ul_01 li h4 {
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
}

.intro_ul_01 li p {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.intro_ul_02 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.intro_ul_02 li {
    min-height: 143px;
    width: 33.3%;
    padding: 30px 0;
    border-right: 1px solid #8C939F26;
    border-bottom: 1px solid #8C939F26;
}

.intro_ul_02 li h5 {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
    margin-bottom: 10px;
}

.intro_ul_02 li p {
    color: var(--gray5, #BFC5CF);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .intro_tit {
        padding: 80px 4%;
        /* Adjust padding for mobile */
    }

    .intro_tit h3,
    .intro_tit h3 span {
        font-size: 28px;
        /* Adjust font size for mobile */

    }

    .intro_tit h3 br,
    .intro_tit>p br {
        display: none;
        word-break: keep-all;
    }

    .intro_tit>p {
        font-size: 18px;
        /* Adjust font size for mobile */
        word-break: keep-all;
        word-break: keep-all;
    }

    .intro_ul_01 {
        flex-direction: column;
        /* Stack items vertically */
        gap: 20px;
    }

    .intro_ul_01 li {
        height: 385px;
        /* Allow height to adjust based on content */
        border-radius: 15px;
    }

    .intro_ul_02 li {
        width: 100%;
        /* Full width on mobile */
        border-right: none;
        /* Remove right border */
    }

    .intro_ul_02 li:nth-child(5) {
        display: none;
    }

    .intro_ul_02 li:nth-child(4) {
        border-bottom: 1px solid #8C939F26 !important;
    }
}

@media (max-width: 480px) {
    .intro_tit h3 {
        font-size: 24px;
        /* Further adjust font size for smaller screens */
    }

    .intro_tit>p {
        font-size: 16px;
        /* Further adjust font size for smaller screens */
    }

    .intro_ul_01 li span {
        font-size: 16px;
        /* Adjust span font size */
    }

    .intro_ul_01 li h4 {
        font-size: 22px;
        /* Adjust h4 font size */
    }

    .intro_ul_01 li p {
        font-size: 16px;
        /* Adjust p font size */
    }

    .intro_ul_02 li h5 {
        font-size: 22px;
        /* Adjust h5 font size */
    }

    .intro_ul_02 li p {
        font-size: 16px;
        /* Adjust p font size */
    }
}

.a_box {
    display: none;
    /* 초기에는 A 박스 숨김 */
}

.q_box {
    position: relative;
    /* 절대 위치 설정을 위한 상대 위치 설정 */
    cursor: pointer;
    /* 클릭 가능하도록 커서 변경 */
    margin-bottom: 5px;
    /* 각 질문 박스 간 간격 설정 */
}

.q_box::after {
    content: '';
    position: absolute;
    right: 10px;
    /* 오른쪽에 위치 */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    /* 초기 상태 */
    transition: transform 0.3s;
    /* 애니메이션 효과 */
    width: 16px;
    /* 아이콘 너비 */
    height: 9px;
    /* 아이콘 높이 */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 8L8 1L15 8" stroke="%238C939F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    /* SVG 이미지 삽입 */
    background-size: contain;
    /* 아이콘 크기 조정 */
    background-repeat: no-repeat;
    /* 반복 방지 */
}

.q_box.open::after {
    transform: translateY(-50%) rotate(180deg);
    /* 클릭 시 아이콘 회전 */
}



.pack_ {
    background: url('/about/img/pack_top_bg.png')no-repeat center / cover;
    margin-top: 0 !important;
    padding-top: 176px !important;
}

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

.pack_ .wrap .txt {
    padding: 130px 0;
}

.pack_ .wrap .txt h2 {
    color: var(--black1, #373C43);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.pack_ .wrap .txt p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin: 40px 0;
    color: var(--gray7, #61646A);
}

.pack_ .wrap .txt .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 49px;
    background: var(--blue2, #3182F6);
    border-radius: 6px;
}

.pack_ .wrap .txt .btn:hover {
    background: #1A69D9;
}

.pack_ .wrap .txt .btn a {
    text-decoration: none;
    color: #fff;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 0 0;
}

.menual_guide .tit p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.52px;
    margin: 10px 0 40px 0;
}

/* 상단 메뉴 스타일 */
.top-menu {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.top-menu-item {
    padding: 14px 20px;
    text-align: center;
    color: #555;
    cursor: pointer;
    border-radius: 28px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    /* 그림자에 대한 전환 추가 */
    position: relative;
    /* 절대 위치 설정을 위한 상대 위치 설정 */
    overflow: hidden;
    /* 내부 요소가 경계에서 넘치지 않도록 설정 */
}

.top-menu-item a {
    color: var(--black1, #373C43);
    font-size: 20px;
    transition: color 0.3s ease;
    /* 링크 색상 변화에 대한 전환 추가 */
}

.top-menu-item.act {
    background: rgba(49, 130, 246, 0.15);
}

.top-menu-item.act a {
    color: #3182F6;
}

.top-menu-item:hover {
    background: rgba(49, 130, 246, 0.25);
    /* 배경 색상 강조 */
    color: #3182F6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* 부드러운 그림자 추가 */
}

.top-menu-item:hover a {
    color: #3182F6;
}

/* 추가적인 스타일을 위한 후크 */
.top-menu-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300%;
    /* 넓은 효과 */
    height: 300%;
    /* 넓은 효과 */
    background: rgba(49, 130, 246, 0.2);
    /* 약한 배경 효과 */
    transition: transform 0.3s ease;
    /* 변환 효과 추가 */
    border-radius: 50%;
    /* 원형으로 만들기 */
    z-index: 0;
    /* 뒤로 보내기 */
    transform: translate(-50%, -50%) scale(0);
    /* 초기 상태에서 숨기기 */
}

.top-menu-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
    /* 호버 시 확대 효과 */
}

.top-menu-item a {
    position: relative;
    /* 링크를 상대적으로 위치 */
    z-index: 1;
    /* 글자를 앞으로 */
}


/* 하단 메뉴 스타일 */
.bottom-menu {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.bottom-menu-item {
    flex: 1;
    /* 동일한 너비로 나누기 */
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
    transition: border-bottom 0.3s;
    box-sizing: border-box;
}

.bottom-menu-item {
    position: relative;
    /* 자식 요소의 절대 위치 설정을 위한 상대 위치 */
    padding-bottom: 15px;
    /* 아래쪽 패딩 추가 */
    transition: color 0.3s ease;
    /* 색상 변화에 애니메이션 추가 */
}

.bottom-menu-item:hover,
.bottom-menu-item.active {
    color: #3182F6;
    /* 호버 또는 활성 상태에서 글자 색상 변경 */
}

.bottom-menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* 요소의 하단에 위치 */
    height: 3px;
    /* 선의 두께 */
    background-color: #3182F6;
    /* 선의 색상 */
    transform: scaleX(0);
    /* 초기 상태에서 선 크기를 0으로 설정 */
    transition: transform 0.3s ease;
    /* 선의 크기 변화에 애니메이션 추가 */
}

.bottom-menu-item:hover::after,
.bottom-menu-item.active::after {
    transform: scaleX(1);
    /* 호버 또는 활성 상태에서 선 크기를 1로 변경 */
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.center {
    text-align: center;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

.section .bg-blue {
    background: #F3F6F9;
}

.section h3 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.section .b_p {
    font-size: 26px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.52px;
    margin: 0 !important;
}

.section>div>.inner>p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-top: 10px !important;
}

.section p {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.section .ul_01 {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 940px;
    margin: 0 auto;
}

.section .ul_01 li {
    width: 100%;
    padding: 30px;
    background: #fff;
}

.section .ul_01.case03 {
    flex-wrap: wrap;
}

.section .ul_01.case03 li {
    width: calc(33.3% - 7px);
    border-radius: 10px;
}

.section .ul_01 li h4 {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.44px;
    margin: 20px 0;
}

.section .ul_01 li h4 span {
    color: #3182F6;
    font-weight: bold;
}

.change li h4 {
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 131.579% */
    letter-spacing: -0.76px;
}

.change li p {
    margin: 40px 0px 40px 0px;
    color: #424756;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.change {
    display: flex;
}

.change li {
    flex: 1;
}

.change li .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.change li .btns>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    height: 49px;
    border-radius: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    border: 1px solid var(--gray3, #DEDEE5);
}

.change li .btns>div.act {
    background: var(--blue2, #3182F6);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
    color: #fff;
}

.change li .btns>div:hover {
    background: var(--blue2, #3182F6);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
    color: #fff;
}

.flex_txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_txt h4 {
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 131.579% */
    letter-spacing: -0.76px;
}

.flex_txt p {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.flex_txt02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.flex_txt02 li {
    flex: 1;
}

.flex_txt02 li h4 {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 131.579% */
    letter-spacing: -0.76px;
}

.flex_txt02 li p {
    margin-top: 40px;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    color: #61646A;
}

.section .ul_02 {
    margin-top: 50px;
}

.section .ul_02 li {
    padding: 30px 20px;
    width: 100%;
    border: 1px solid var(--gray3, #DEDEE5);
    background: var(--white1, #FFF);
}

.section .ul_02 li p {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
    font-weight: bold;
    /* color: var(--biue4, #1C56A9); */
}

.section .ul_02 li:nth-child(2n) {
    margin-bottom: 25px;
}

.section .ul_02 li:nth-child(2n) p {
    font-weight: 400;
}

.a_box p {
    color: var(--biue4, #1C56A9);
}

.section .ul_02 li:nth-child(2n) p>span {
    font-weight: bold;
}

.section .ul_02 li:nth-child(2n) {
    color: var(--biue4, #1C56A9);
}

.section .ul_02 li:last-child {
    margin-bottom: 0;
}

.bg-blue.day_free {
    padding-left: 60px;
    background: url('/about/img/6-15일무료체험.png') no-repeat center / cover;
}

.bg-blue.day_free h2 {
    color: var(--black1, #373C43);
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.76px;
}

.bg-blue.day_free h2 span {
    font-weight: 700;
}

.bg-blue.day_free p {
    color: var(--gray8, #424756);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.bg-blue.day_free .btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 49px;
    background: var(--blue2, #3182F6);
    border-radius: 6px;
}

.bg-blue.day_free .btn:hover {
    background: #1A69D9;
}

.bg-blue.day_free .btn a {
    text-decoration: none;
    color: #fff;
}

/* 반응형 스타일 추가 */
@media (max-width: 1200px) {
    .inner img {
        width: 100%;
        min-height: 220px;
    }

    .top-menu {
        flex-direction: column;
    }

    .top-menu-item {
        margin-bottom: 10px;
    }

    .bottom-menu {
        flex-direction: column;
        padding-top: 10px;
    }

    .bottom-menu-item {
        margin-bottom: 10px;
        padding: 15px;
    }

    .inner {
        padding: 50px 20px;
    }

    .flex_txt02 {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .flex_txt02 li {
        width: 100%;
    }

    .bg-blue.day_free {
        padding-left: 20px;
        background-size: cover;
    }

    .section .ul_01 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .section .ul_01 li {
        width: 100% !important;
    }

    .bg-blue.day_free {
        padding-left: 0 !important;
    }

    .pack_ .wrap .txt {
        padding: 80px 4%;
    }

    .change {
        display: block;
    }

    .bs-faq-section {
        padding: 80px 4%;
    }

    .bs-main-section {
        padding: 80px 0;
    }

    .bs-features-section {
        padding: 80px 4%;
    }
}

@media (max-width: 768px) {
    .top-menu {
        flex-direction: column;
    }

    .top-menu-item {
        width: 80%;
        margin: 0 auto;
    }

    .bottom-menu {
        flex-direction: column;
    }

    .bottom-menu-item {
        width: 100%;
        margin-bottom: 10px;
        padding: 15px;
    }

    .flex_txt {
        flex-direction: column;
        align-items: center;
    }

    .flex_txt h4 {
        font-size: 28px;
        text-align: center;
        line-height: normal;
        word-break: keep-all;
    }

    .flex_txt h4 br {
        display: none;
    }

    .flex_txt p {
        font-size: 16px;
        text-align: center;
        margin-top: 15px;
    }

    .change li {
        flex-direction: column;
        align-items: center;
    }

    .btns {
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .img_box img {
        width: 100%;
    }

    .change .img_box {
        margin-top: 30px;
    }

    .pack_ {
        background: url('/about/img/pack_top_bg_m.png')no-repeat center / cover;
        padding-top: 62px !important;
    }

    .pack_ .wrap .txt .btn {
        margin-bottom: 270px;
    }

    .bg-blue.day_free {
        background: url('/about/img/6-15일무료체험_m.png')no-repeat center / cover;
    }

    .bg-blue.day_free .btn {
        margin-bottom: 300px;
    }

    .bg-blue.day_free h2 {
        font-size: 28px;
    }

    .menual_guide .tit h3,
    .mg_bg h5,
    .pack_ .wrap .txt h2,
    .section h3,
    .change li h4,
    .flex_txt02 li h4 {
        font-size: 28px !important;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.56px;
    }

    .section .ul_02 li p {
        font-size: 16px;
    }

    .mg_bg>p,
    .menual_guide .step>li>div>p,
    .bg-blue.day_free p,
    .pack_ .wrap .txt p,
    .section>div>.inner>p,
    .change li p {
        font-size: 16px !important;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.32px;
    }

    .change li p br {
        display: none;
    }

    .change li p {
        word-break: keep-all;
    }

    .section h3,
    .change li h4,
    .flex_txt02 li h4,
    .change li p,
    .flex_txt02 li p {
        text-align: center;
    }

    .section>div>.inner>p br,
    .flex_txt p br,
    .flex_txt02 li p br {
        display: none;
    }

    .section .b_p,
    .menual_guide .tit p,
    .menual_guide .step>li>div>h5 {
        font-size: 20px !important;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.4px;
    }

    .change li h4 {
        text-align: center;
    }

    .pack_ .wrap .txt p,
    .section>div>.inner>p {
        margin: 20px 0 !important;
    }
}

@media (max-width: 480px) {
    .pack_ .wrap .txt h2 {
        font-size: 28px;
    }

    .pack_ .wrap .txt p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .section h3 {
        font-size: 30px;
    }

    .section p {
        font-size: 16px;
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: none;
}

.pricing-table-title {
    color: var(--black1, #373C43);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-table-subtitle {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.52px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table td:first-child {
    font-weight: bold;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
}

.pricing-table th {
    background-color: #f7f7f7;
    color: #333;
    font-weight: bold;
}

.pricing-label {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 400;
    font-size: 13px;
}

.pricing-label-basic {
    border-radius: 14.5px;
    border: 1px solid var(--gray6, #8C939F);
    color: var(--gray6, #8C939F);
}

.pricing-label-pro {
    border-radius: 14.5px;
    border: 1px solid #03AD69;
    color: #03AD69;
}

.pricing-label-premium {
    border-radius: 14.5px;
    border: 1px solid #F29122;
    color: #F29122;
}

.pricing-label-expert {
    border-radius: 14.5px;
    border: 1px solid #E2472C;
    color: #E2472C;
}

.pricing-label-custom {
    border-radius: 14.5px;
    border: 1px solid var(--blue2, #3182F6);
    color: var(--blue2, #3182F6);
}

.pricing-info_box {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    text-align: center;
    margin: 60px 0;
}

.pricing-info_box p {
    padding: 20px 0px;
    margin: 0 auto;
    width: 100%;
    max-width: 422px;
    background: var(--blue1, #F3F6F9);
    box-sizing: border-box;
}

.pricing-info a {
    color: #3182f6;
    text-decoration: none;
    font-weight: bold;
}

.pricing-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        position: relative;
        overflow: hidden;
    }

    .pricing-table-wrapper::before {
        content: '좌우로 스크롤 해주세요';
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: #f3f6f9;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        color: #3182f6;
        animation: move-left-right 1s ease-in-out infinite alternate;
    }

    .pricing-table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}

@keyframes move-left-right {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.menual_guide .tit h3 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.menual_guide .tit p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.52px;
}

.btn_down_blue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 233px;
    height: 49px;
    border-radius: 6px;
    background: var(--blue2, #3182F6);
    margin: 30px auto 60px auto;
}

.btn_down_blue a {
    color: var(--white1, #FFF);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.32px;
    padding-right: 5px;
}

.menual_guide .step {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.menual_guide .step>li {
    flex: 1;
}

.menual_guide .step>li:first-child {
    display: flex;
    gap: 10px;
}

.menual_guide .step>li:first-child>div>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: var(--white1, #FFF);
    background: #8C939F;
    margin-top: 7px;
}

.menual_guide .step>li>div>h5 {
    color: var(--black1, #373C43);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.56px;
}

.menual_guide .step>li>div>p {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.menual_guide .step>li img {
    width: 100%;
}

.mg_bg {
    padding: 150px 0;
    background: url('/about/img/mg_bg01.png')no-repeat center / cover;
}

.mg_bg h5 {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.mg_bg .flex_b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mg_bg .flex_b .call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 348px;
    height: 103px;
    border-radius: 10px;
    background: var(--blue3, #1A69D9);
}

.mg_bg .flex_b .call a {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
    color: #fff;
}

.mg_bg .flex_b .kakao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 348px;
    height: 103px;
    border-radius: 10px;
    background: #FFE812;
}

.mg_bg .flex_b .kakao a {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
    color: var(--black1, #373C43);
}

.mg_bg .flex_b a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.mg_bg>p {
    color: var(--gray6, #8C939F);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-top: 40px;
}

@media screen and (max-width:1000px) {
    .menual_guide .step {
        padding: 0 4%;
        display: block;
    }

    .menual_guide .step>li:first-child {
        margin-bottom: 20px;
    }

    .mg_bg .flex_b {
        flex-direction: column;
    }

    .mg_bg>p {
        padding: 0 4%;
    }

    .mg_bg .flex_b .call,
    .mg_bg .flex_b .kakao {
        height: 80px;
    }

    .mg_bg .flex_b .call a,
    .mg_bg .flex_b .kakao a {
        font-size: 23px;
    }

    .mg_bg {
        padding: 90px 0;
    }

    .mg_m img {
        display: none !important;
    }

    .mg_m img:last-child {
        display: block !important;
        margin: 0 auto;
    }
}

.pack_.sty_02 {
    color: #fff;
    background: url('/about/img/sub-benner_sty02.png')no-repeat center / cover;
}

.f_click_new {
    padding: 150px 0;
    padding-bottom: 0;
}

.f_click_new .tit h4 {
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.f_click_new .box_02,
.f_click_new .box_04 {
    padding: 130px 0;
    background: #F3F6F9;
}

.f_click_new .box_03 {
    text-align: center;
    padding: 70px 0 130px 0;
}

.f_click_new .box_05 {
    padding: 130px 0;
}

.f_click_new .box_02 ul,
.f_click_new .box_04 ul,
.f_click_new .box_05 ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.f_click_new .box_02 ul li img,
.f_click_new .box_05 ul li img,
.f_click_new .box_03 img,
.f_click_new .box_04 img {
    width: 100%;
}

.f_click_new .box_01>span,
.f_click_new .box_02 li>span,
.f_click_new .box_03>span,
.f_click_new .box_04 li>span,
.f_click_new .box_05 li>span {
    display: block;
    border-radius: 14.5px;
    background: var(--blue2, #3182F6);
    width: 48px;
    height: 29px;
    margin: 60px auto 15px auto;
    color: #fff;
    text-align: center;
    line-height: 1.8;
}

.f_click_new .box_01>h5 {
    text-align: center;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.56px;
}

.f_click_new .box_01>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}

.f_click_new .box_01>ul>li {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    flex: 1;
    color: #fff;
    text-align: center;
}

.f_click_new .box_01>ul>li:first-child {
    padding: 45px 50px;
    border-radius: 6px;
    background: var(--blue2, #3182F6);
}

.f_click_new .box_01>ul>li:nth-child(2) {
    padding: 45px 50px;
    border-radius: 6px;
    background: var(--biue4, #1C56A9);
}

.f_click_new .box_01>ul>li:nth-child(4) {
    padding: 45px 50px;
    border-radius: 6px;
    background: #A731F6;
}

.f_click_new .box_01>ul>li:nth-child(4)>p:first-child {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.f_click_new .box_01 .grey_b {
    padding: 40px 0;
    margin-top: 50px;
    border-radius: 10px;
    background: var(--gray1, #F7F7F8);
}

.f_click_new .box_01 .grey_b>p:first-child {
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.4px;
}

.f_click_new .box_01 .grey_b>p:nth-child(2) {
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-top: 10px;
    color: var(--gray7, #61646A);
}

.f_click_new .box_01 .grey_b ul {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 35px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22624%22 height=%222%22 viewBox=%220 0 624 2%22 fill=%22none%22%3E%3Cpath d=%22M0 1L624 1.00005%22 stroke=%22%238C939F%22 stroke-dasharray=%222 2%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: 34px;
}

.f_click_new .box_01 .grey_b ul li div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gray4, #D5DAE3);
    width: 70px;
    height: 70px;
}

.f_click_new .box_01 .grey_b ul li p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    margin-top: 15px;
}

.f_click_new .box_02 li>h5,
.f_click_new .box_03>h5,
.f_click_new .box_04 li>h5,
.f_click_new .box_05 li>h5 {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.56px;
}

.f_click_new .box_02 li h5>span,
.f_click_new .box_03>h5>span,
.f_click_new .box_04 li>h5>span,
.f_click_new .box_05 li>h5>span {
    font-weight: bold;
}

.f_click_new .box_02 li>p,
.f_click_new .box_03>p:nth-child(3),
.f_click_new .box_04 li>p,
.f_click_new .box_05 li>p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-top: 15px;
    color: var(--gray7, #61646A);
}

.f_click_new .box_03>p:nth-child(5) {
    text-align: center;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
    margin: 60px 0;
    color: var(--gray7, #61646A);
}

.f_click_new .box_03>p:nth-child(6) {
    color: var(--gray7, #61646A);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    line-height: 1.5;
}

.f_click_new .box_03>p:nth-child(6)>span {
    font-weight: bold;
}

.main01 {
    padding: 50px 0;
}

.main01 h3 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.main01>.inner>p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 15px;
}

.main01>.inner>ul {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.main01>.inner>ul>li {
    text-align: center;
    flex: 1;
    position: relative;
}

.main01>.inner>ul>li:first-child::after {
    display: none;
}

.main01>.inner>ul>li::after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 80px;
    background: rgba(55, 60, 67, 0.16);
    top: 50%;
    transform: translate(-50%, -50%);
}

.main01>.inner>ul>li h5 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.52px;
}

.main01>.inner>ul>li p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-top: 15px;
    line-height: 1.8;
}

.main02 {
    padding: 50px 0;
    background: #F7F7F8;
    text-align: center;
}

.main02 h4 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.56px;
}

.main02>.inner>p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 20px;
}

.main02 .flip_clock {
    margin: 50px 0;
}

.main02 .flip_clock>p {
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.76px;
}

.main02 img {
    width: 100%;
    max-width: 1060px;
}


.custom-container {
    text-align: center;
    /* position: absolute;
    left: 50%;
    top: 50%; */
    /* width: 140px;
    height: 90px;
    margin: -45px 0 0 -70px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 60px 0;
    color: var(--black1, #373C43);
}

.custom-container p {
    font-family: Pretendard;
}

#custom-social {
    text-align: center;
    position: absolute;
    bottom: 14%;
    width: 100%;
}

#custom-social p {
    margin-bottom: 10px;
}

#custom-social ul,
#custom-social li {
    display: inline-block;
}

/* Skeleton */

.custom-flip {
    position: relative;
    float: left;
    margin: 5px;
    width: 44px;
    height: 65px;
    font-size: 38px;
    font-weight: bold;
    line-height: 66px;
    border-radius: 4px;
    border: 1px solid var(--white1, #FFF);
    background: var(--white1, #FFF);
    box-shadow: 0px 0px 10px 0px rgba(63, 68, 83, 0.20);
}

.custom-flip li {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.custom-flip li:first-child {
    z-index: 2;
}

.custom-flip li a {
    display: block;
    height: 100%;
    perspective: 200px;
}

.custom-flip li a div {
    z-index: 1;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.custom-flip li a div .custom-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.custom-flip li a div.custom-up {
    transform-origin: 50% 100%;
    top: 0;
}

.custom-flip li a div.custom-up:after {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, .2);
}

.custom-flip li a div.custom-down {
    transform-origin: 50% 0%;
    bottom: 0;
}

.custom-flip li a div div.custom-inn {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 200%;
    color: #3182F6;
    text-shadow: 0 1px 2px #000;
    text-align: center;
    background-color: #ffff;
    border-radius: 6px;
}

.custom-flip li a div.custom-up div.custom-inn {
    top: 0;
}

.custom-flip li a div.custom-down div.custom-inn {
    bottom: 0;
}

/* PLAY */

body.custom-play .custom-flip li.before {
    z-index: 3;
}

body.custom-play .custom-flip li.active {
    animation: asd .5s .5s linear both;
    z-index: 2;
}

@keyframes asd {
    0% {
        z-index: 2;
    }

    5% {
        z-index: 4;
    }

    100% {
        z-index: 4;
    }
}

body.custom-play .custom-flip li.active .custom-down {
    z-index: 2;
    animation: turn .5s .5s linear both;
}

@keyframes turn {
    0% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

body.custom-play .custom-flip li.before .custom-up {
    z-index: 2;
    animation: turn2 .5s linear both;
}

@keyframes turn2 {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(-90deg);
    }
}

/* SHADOW */

body.custom-play .custom-flip li.before .custom-up .custom-shadow {
    background: rgba(0, 0, 0, .1);
    animation: show .5s linear both;
}

body.custom-play .custom-flip li.active .custom-up .custom-shadow {
    background: rgba(0, 0, 0, .1);
    animation: hide .5s .3s linear both;
}

/*DOWN*/

body.custom-play .custom-flip li.before .custom-down .custom-shadow {
    animation: show .5s linear both;
}

body.custom-play .custom-flip li.active .custom-down .custom-shadow {
    background: rgba(0, 0, 0, 1);
    animation: hide .5s .3s linear both;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 추가된 스타일 */
.count-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 90px;
    border-radius: 6px;
    background-color: #f0f0f0;
    /* 카운트 박스 배경색 */
    margin-left: 10px;
    /* 플립 박스와의 간격 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    font-size: 80px;
    font-weight: bold;
    line-height: 90px;
    /* 세로 정렬을 위한 설정 */
    color: #3182F6;
    /* 숫자 색상 */
}

@media screen and (max-width:768px) {
    .f_click_new .tit h4 {
        font-size: 28px;
    }

    .f_click_new .box_01>ul {
        flex-wrap: wrap;
        padding: 0 4%;
    }

    .f_click_new .box_01>ul>li:first-child,
    .f_click_new .box_01>ul>li:nth-child(2) {
        width: calc(50% - 10px);
        word-break: keep-all;
    }

    .f_click_new .box_01>ul>li:nth-child(3),
    .f_click_new .box_01>ul>li:nth-child(4) {
        flex-basis: 50%;
    }

    .f_click_new .box_01>ul>li:nth-child(3) {
        margin: 30px 0;
        transform: rotate(90deg);
    }

    .f_click_new .box_01 .grey_b>p:nth-child(2) br {
        display: none;
        word-break: keep-all;
    }

    .f_click_new .box_01 .grey_b ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        background: none;
    }

    .f_click_new .box_01 .grey_b ul li div {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .f_click_new .box_02 ul {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 0 4%;
    }

    .f_click_new .box_02 li>h5,
    .f_click_new .box_03>h5,
    .f_click_new .box_04 li>h5,
    .f_click_new .box_05 li>h5 {
        text-align: center;
        font-size: 23px;
    }

    .f_click_new .box_02 li>span {
        margin: 0px auto 15px auto !important;
    }

    .f_click_new .box_02,
    .f_click_new .box_04 {
        padding: 50px 0;
    }

    .f_click_new .box_02 li>p br,
    .f_click_new .box_03>p:nth-child(3) br,
    .f_click_new .box_04 li>p br,
    .f_click_new .box_05 li>p br {
        display: none;
    }

    .f_click_new .box_02 li>p,
    .f_click_new .box_03>p:nth-child(3),
    .f_click_new .box_04 li>p,
    .f_click_new .box_05 li>p {
        margin: 25px 0;
        text-align: center;
        font-size: 16px;
    }

    .f_click_new .box_03 {
        padding: 50px 4%;
    }

    .f_click_new .box_03>p:nth-child(5) {
        font-size: 23px;
        margin: 30px 0;
    }

    .f_click_new .box_03>p:nth-child(6) {
        font-size: 16px;
    }

    .f_click_new .box_03>p:nth-child(6) br {
        display: none;
        word-break: keep-all;
    }

    .f_click_new .box_04 ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .f_click_new .box_02 li>span,
    .f_click_new .box_03>span,
    .f_click_new .box_04 li>span,
    .f_click_new .box_05 li>span {
        margin: 0px auto 15px auto !important;
    }

    .f_click_new .box_01 .grey_b p {
        padding: 0 4%;
        word-break: keep-all;
    }

    .f_click_new .box_05 {
        padding: 50px 4%;
    }

    .f_click_new .box_05 ul {
        flex-direction: column-reverse;
    }

    .f_click_new .box_01 .grey_b ul li p br {
        display: none;
        word-break: keep-all;
    }

    .f_click_new .box_01 .grey_b ul li {
        position: relative;
        z-index: 1;
    }

    .f_click_new .box_01 .grey_b ul li::after {
        content: "";
        display: block;
        width: 2px;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='47' viewBox='0 0 2 47' fill='none'%3E%3Cpath d='M1 0L0.999998 47' stroke='%238C939F' stroke-dasharray='2 2'/%3E%3C/svg%3E");
        background-repeat: repeat-y;
        background-position: center;
        position: absolute;
        top: 50%;
        right: 50%;
        z-index: -1;
    }

    .f_click_new .box_01 .grey_b ul li:last-child:after {
        display: none;
    }
}

#bid-speed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: Pretendard;
}

#count-display {
    height: 65px;
    display: inline-flex;
    align-items: center;
    width: 69px;
    font-size: 38px;
    background: #fff;
    border-radius: 10px;
    color: #3182F6;
    text-shadow: 0 1px 2px #000;
    box-shadow: 0px 0px 10px 0px rgba(63, 68, 83, 0.20);
    justify-content: center;
    padding-bottom: 0;
}

.main03 {
    padding: 150px 0;
    background: #F3F6F9;
}

.main03>h4 {
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    text-align: center;
    font-family: Pretendard;
    color: var(--black1, #373C43);
}

.main03>p {
    color: var(--gray8, #424756);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 20px;
}

.main03>ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.main03>svg {
    width: 102px;
}

.main03>ul li {
    flex: 1;
    text-align: center;
}

.main03>ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 162px;
    height: 46px;
    border-radius: 23px;
    background: var(--gray4, #D5DAE3);
    color: var(--gray7, #61646A);
    margin: 0 auto;
    margin-bottom: 40px;
    font-size: 22px;
}

.main03>ul li:first-child div {
    padding: 15px 0;
    border-radius: 10px;
    border: 2px solid var(--gray4, #D5DAE3);
    background: var(--white2, #FBFBFB);
    color: var(--gray7, #61646A);
    font-size: 20px;
    text-align: center;
}

.main03>ul li:first-child p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.44px;
}

.main03>ul li:last-child span {
    color: #fff;
    background: var(--blue2, #3182F6);
}

.main03>ul li:last-child div {
    text-align: center;
    color: #3182F6;
    font-weight: bold;
    font-size: 20px;
    background: #F2F5FF;
    border-radius: 10px;
    border: 2px solid var(--blue2, #3182F6);
    padding: 218px 0;
}

.main03>ul li:last-child p {
    color: var(--biue4, #1C56A9);
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.44px;
}

.main04 {
    padding: 150px 0;
}

.main04 h4 {
    color: var(--black1, #373C43);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
    text-align: center;
    margin-bottom: 40px;
}

.main04_btn {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    /* inline-flex로 설정 */
    justify-content: center;
    align-items: center;
}

.main04_btn a {
    padding: 15px 25px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.44px;
    color: #333;
}

.main04_btn a.act {
    background: #3182F626;
    color: #3182F6;
    border-radius: 28px;
}

.main04_show img {
    display: block;
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.main04_show span {
    color: var(--gray8, #424756);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.main04_show h5 {
    color: var(--black1, #373C43);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.56px;
    margin: 15px 0 20px 0;
}

.main04_show p {
    color: var(--gray6, #8C939F);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.36px;
}

.main04_show p:nth-child(5) {
    margin-top: 25px;
}

.main04_btn02 {
    display: flex;
    gap: 10px;
    margin-top: 80px;
}

.main04_btn02 a {
    padding: 15px 25px;
    border-radius: 6px;
    color: #333;
}

.main04_btn02 a:first-child {
    border: 1px solid var(--gray4, #D5DAE3);
}

.main04_btn02 a:first-child:hover {
    background: #61646A;
    color: #fff;
}

.main04_btn02 a:last-child {
    color: #fff;
    background: #3182F6;
}

.main04_btn02 a:last-child:hover {
    background: #1A69D9;
}

/* .show01,.show02{
    max-width: 870px;
    margin: 0 auto;
} */
.main04_show {
    position: relative;
    overflow: hidden;
}

.arrow {
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.left-arrow {
    position: absolute;
    left: -100px;
}

.right-arrow {
    position: absolute;
    right: -100px;
}

.img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main04_show>div {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* .show01.active, .show02.active {
    opacity: 1;
    transform: translateX(0);
} */
.main05 {
    padding: 150px 0;
    background: #F3F6F9;
}

.main05 h4 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.main05 p {
    color: var(--gray7, #61646A);
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

.main05 ul {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main05 ul li {
    flex: 1;
    text-align: center;
}

.main06 {
    padding: 150px 0;
    text-align: center;
}

.main06 h4 {
    color: var(--black1, #373C43);
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.76px;
}

.main06 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 983px;
    margin: 0 auto;
}

.main06 ul li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    padding: 43px 20px;
    border-radius: 10px;
    border: 1px solid var(--gray3, #DEDEE5);
    background: #fff;
}

.main06 ul li div:nth-child(2) {
    margin: 20px 0;
}

.main06 ul li {
    flex: 1;
}

.main06 ul li img {
    border-radius: 10px;
    margin: 0 auto;
}

.main06 ul li div:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    color: #3182F6 !important;
}

.main06 ul li div.act p {
    color: #3182F6;
}

.main06 ul li div p {
    color: var(--gray7, #61646A);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    flex: 1;
    /* color: var(--gray7, #61646A); */
}

@media screen and (max-width:768px) {
    .main01>.inner>ul>li::after {
        display: none;
    }

    .main01,
    .main02 {
        padding: 10px 4%;
    }

    .main01 h3,
    .main03>h4,
    .main04 h4,
    .main05 h4,
    .main06 h4 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .main01>.inner>ul>li h5 {
        font-size: 26px;
    }

    .main02 h4 {
        font-size: 20px;
    }

    .main01>.inner>ul>li p,
    .main02>.inner>p,
    .main03>p,
    .main05 p {
        font-size: 16px;
    }

    .main01>.inner>ul {
        flex-direction: column;
        gap: 40px;
    }

    .custom-container {
        flex-wrap: wrap;
    }

    .custom-container>p {
        font-size: 28px;
    }

    .main03 {
        padding: 60px 4%;
    }

    .main03>ul {
        flex-direction: column;
    }

    .main03>ul .main_svg {
        transform: rotate(90deg);
        transform-origin: center;
        margin: 30px 0;
    }

    .main03>ul li {
        width: 100%;
    }

    .main04 {
        padding: 60px 4%;
    }

    .main04 h4 br {
        display: none;
    }

    .main04 h4 {
        word-break: keep-all;
    }

    .main04_show span,
    .main04_show h5,
    .main04_show p {
        display: block;
        text-align: center;
    }

    .main04_btn02 {
        justify-content: center;
        margin-top: 50px;
    }

    .main05,
    .main06 {
        padding: 60px 4%;
    }

    .main05 ul {
        flex-direction: column;
        gap: 30px;
    }

    .main06 ul {
        flex-direction: column;
        gap: 30px;
    }

    .main06 ul li,
    .main06 ul li img {
        width: 100%;
    }

    .main06 ul li div:nth-child(2) {
        margin: 15px 0;
    }

    .main06 ul li div p {
        font-size: 16px;
        word-break: keep-all;
    }

    .main06 h4 {
        word-break: keep-all;
    }

    .main06 ul li div p br,
    .main06 h4 br {
        display: none;
    }

    .custom-flip {
        height: 60px;
        line-height: 57px;
        font-size: 40px;
    }

    .custom-container {
        font-size: 38px;
    }

    .custom-flip li a div.custom-up:after {
        top: 29px;
        height: 1px;
    }

    #count-display {
        width: 60px;
        height: 60px;
        font-size: 38px;
    }

    .main01>.inner>p br {
        display: none;
    }

    .main01>.inner>p {
        word-break: keep-all;
    }
}

/* API 페이지 스타일 */
.api.pt {
    padding: 80px 20px 100px !important;
    background: #FFFFFF !important;
}

.api .container {
    max-width: 480px !important;
    margin: 0 auto;
    padding: 0 !important;
}

.api_title {
    color: #1C1D1F !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    margin-bottom: 40px !important;
    line-height: 1.4;
}

.api_box .list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 28px !important;
}

.api_box .list .title {
    width: 100% !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #4E5968 !important;
    margin-bottom: 10px !important;
}

.api_box .list input,
.api_box .list select {
    width: 100% !important;
    height: 52px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #F7F8FA !important;
    font-size: 14px !important;
    color: #333333 !important;
    padding: 0 16px !important;
    outline: none !important;
    transition: background 0.2s;
}

.api_box .list input:focus,
.api_box .list select:focus {
    background: #F0F1F3 !important;
}

.api_box .list input::placeholder {
    color: #BFC5CF !important;
    font-size: 13px !important;
}

.api_btn {
    width: 100% !important;
    margin: 48px 0 0 !important;
    display: flex !important;
    gap: 12px;
}

.api_btn button {
    flex: 1 !important;
    width: auto !important;
    height: 48px !important;
    border-radius: 5px !important;
    border: 1px solid #E5E8EB !important;
    background: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    cursor: pointer;
    transition: all 0.2s;
}

.api_btn button:hover {
    background: #F7F8FA !important;
}

.api_btn button:nth-of-type(1) {
    border: 1px solid #61646A !important;
}

.api_btn button:nth-of-type(2) {
    background: #3182F6 !important;
    border-color: #3182F6 !important;
    color: #FFFFFF !important;
}

.api_btn button:nth-of-type(2):hover {
    background: #1B64DA !important;
}

.free .input_box #qSendBtn:hover {
    background: #1A69D9;
}

.free .input_box #qForm div label {
    font-weight: bold;
}

.free .input_box #qForm div input::placeholder {
    color: #BFC5CF;
}

.free .input_box #qForm textarea::placeholder {
    color: #BFC5CF;
}

.free .input_box #qForm>.checkbox {
    display: flex;
    margin-top: 20px;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

#privacyAgreement {
    width: auto !important;
}

#privacyAgreement_label {
    width: 100%;
    color: #8C939F;
    flex: 1;
    font-size: 14px !important;
}

/* 로그인 페이지 스타일 */
.login.login_sec_01 {
    background: #FFFFFF !important;
    width: 100%;
}

.login .container {
    max-width: 530px !important;
    margin: 0 auto;
    margin-top: 30vh;
    margin-bottom: 30vh;
    
}

.login h1 {
    color: #1C1D1F !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

.login .list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 0 !important;
}

.login .list label {
    display: none !important;
}

.login .list input {
    width: 100% !important;
    height: 56px !important;
    border: 1px solid #DEDEE5;
    border-radius: 8px !important;
    /* background: #FFFFFF !important; */
    font-size: 15px !important;
    color: #333333 ;
    padding: 0 16px !important;
    outline: none !important;
    transition: border-color 0.2s;
    margin-bottom: 12px;
}

.login .list input:focus {
    border-color: #3182F6 !important;
}

.login .list input::placeholder {
    color: #B0B8C1;
    font-size: 14px !important;
}

.login .btn_area {
    margin-top: 18px !important;
}

.login .btn_area button {
    width: 100% !important;
    height: 56px !important;
    border-radius: 5px !important;
    border: none !important;
    background: #3182F6 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    cursor: pointer;
    transition: background 0.2s;
}

.login .btn_area button:hover {
    background: #1B64DA !important;
}

.link_area {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 10px !important;
}

.link_area a {
    color: #4E5968 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.link_area a:first-child {
    color: #3182F6 !important;
}

.link_area a:hover {
    text-decoration: underline !important;
}

.login .join_txt01 {
    margin-bottom: 40px;
    color: #1A69D9 !important;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
}

.login .list>p {
    font-size: 15px;
    font-weight: bold;
    width: 180px;
}

.login .list {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.login .list input {
    /* border: 0; */
    /* border-bottom: 1px solid #DEDEE5; */
}

.login .list input {
    height: 40px;
    padding: 0;
}

.login .list input::placeholder {
    color: #BFC5CF;
    font-size: 16px;
}

.login .btn_area {
    display: block;
}

.login .container>p {
    margin-top: 10px;
    color: #8C939F;
    font-size: 14px;
}

.login .check_wrap label span,
.login .check_wrap label {
    color: #8C939F;
    font-size: 14px;
    position:relative;
}

.login .check_wrap label span a {
    color: #8C939F;
    font-size: 14px;
}

.login .check_area>div:nth-of-type(2) {
    justify-content: normal;
    gap: 20px;
}

.login .btn_area_02 {
    margin-top: 10px;
}

.login .btn_area_02 p {
    font-size: 14px;
}

.id_check {
    width: 98px !important;
    height: 47px !important;
    border-radius: 6px !important;
    border: 1px solid #61646A !important;
    margin-left: 15 px;
}

.id_check::placeholder {
    font-size: 14px;
    font-weight: 600;
    line-height: normal !important;
    letter-spacing: -0.28px;
    text-align: center;
    color: #61646A !important;
}

.id_check:hover {
    background: #61646A;
    border: 1px solid #61646A !important;
}

.id_check:hover::placeholder {
    color: #fff !important;
    /* 마우스 오버 시 placeholder 색상 */
}

.login_sec_02 .container {
    /* max-width: 540px; */
    width: 540px;
    margin: 0 auto;
}

.login.login_sec_02 h1 {
    font-size: 26px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 50px;
    text-align: left;
}

.login.login_sec_02 .list {
    display: block;
    margin-bottom: 30px;
}

.login.login_sec_02 .list p {
    font-weight: 400;
    font-size: 18px;
    color: #424756;
    width: 100%;
    margin-bottom: 20px;
}

.login.login_sec_02 .list input {
    width: 100%;
    border-radius: 8px;
    border: none;
    background-color: #F5F6F8;
    padding: 18px 20px;
    font-size: 15px;
    color: #1c1d1f;
    transition: background-color 0.3s ease;
    font-weight: normal;
}

.login.login_sec_02 .list input:focus {
    outline: none;
    background-color: #EBEDF0;
}

.login.login_sec_02 .list input::placeholder {
    color: #A8ADB7 !important;
    font-size: 15px;
}

.login.login_sec_02 .btn_area_03 {
    margin-top: 40px;
}

.login.login_sec_02 .btn_area_03 button {
    width: 100%;
    padding: 18px 0;
    background-color: #4A7FFF;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login.login_sec_02 .btn_area_03 button:hover {
    background-color: #3A6FEF;
}

/* 반응형 - 1060px 이하 */
@media (max-width: 1060px) {
    .login_sec_02 .container {
        /* max-width: 335px; */
        width: 335px;
    }
}

/* Swiper 기본 스타일 */
.swiper-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    position: relative;
    /* 화살표 위치 설정을 위해 추가 */
}

.swiper-slide img {
    /* width: 100%; */
    /* height: auto; */
    /* object-fit: contain; */
}

/* 화살표 스타일 설정 */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 10 !important;
}

/* 불릿 스타일 설정 */
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}

/* 활성화된 불릿 색상 */
.swiper-pagination-bullet-active {
    background-color: #fff;
}

/* 반응형 설정 */
@media (max-width: 768px) {
    .swiper-container {
        height: auto;
    }
}

@media (max-width: 480px) {
    .swiper-container {
        height: auto;
    }

    /* 모바일에서는 모바일 footer만 표시 */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: flex !important;
    }
}

.change h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 420;
    line-height: normal;
    letter-spacing: -0.72px;
    text-align: start;
}

.change .list {
    display: block;
}

.change .list>h2 {
    color: var(--blue3, #1A69D9);
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-bottom: 30px;
}

.change .list ul li>p {
    width: 100%;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: normal;
}

.change .list ul li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}

.change .list input {
    border: 0;
    width: 100%;
    padding: 0;
    font-size: 14px;
    width: 100% !important;
    height: 57px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #F7F8FA !important;
    font-size: 14px !important;
    color: #333333 !important;
    padding: 0 16px !important;
    outline: none !important;
    transition: background 0.2s;
    font-weight: normal;
}

.change .container {
    width: 530px;
    max-width: 600px;
}

.change .list ul li div {
    display: flex;
    width: 100%;
}

.change .list button {
    width: 98px;
    height: 57px;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: #fff !important;
    border: 1px solid var(--gray7, #61646A);
    font-size: 14px;
    font-weight: normal;
}

.change .list button.blue_btn {
    border: 1px solid var(--blue2, #3182F6);
    color: #3182F6;
}

.change .list ul li>p:nth-child(2) {
    width: 100%;
    border-bottom: 1px solid #DEDEE5;
    margin-right: 10px;
}

.change .list {
    margin-bottom: 0;
}

@media screen and (max-width:768px) {
    .change {
        padding: 0 4%;
    }

    .change .container {
        width: 100%;
    }

    .change li {
        flex-direction: row;
    }

    .change .list ul li {
        align-items: baseline;
    }

    .change .list ul li>p {
        text-align: left;
    }

    .change .list ul li div {
        flex-wrap: nowrap;
    }

    .change .list button {
        margin-top: 0px;
    }

    .change .list:last-child ul li {
        flex-wrap: wrap;
    }

    .change .list ul li>p:nth-child(2) {
        width: calc(100% - 120px);
        max-width: 100%;
    }

    .change .list:last-child ul li button {
        width: 100%;
    }
}

.float_1113 {
    position: fixed;
    bottom: 60px;
    right: 5%;
    z-index: 9999 !important;
}

.float_1113 > div {
    width:60px;
    height:60px;
}

.float_1113 .free {
    text-align: center;
    margin-bottom: 10px;
}

.float_1113 .usage {
    text-align: center;
}

@media screen and (max-width:768px) {
    .float_1113 {
        right: 10px;
    }

    .float_1113 img {
        width: 60px;
    }
}


/* Customer Support Styles */
.customer-service {
    font-weight: normal;
    color: #61646A;
    font-size: 14px;
}

.customer-service>span {
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    color: #000;
}

/* Company Info Wrapper */
.company-info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Company Info Text */
.company-info {
    line-height: 1.8;
    text-align: left;
    flex: 1;
    min-width: 200px;
    width: 100%;
}

.company-info p {
    color: #AFAFB0;
    font-family: Pretendard;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 166.667% */
    letter-spacing: -0.24px;
    margin: 20px 0 0px 0;
}

.company-info img {
    display: block;
    max-height: 50px;
    /* Adjust as necessary for the logo size */
    margin-bottom: 10px;
}

/* Family Site Dropdown */
.family-site {
    position: relative;
    display: inline-block;
    width: 150px;
}

.family-site button {
    text-align: left;
    width: 100%;
    height: 40px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding: 0 20px;
}

.family-site button::after {
    content: "";
    width: 8px;
    /* SVG 너비에 맞게 조정 */
    height: 4px;
    /* SVG 높이에 맞게 조정 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Family Site Dropdown */
/* .family-site {
    position: relative;
    display: inline-block;
    width: 150px;
} */

/* .family-site button {
    text-align: left;
    width: 100%;
    height: 40px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding: 0 20px;
} */

/* .family-site button::after {
    content: "";
    width: 8px;

    height: 4px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
} */

/* Rotate the arrow when active */
.family-site.active button::after {
    transform: translateY(-50%) rotate(180deg);
}

.family-site-content {
    display: none;
    position: absolute;
    bottom: 100%;
    /* Positioned to slide up */
    left: 0;
    background-color: #515151;
    border-radius: 7px;
    min-width: 150px;
    box-shadow: 0px -8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.family-site-content a {
    color: #fff !important;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.family-site-content a:hover {
    background-color: #ddd;
    color: #000 !important;
}

.family-site.active .family-site-content {
    display: block;
    transform: scaleY(1);
}

.family-site.active button {
    background: #848484;
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-service {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        word-break: keep-all;
    }

    .company-info-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .family-site {
        /* margin: 0 auto; */
        margin-top: 20px;
    }

    .family-site button {
        width: 100%;
    }

    .company-info {
        text-align: center;
        word-break: keep-all;
        word-wrap: break-word;
    }

    .company-info img {
        margin: 0 auto;
    }

    .customer-service>span {
        margin-bottom: 10px;
    }
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }
}

.swiper-pagination-bullet {
    width: 12px !Important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    border: 0 !important;
    background: rgba(255, 255, 255, 0.50) !important;
}



/* topBanner CSS */
:root {
    --white-1: rgba(255, 255, 255, 1);
    --gray-1: rgba(247, 247, 248, 1);
    --black-1: rgba(28, 29, 31, 1);
    --gray-7: rgba(97, 100, 106, 1);
    --blue-2: rgba(49, 130, 246, 1);
    --gray-8: rgba(66, 71, 86, 1);
    --blue-3: rgba(26, 105, 217, 1);
    --white-2: rgba(251, 251, 251, 1);
    --gray-4: rgba(213, 218, 227, 1);
    --gray-2: rgba(238, 239, 242, 1);
    --gray-5: rgba(191, 197, 207, 1);
    --blue-1: rgba(243, 246, 249, 1);
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    /* word-break: break-all; */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-hyphens: auto;
    hyphens: auto;
    vertical-align: baseline;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    height: 100%;
    font-size: clamp(8px, calc(100vw * 0.0222222), 16px);
}

body {
    /* height: 100%; */
    font-family: "Pretendard", "Sans-serif";
    color: #000000;
    -webkit-text-size-adjust: none;
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.4;
    letter-spacing: -0.02rem;
}

button {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    user-select: none;
}

/* ===================================
   BASE STYLES
   =================================== */

.main .top-banner-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #111;
    z-index: 2000;
    display: flex;
    align-items: center;
    color: #fff;
}

.main .top-banner {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #151518;
}

.main .top-banner-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 299px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.main .btn-swiper {
    position: relative;
    width: 10px;
    height: 18px;
    display: block;
}

.main .btn-swiper img[src*="btn-swiper-navigation"] {
    display: block;
}

.main .btn-swiper img[src*="Frame 269"] {
    display: none;
}

.main .top-banner-txt-group {
    position: relative;
    cursor: pointer;
    width: 456px;
}

.main .top-banner-main-text {
    /* position: absolute;
  top: 0; */
    left: calc(50.00% - 228px);
    font-family: "Pretendard-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 17px;
    letter-spacing: -0.44px;
    line-height: normal;
    white-space: nowrap;
}

.main .text-wrapper {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.10px;
}

.main .span {
    font-family: "Pretendard-Light", Helvetica;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.10px;
}

.main .text-wrapper-2 {
    font-weight: 700;
    color: #00ff88;
    letter-spacing: -0.10px;
}

.main .text-wrapper-3 {
    font-weight: 700;
    color: #00e5ff;
    letter-spacing: -0.10px;
}

.main .top-banner-sub-text {
    /* position: absolute; */
    top: 2px;
    left: 342px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #dedede;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .btn-topbenner-close {
    /* display: flex;
  width: 121px; */
    height: 45px;
    /* align-items: flex-start;
  justify-content: center; */
    position: relative;
    display: block;
}

.main .top-banner-close {
    position: relative;
    width: fit-content;
    margin-top: 1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-1);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.main .top-banner-box {
    position: relative;
    width: 16px;
    height: 16px;
}

.main .img {
    position: absolute;
    width: 50.00%;
    height: 50.00%;
    top: 25.00%;
    left: 25.00%;
}

/* ===================================
   BUTTON ACCESSIBILITY STYLES
   =================================== */

.btn-swiper {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* .btn-swiper:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-swiper:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
} */

.top-banner-close {
    background: none;
    border: none;
    color: var(--white-1);
    cursor: pointer;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* .top-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.top-banner-close:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
} */

.top-banner-box {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

/* .top-banner-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
} */

/* .top-banner-box:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
} */

/* ===================================
   MEDIA QUERY: 1060px - 1199px
   =================================== */

@media (min-width: 1060px) and (max-width : 1199px) {
    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        display: block;
    }

    .top-banner-frame {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===================================
   MEDIA QUERY: 768px - 1059px (Tablet)
   =================================== */

@media (min-width: 768px) and (max-width: 1059px) {
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 17px;
        letter-spacing: -0.44px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }
}

/* ===================================
   MEDIA QUERY: 481px - 767px (Mobile Large)
   =================================== */

@media (min-width: 481px) and (max-width: 767px) {
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 17px;
        letter-spacing: -0.36px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }
}

/* ===================================
   MEDIA QUERY: 376px - 480px (Mobile Medium)
   =================================== */

@media (min-width: 376px) and (max-width: 480px) {
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 14px;
        height: 14px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }
}

/* ===================================
   MEDIA QUERY: 375px and below (Mobile Minimum)
   =================================== */

@media (max-width: 375px) {
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 55px;
        align-items: center;
        justify-content: space-between;
        padding: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 40px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 12px;
        height: 12px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }
}

/* ===================================
   MEDIA QUERY: 1200px - 1439px (Medium Desktop)
   =================================== */

@media (min-width: 1200px) and (max-width: 1439px) {
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 150px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        position: relative;
        width: 10px;
        height: 18px;
        display: block;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 17px;
        letter-spacing: -0.36px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: block;
    }

    .main .top-banner-close {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }
}

/* ===================================
   MEDIA QUERY: 1600px and above (Large Desktop)
   =================================== */

@media (min-width: 1600px) {
    .top-banner-frame {
        max-width: 1600px;
        margin: 0 auto;
    }
}


.main {
    display: flex;
    flex-direction: column;
    /* height: 8207px; */
    align-items: center;
    position: relative;
    background-color: #ffffff;
    /* margin-top: 160px; */
    overflow-y: hidden;
}

.main .top-banner-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #111;
    z-index: 2000;
    display: flex;
    align-items: center;
    color: #fff;
}

.main .top-banner {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #151518;
}

.main .top-banner-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 299px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.main .btn-swiper {
    position: relative;
    width: 10px;
    height: 18px;
    display: block;
}

.main .btn-swiper img[src*="btn-swiper-navigation"] {
    display: block;
}

.main .btn-swiper img[src*="Frame 269"] {
    display: none;
}

.main .top-banner-txt-group {
    position: relative;
    width: 456px;
}

.main .top-banner-main-text {
    /* position: absolute;
  top: 0; */
    left: calc(50.00% - 228px);
    font-family: "Pretendard-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 17px;
    letter-spacing: -0.44px;
    line-height: normal;
    white-space: nowrap;
}

.main .text-wrapper {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.10px;
}

.main .span {
    font-family: "Pretendard-Light", Helvetica;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.10px;
}

.main .text-wrapper-2 {
    font-weight: 700;
    color: #00ff88;
    letter-spacing: -0.10px;
}

.main .text-wrapper-3 {
    font-weight: 700;
    color: #00e5ff;
    letter-spacing: -0.10px;
}

.main .top-banner-sub-text {
    /* position: absolute; */
    top: 2px;
    left: 342px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #dedede;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .btn-topbenner-close {
    /* display: flex;
  width: 121px; */
    height: 45px;
    /* align-items: flex-start;
  justify-content: center; */
    position: relative;
    display: block;
}

.main .top-banner-close {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-1);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.main .top-banner-box {
    position: relative;
    width: 16px;
    height: 16px;
}

.main .img {
    position: absolute;
    width: 50.00%;
    height: 50.00%;
    top: 25.00%;
    left: 25.00%;
}

/* Header Styles */
.header {
    position: fixed;
    /* top: 74px; */
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    transition: background 0.3s ease;
    box-shadow: none;
    background: #fff !important;
}

.header.mt50 {
    top: 0px;
}

.header .h_inner {
    max-width: 1520px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-height: 40px;
    transition: opacity 0.3s;
}

.header-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: right;
}

.header-menu a {
    margin: 0 15px;
    color: #1C1D1F;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    line-height: 1.5;
}

.header-button {
    color: #fff !important;
    width: 209px;
    height: 49px;
    flex-shrink: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #3182F6 0%, #0052F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.40);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
}

.dropdown {
    position: relative;
    padding: 10px 0px;
}

.dropdown>a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 5px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="8" height="5" viewBox="0 0 8 5" fill="none"%3E%3Cpath d="M1 1L4 4L7 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
    border-radius: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    color: #61646A;
    text-decoration: none;
    font-weight: normal;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 400;
    margin:0;
}

.dropdown-menu a:hover {
    background-color: #F3F6F9;
}

.dropdown-menu .top:hover {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dropdown-menu .bottom:hover {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dropdown-menu .menu-icon {
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 0px;
}

.header-menu .header-login {
    margin-left: 20px;
    margin-right: 20px;
}

.header-menu .info_btn {
    display: none;
}

.header-menu .info_btn:hover {
    cursor: pointer;
}

.header-menu .info_btn .loginUser {
    margin: 0 15px;
    color: var(--gray7, #61646A);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    line-height: 1.5;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.header.scrolled .hamburger-menu div {
    background-color: #000;
}

/* .hamburger-menu div {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px;
    transition: 0.4s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    flex-direction: column;
    padding-top: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 45px;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
} */

/* .mobile-menu a {
    padding: 15px 20px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.manual-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #12121299;
    border-bottom: 1px solid #e0e0e0;
} */

.download-icon {
    margin-left: 5px;
    font-size: 18px;
    color: #333;
}

.mobile-cta-button {
    padding: 15px;
    text-align: center;
    color: #fff !important;
    border-radius: 24.5px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: linear-gradient(90deg, #3182F6 0%, #0052F0 100%);
    font-size: 18px;
    text-decoration: none;
    margin: 20px auto;
    width: 209px;
    height: 49px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 20px 15px;
}

.main .nav {
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .view {
    position: relative;
    width: 1726px;
    height: 900px;
}

.main .rectangle {
    position: absolute;
    top: 0;
    left: calc(50.00% - 863px);
    width: 1720px;
    height: 900px;
    background-color: #181818;
    border-radius: 60px;
}

.main img[src*="main-banner"] {
    /* position: absolute; */
    top: 0;
    left: calc(50.00% - 863px);
    width: 1720px;
    height: 900px;
}

.main .view img[src*="Frame 269"] {
    display: none;
}

.main .div {
    position: absolute;
    top: 75px;
    left: 579px;
    width: 1041px;
    height: 749px;
}

.main .devices-apple-ipad {
    position: absolute;
    top: 0;
    left: -2px;
    width: 1047px;
    height: 755px;
}

.main .mask-group {
    position: absolute;
    top: 39px;
    left: 42px;
    width: 960px;
    height: 673px;
}

.main .image-2 {
    position: absolute;
    top: 301px;
    left: 267px;
    width: 25px;
    height: 257px;
}

.main .text-wrapper-4 {
    position: absolute;
    top: 511px;
    left: calc(50.00% - 763px);
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-1);
    font-size: 28px;
    text-align: center;
    letter-spacing: -0.56px;
    line-height: normal;
}

.main .text-wrapper-5 {
    position: absolute;
    top: 565px;
    left: calc(50.00% - 763px);
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 45px;
    letter-spacing: -0.90px;
    line-height: normal;
    white-space: nowrap;
}

.main .text-wrapper-6 {
    position: absolute;
    top: 624px;
    left: calc(50.00% - 763px);
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 45px;
    text-align: center;
    letter-spacing: -0.90px;
    line-height: normal;
    white-space: nowrap;
}

.main .btn {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 738px;
    left: 100px;
    width: 186px;
    height: 62px;
}

.main .fclickBtn {
    all: unset;
    box-sizing: border-box;
    position: absolute;
    top: 608px;
    left: 100px;
    width: 186px;
    height: 62px;
}

.main .rectangle-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 184px;
    height: 62px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid;
    border-color: var(--black-1);
}

.main .rectangle-3 {
    position: absolute;
    top: 0;
    left: 122px;
    width: 62px;
    height: 62px;
    background-color: var(--black-1);
    border-radius: 20px;
}

.main .iconamoon-arrow {
    position: absolute;
    top: 17px;
    left: 139px;
    width: 28px;
    height: 28px;
    transform: rotate(-45deg);
    aspect-ratio: 1;
}

.main .vector {
    position: absolute;
    width: 58.33%;
    height: 58.33%;
    top: 25.81%;
    left: 25.80%;
    transform: rotate(45deg);
}

.main .text-wrapper-7 {
    position: absolute;
    top: 20px;
    left: calc(50.00% - 68px);
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--black-1);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-frame {
    align-items: center;
    gap: 10px;
    padding: 140px 0px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-body {
    flex-direction: column;
    height: 750px;
    justify-content: space-between;
    padding: 0px 100px;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    /* max-width: 1520px; */
    margin: 0 auto;
}

.main .main-txt {
    flex-direction: column;
    /* height: 174px; */
    justify-content: space-between;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .text-wrapper-8 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--black-1);
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .text-wrapper-9 {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--black-1);
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
    margin-bottom: 20px;
}

.main .p {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-box {
    gap: 10px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-left-box {
    display: flex;
    flex-direction: column;
    height: 516px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 60px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #f3f6f9;
    border-radius: 60px;
}

.main .main-frame-left-box {
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.main .text-wrapper-10 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--blue-2);
    font-size: 28px;
    letter-spacing: -1.12px;
    line-height: normal;
}

.main .text-wrapper-11 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 18px;
    letter-spacing: -0.72px;
    line-height: 28px;
}

.main .main-left-box-2 {
    flex-wrap: wrap;
    width: 156.33px;
    gap: 0px 3px;
    display: flex;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.main .ellipse {
    background-color: #00a4d1;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 40px;
}

.main .rectangle-4 {
    position: relative;
    width: 73.33px;
    height: 73.33px;
    background-color: #bfc5cf;
    border-radius: 10px;
}

.main .ellipse-2 {
    background-color: var(--blue-3);
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 40px;
}

.main .main-right {
    align-items: center;
    gap: 10px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main .main-frame-right {
    display: flex;
    height: 248px;
    align-items: center;
    justify-content: space-between;
    padding: 86px 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f3f6f9;
    border-radius: 50px;
}

.main .main-right-2 {
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
}

.main .text-wrapper-12 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #1b1c1e;
    font-size: 18px;
    letter-spacing: -0.72px;
    line-height: normal;
}

.main .main-right-3 {
    width: 145px;
    align-items: flex-end;
    gap: 9px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main .rectangle-5 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 17.5px;
    background-color: var(--gray-5);
    border-radius: 3px;
}

.main .rectangle-6 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 17.5px;
    background-color: #00a4d1;
    border-radius: 3px;
}

.main .rectangle-7 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 17.5px;
    background-color: var(--blue-3);
    border-radius: 3px;
}

.main .main-right-4 {
    display: flex;
    height: 248px;
    align-items: center;
    justify-content: space-between;
    padding: 86px 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: var(--blue-1);
    border-radius: 50px;
}

.main .main-frame-right-box {
    flex-direction: column;
    /* width: 161px; */
    align-items: flex-start;
    gap: 20px;
    display: flex;
    position: relative;
}

.main .main-frame-right-box-2 {
    width: 118px;
    align-items: center;
    display: flex;
    position: relative;
}

.main .rectangle-8 {
    position: relative;
    width: 51.79px;
    height: 51.79px;
    background-color: var(--blue-3);
    border-radius: 6px;
    transform: rotate(135.18deg);
}

.main .rectangle-9 {
    position: relative;
    width: 51.79px;
    height: 51.79px;
    margin-right: -18.10px;
    background-color: var(--gray-5);
    border-radius: 6px;
    transform: rotate(135.18deg);
}

.main .main-body-wrapper-1 {
    height: 1000px;
    align-items: flex-start;
    gap: 10px;
    padding: 150px 100px;
    margin: 70px 0;
    background-color: #131313;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-body-wrapper {
    margin: 100px 0;
    width: 100%;
    padding: 100px;
}

.main .main-frame-body {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 0px 128px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 60px;
}

.main .main-frame-txt {
    display: flex;
    flex-direction: column;
    width: 404px;
    height: 174px;
    align-items: flex-start;
    position: relative;
}

.main .text-wrapper-13 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1b1c1e;
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .text-wrapper-14 {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1b1c1e;
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
    margin-bottom: 20px;
}

.main .main-img {
    position: relative;
    width: 1050px;
    height: 700px;
    object-fit: contain;
}

.main .main-frame-body-wrapper {
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 150px 100px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-body-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-left-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.main .text-wrapper-15 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1b1c1e;
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .text-wrapper-16 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: normal;
}

.main .main-right-5 {
    width: 1018px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main .main-right-6 {
    flex-direction: column;
    width: 504px;
    height: 571px;
    gap: 40px;
    padding: 40px 60px;
    background-color: var(--gray-2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main .div-wrapper {
    width: 123px;
    height: 41px;
    justify-content: center;
    padding: 5px 25px;
    border-radius: 20.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    background-color: var(--white-1);
}

.main .text-wrapper-17 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 26px;
    text-align: center;
    letter-spacing: -0.52px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-right-wrapper {
    width: 374px;
    height: 324px;
    padding: 40px 103px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    background-color: var(--white-1);
}

.main .main-right-7 {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    flex: 0 0 auto;
}

.main .group {
    position: relative;
    width: 12px;
    height: 232px;
}

.main .frame {
    display: flex;
    flex-direction: column;
    /* width: 141px; */
    align-items: flex-start;
    gap: 13px;
    position: relative;
}

.main .text-wrapper-18 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 22px;
    letter-spacing: -0.40px;
    line-height: normal;
}

.main .text-wrapper-19 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 22px;
    letter-spacing: -0.40px;
    line-height: normal;
}

.main .main-right-8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.main .text-wrapper-20 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: var(--gray-8);
    font-size: 22px;
    text-align: center;
    letter-spacing: -0.44px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-right-9 {
    flex-direction: column;
    width: 504px;
    height: 571px;
    gap: 40px;
    padding: 50px 70px;
    background-color: #1a69d9;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main .main-right-10 {
    width: 123px;
    height: 41px;
    padding: 5px 25px;
    border-radius: 20.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    background-color: var(--blue-1);
}

.main .text-wrapper-21 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--blue-3);
    font-size: 26px;
    text-align: center;
    letter-spacing: -0.52px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-right-11 {
    width: 374px;
    height: 324px;
    padding: 150px 98px;
    margin-left: -5.00px;
    margin-right: -5.00px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    background-color: var(--blue-1);
}

.main .text-wrapper-22 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--blue-3);
    font-size: 22px;
    text-align: center;
    letter-spacing: -0.40px;
    line-height: normal;
    white-space: nowrap;
}

.main .text-wrapper-23 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: normal;
    white-space: nowrap;
}

/* 데스크톱에서는 모바일용 br 태그 숨기기 */
.main .text-wrapper-23 .mobile-br,
.main .text-wrapper-20 .mobile-br,
.main .text-wrapper-16 .mobile-br {
    display: none;
}

.main .main-frame-2 {
    align-items: center;
    gap: 50px;
    padding: 0px 100px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-top {
    display: flex;
    flex-direction: column;
    /* width: 443px; */
    align-items: center;
    gap: 5px;
    position: relative;
    flex: 0 0 auto;
}

.main .text-wrapper-24 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1b1c1e;
    font-size: 38px;
    text-align: center;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .text-wrapper-25 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1b1c1e;
    font-size: 38px;
    text-align: center;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .main-tab {
    display: flex;
    width: 214px;
    height: 52px;
    align-items: center;
    padding: 5px;
    position: relative;
    background-color: #f1f1f1;
    border-radius: 31px;
}

.main .rectangle-10 {
    position: relative;
    width: 102px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 21px;
}

.main .rectangle-11 {
    position: relative;
    width: 102px;
    height: 42px;
    border-radius: 21px;
}

.main .text-wrapper-26 {
    /* position: absolute; */
    top: 15px;
    left: calc(50.00% - 82px);
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--blue-3);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .text-wrapper-27 {
    /* position: absolute; */
    top: 15px;
    left: calc(50.00% + 20px);
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-bottom {
    display: flex;
    flex-direction: column;
    height: 926px;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 438px 0;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-frame-bottom {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    /* padding: 80px 13px; */
    padding: 80px 0 80px 70px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    margin-top: -435.00px;
    margin-bottom: -435.00px;
    background-color: var(--blue-1);
    border-radius: 60px;
    display: flex;
    position: relative;
}

.main .main-bottom-2 {
    align-items: center;
    justify-content: flex-end;
    gap: 46px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.main .main-bottom-3 {
    flex-direction: column;
    height: 726px;
    align-items: flex-start;
    gap: 307px;
    padding: 40px 30px;
    flex: 1;
    flex-grow: 1;
    background-color: var(--white-1);
    border-radius: 30px;
    display: flex;
    position: relative;
}

.main .main-bottom-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-bottom-5 {
    display: flex;
    flex-direction: column;
    /* width: 230px; */
    align-items: flex-start;
    gap: 15px;
    position: relative;
    flex: 0 0 auto;
}

.main .text-wrapper-28 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 20px;
    letter-spacing: -0.40px;
    line-height: normal;
}

.main .text-wrapper-29 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #121212;
    font-size: 30px;
    letter-spacing: -1.20px;
    line-height: normal;
}

.main .main-bottom-6 {
    position: relative;
    width: 557px;
    height: 1px;
    object-fit: cover;
}

.main .UI-UX-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding: 10px; */
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .UI-UX {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 28px;
}

.main .main-bottom-7 {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-bottom-8 {
    display: flex;
    width: 199px;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 0px 30px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid;
    border-color: #121212;
}

.main .text-wrapper-30 {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-bottom-wrapper {
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px;
    position: relative;
    background-color: #121212;
    border-radius: 20px;
}

.main .main-bottom-9 {
    position: relative;
    width: 18.33px;
    height: 18.33px;
}

.main .main-bottom-10 {
    display: flex;
    width: 184px;
    height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 0px 30px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid;
    border-color: #121212;
}

.main .main-frame-bottom-wrapper {
    display: flex;
    flex-direction: column;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    position: relative;
    background-color: #121212;
    border-radius: 20px;
}

.main .img-2 {
    position: relative;
    width: 13.55px;
    height: 13.55px;
}

.main .main-wrapper {
    flex-direction: column;
    width: 924px;
    align-items: flex-start;
    gap: 10px;
    display: flex;
    position: relative;
}

.main .main-frame-tablet {
    position: relative;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 1.22;
    object-fit: cover;
}

.main .main-frame-3 {
    align-items: flex-start;
    gap: 79px;
    padding: 150px 100px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-frame-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-frame-img {
    display: flex;
    align-items: center;
    gap: 198px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-lg {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 63px;
    object-fit: fill;
}

.main .main-kt {
    position: relative;
    width: 76px;
    height: 63px;
    object-fit: fill;
}

.main .main-hanhwa {
    position: relative;
    width: 248px;
    height: 63px;
    object-fit: fill;
}

.main .main-frame-4 {
    position: relative;
    width: 271px;
    height: 63px;
    object-fit: fill;
}

.main .main-frame-5 {
    height: 1240px;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    padding: 38px 100px;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-body-3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 100px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.main .main-left-box-3 {
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-frame-txt-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .main-frame-txt-3 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .main-frame-txt-4 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: transparent;
    font-size: 38px;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .text-wrapper-31 {
    color: #3182f6;
    letter-spacing: -0.29px;
}

.main .text-wrapper-32 {
    color: #66696d;
    letter-spacing: -0.29px;
}

.main .text-wrapper-33 {
    color: #ffffff;
    letter-spacing: -0.29px;
}

.main .main-left-tab {
    display: flex;
    flex-direction: column;
    width: 313px;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.main .main-frame-left {
    height: 71px;
    align-items: center;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 38px;
    display: flex;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-left-2 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: var(--blue-3);
    font-size: 26px;
    letter-spacing: -1.04px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-left-wrapper {
    height: 71px;
    align-items: center;
    padding: 20px 30px;
    border-radius: 38px;
    border: 1px solid;
    border-color: var(--white-2);
    display: flex;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.main .main-left-3 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-2);
    font-size: 26px;
    letter-spacing: -1.04px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-right-12 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.main .main-right-13 {
    display: flex;
    height: 350px;
    align-items: center;
    /* justify-content: center; */
    justify-content: space-evenly;
    /* gap: 116px; */
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 60px;
    cursor: pointer;
}

.main .main-right-14 {
    /* width: 330px;
  gap: 23px;
  padding: 90px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch; */
    width: 291px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 23px;
    position: relative;
}

.main .main-right-15 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #121212;
    font-size: 30px;
    letter-spacing: -0.60px;
    line-height: normal;
}

.main .main-right-16 {
    gap: 5px;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
}

.main .main-right-17 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-right-18 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-right-19 {
    position: relative;
    width: 318px;
    height: 350px;
    aspect-ratio: 0.91;
}

.main .main-right-20 {
    display: flex;
    height: 350px;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: space-evenly;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 60px;
    cursor: pointer;
}

.main .main-right-21 {
    /* align-items: center;
  justify-content: center;
  padding: 90px 0px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative; */
    width: 291px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 23px;
    position: relative;
}

.main .main-right-22 {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #121212;
    font-size: 30px;
    letter-spacing: -0.60px;
    line-height: normal;
    white-space: nowrap;
}

.main .main-right-23 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    position: relative;
    flex: 0 0 auto;
}

.main .main-right-24 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-right-25 {
    position: relative;
    width: 350px;
    height: 350px;
    aspect-ratio: 1;
    object-fit: cover;
}

.main .main-right-26 {
    display: flex;
    height: 350px;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: space-evenly;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 60px;
    cursor: pointer;
}

.main .main-left-tab .active {
    background-color: #f5f5f5;
}

.main .main-left-tab .active>span {
    color: var(--blue-3);
}

.main .main-right-27 {
    width: 291px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 23px;
    position: relative;
}

.main .main-right-28 {
    display: flex;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    position: relative;
    flex: 0 0 auto;
}

.main .main-right-29 {
    position: relative;
    width: 388px;
    height: 349px;
    aspect-ratio: 1.11;
    object-fit: cover;
}

.main .main-box-wrapper {
    display: flex;
    flex-direction: column;
    /* height: 520px; */
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 100px 520px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-radius: 60px;
    background-image: url(/about/renewal_img/main-frame7-body.png);
    background-size: cover;
    background-position: 50% 50%;
}

.main .main-frame-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-frame-txt-box {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-frame-txt-5 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 38px;
    text-align: center;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .main-frame-txt-6 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-1);
    font-size: 38px;
    text-align: center;
    letter-spacing: -0.76px;
    line-height: normal;
}

.main .main-frame-txt-wrapper {
    justify-content: center;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.main .main-frame-txt-7 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-4);
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 28px;
}

.main .main-btn {
    display: flex;
    flex-direction: column;
    width: 199px;
    height: 62px;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    position: relative;
    border-radius: 20px;
    border: 1px solid;
    border-color: var(--white-1);
    padding: 6px 0;
}

.main .main-btn-body {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
}

.main .main-btn-txt {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-1);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
}

.main .main-frame-btn {
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    position: relative;
    background-color: var(--white-1);
    border-radius: 20px;
}

.footer {
    display: flex;
    flex-direction: column;
    height: 301px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #1d1d1d;
    color: #7E7E7E;
}

/* 데스크톱에서는 데스크톱 footer만 표시 */
.footer-desktop {
    display: flex;
}

.footer-mobile {
    display: none;
}

.footer-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #1d1d1d;
}

.footer-left {
    display: flex;
    flex-direction: column;
    /* width: 430px;
  align-items: flex-start; */
    height: 100%;
    gap: 60px;
    position: relative;
}

.footer-logo-img {
    position: relative;
    width: 219px;
    height: 61px;
}

html .bsdevel-logo {
    /* position: absolute; */
    top: 1377px;
    left: 158px;
    width: 163px;
    height: 45px;
}

.main .rectangle-12 {
    position: absolute;
    top: 0;
    left: 5px;
    width: 209px;
    height: 61px;
}

.footer-logo-content {
    font-style: normal;
    /* display: grid; */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    /* height: 60px; */
    gap: 13px 175px;
    /* padding: 6px 76px;
  position: absolute; */
    /* top: 121px;
  left: 0;
  width: 430px; */
}

html .bsgroupceo-naver-com {
    /* position: absolute; */
    top: 0;
    left: calc(50.00% - 215px);
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #7e7e7e;
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 20px;
}

.main .vector-2 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    width: 1px;
    height: 7px;
}

.main .vector-3 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 1px;
    height: 7px;
}

.main .vector-4 {
    position: relative;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    width: 1px;
    height: 7px;
}

.main .vector-5 {
    position: relative;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    width: 1px;
    height: 7px;
}

.main .vector-6 {
    position: relative;
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    width: 1px;
    height: 7px;
}

.footer-right {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
    position: relative;
    flex: 0 0 auto;
}




html .text-wrapper-34 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    text-align: right;
    letter-spacing: -0.32px;
    line-height: normal;
}

html .text-wrapper-35 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    text-align: right;
    letter-spacing: -0.32px;
    line-height: normal;
}

html .text-wrapper-36 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
    text-align: right;
    letter-spacing: -0.40px;
    line-height: normal;
}

html .text-wrapper-37 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Light", Helvetica;
    font-weight: 300;
    color: #7e7e7e;
    font-size: 15px;
    text-align: right;
    letter-spacing: -0.30px;
    line-height: normal;
}

html .text-wrapper-38 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #7e7e7e;
    font-size: 15px;
    text-align: right;
    letter-spacing: -0.30px;
    line-height: normal;
}

html .button {
    all: unset;
    box-sizing: border-box;
    position: relative;
    width: 157px;
    height: 38px;
    margin-right: -2.00px;
}

html .rectangle-13 {
    margin-top:20px;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 155px;
    /* height: 38px; */
    border-radius: 7px;
    border: 1px solid;
    border-color: #8C939F;
    display: flex;
    justify-content: space-around;
}

html .text-wrapper-39 {
    margin-top:20px;
    /* position: absolute; */
    border-radius:5px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: #8C939F;
    font-size: 14px;
    letter-spacing: -0.30px;
    line-height: normal;
    white-space: nowrap;
    margin: auto 0;
}

.main .vector-7 {
    /* position: absolute; */
    /* width: 4.46%;
  height: 10.53%;
  top: 44.21%;
  left: 84.59%; */
    width: 13px;
    height: 8px;
    margin: auto 0;
}

/* Original CSS code should be injected here */

/* Enhanced button styles for better accessibility and interaction */
.btn-swiper {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn-swiper:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* .btn-swiper:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
} */

.top-banner-close {
    background: none;
    border: none;
    color: var(--white-1);
    cursor: pointer;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.top-banner-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-banner-close:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

.top-banner-box {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.top-banner-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-banner-box:focus {
    outline: 2px solid #00ff88;
    outline-offset: 2px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:focus {
    outline: 2px solid #1a69d9;
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(0);
}

.text-wrapper-26 {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--blue-3);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
    padding: 8px 16px;
    border-radius: 21px;
    transition: all 0.2s ease;
}

.text-wrapper-26:hover {
    background-color: rgba(26, 105, 217, 0.1);
}

.text-wrapper-26:focus {
    outline: 2px solid var(--blue-3);
    outline-offset: 2px;
}

.text-wrapper-27 {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-7);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: normal;
    padding: 8px 16px;
    border-radius: 21px;
    transition: all 0.2s ease;
}

.text-wrapper-27:hover {
    background-color: rgba(97, 100, 106, 0.1);
}

.text-wrapper-27:focus {
    outline: 2px solid var(--gray-7);
    outline-offset: 2px;
}

.main-bottom-8 {
    background: none;
    border: 1px solid #121212;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.main-bottom-8:hover {
    background-color: #121212;
    color: #ffffff;
}

.main-bottom-8:hover .text-wrapper-30 {
    color: #ffffff;
}

.main-bottom-8:focus {
    outline: 2px solid #1a69d9;
    outline-offset: 2px;
}

.main-bottom-10 {
    background: none;
    border: 1px solid #121212;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.main-bottom-10:hover {
    background-color: #121212;
    color: #ffffff;
}

.main-bottom-10:hover .text-wrapper-30 {
    color: #ffffff;
}

.main-bottom-10:focus {
    outline: 2px solid #1a69d9;
    outline-offset: 2px;
}

.main-frame-left {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 38px;
    transition: all 0.2s ease;
}

.main-frame-left:hover,
.main-frame-left.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.main-frame-left:focus {
    outline: 2px solid var(--blue-3);
    outline-offset: 2px;
}

.main-left-wrapper {
    background: none;
    cursor: pointer;
    border-radius: 38px;
    transition: all 0.2s ease;
}

.main-left-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.main-left-wrapper:focus {
    outline: 2px solid var(--white-2);
    outline-offset: 2px;
}

.main-btn {
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.main-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-btn:focus {
    outline: 2px solid var(--white-1);
    outline-offset: 2px;
}

.main-btn:active {
    transform: translateY(0);
}

.button:hover {
    background-color: rgba(238, 239, 242, 0.1);
}

.button:focus {
    outline: 2px solid var(--gray-2);
    outline-offset: 2px;
}

/* Enhanced accessibility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Improved focus management */
*:focus {
    outline-offset: 2px;
}

/* Desktop Responsive - 1270px and above (moved from new_style.css) */
@media (min-width: 1270px) and (max-width : 1399px) {

    /* top-banner-header */
    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        display: block;
    }

    /* Container max-width for large screens */
    .main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Header responsive adjustments */
    .header .h_inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* Top Banner */
    .top-banner-frame {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Main Hero Section */
    .main .view {
        position: relative;
        width: 95%;
        /* max-width: 100vw; */
        /* height: 70vh;
        max-height: 700px;
        min-height: 500px; */
    }

    .main .rectangle {
        left: 0;
        width: 100%;
        height: 100%;
    }

    .main img[src*="main-banner"] {
        left: 0;
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    .main .view img[src*="Frame 269"] {
        display: none;
    }

    .main .text-wrapper-4 {
        font-size: calc(16px + 0.3vw);
        left: 5%;
        right: auto;
        top: 315px;
    }

    .main .text-wrapper-5 {
        font-size: calc(32px + 0.8vw);
        left: 5%;
        right: auto;
        top: 360px;
    }

    .main .text-wrapper-6 {
        font-size: calc(32px + 0.8vw);
        left: 5%;
        right: auto;
        top: 420px;
    }

    .main .btn {
        left: 5% !important;
        right: auto;
        top: 505px;
    }

    .main .rectangle-2 {
        width: 184px;
        height: 62px;
    }

    .main .rectangle-3 {
        width: 62px;
        height: 62px;
    }

    .main .iconamoon-arrow {
        width: 28px;
        height: 28px;
    }

    .main .text-wrapper-7 {
        font-size: 18px;
    }

    /* Main Content Sections - Fluid Layout */
    .main-frame,
    .main-body-wrapper-1,
    .main-frame-body-wrapper,
    .main-frame-2,
    .main-frame-3,
    .main-frame-5 {
        width: 100%;
        padding: 60px 30px;
    }

    /* Second main-body-wrapper Section */
    .main .main-box-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 100px 195px;
        position: relative;
        align-self: stretch;
        width: 100%;
        border-radius: 60px;
        background-image: url(/about/renewal_img/main-frame7-body.png);
        background-size: cover;
        background-position: 50% 50%;
    }

    .main .main-frame-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-box {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-5 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-6 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-wrapper {
        justify-content: center;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-7 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-4);
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.36px;
        line-height: 28px;
    }

    .main .main-btn {
        display: flex;
        flex-direction: column;
        width: 199px;
        height: 62px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        position: relative;
        border-radius: 20px;
        border: 1px solid;
        border-color: var(--white-1);
        padding: 6px 0;
    }

    .main .main-btn-body {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-btn-txt {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .main-frame-btn {
        display: flex;
        width: 62px;
        height: 62px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px;
        position: relative;
        background-color: var(--white-1);
        border-radius: 20px;
    }

    .main-body,
    .main-frame-body,
    .main-body-2,
    .main-body-3 {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* Flexible grid layouts */
    .main-box {
        display: flex;
        gap: 25px;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .main-left-box {
        flex: 1;
        min-width: 280px;
    }

    .main-right {
        flex: 1.3;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .main-bottom-2 {
        display: flex;
        gap: calc(25px + 0.8vw);
        align-items: center;
        flex-wrap: wrap;
    }

    .main-bottom-3 {
        flex: 1;
        min-width: 300px;
    }

    .main-wrapper {
        flex: 1;
        min-width: 300px;
    }

    /* Stats Container */
    .bs-stats-container {
        display: flex;
        max-width: 1200px;
        gap: 15px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    /* Features Grid */
    .bs-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* FAQ Section */
    .bs-faq-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Client Logos */
    .main-frame-img {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-body {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 100px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-left {
        flex: 2;
        min-width: 300px;
    }

    .footer-right {
        flex: 1;
        min-width: 200px;
    }

    /* Main Text Section - Responsive */
    .main-txt {
        text-align: center;
        /* padding: 20px; */
        margin-bottom: 40px;
    }

    .main-txt h2 {
        line-height: 1.3;
    }

    .main-txt .text-wrapper-8,
    .main-txt .text-wrapper-9 {
        font-size: calc(26px + 0.5vw);
    }

    .main-txt .p {
        font-size: calc(14px + 0.2vw);
        line-height: 1.6;
        color: #666;
    }

    /* Main Body Wrapper - Responsive */
    .main-body-wrapper-1 {
        width: 100%;
        min-height: auto;
        padding: 60px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-frame-body {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .main-frame-txt {
        margin-bottom: 30px;
    }

    .main-frame-txt .text-wrapper-13,
    .main-frame-txt .text-wrapper-14 {
        font-size: calc(26px + 0.6vw);
        line-height: 1.3;
    }

    .main-frame-txt .text-wrapper-14 {
        margin-bottom: 20px;
    }

    .main-frame-txt .p {
        font-size: calc(14px + 0.2vw);
        line-height: 1.6;
        color: #666;
    }

    .main-img {
        max-width: 400px;
        height: auto;
        margin-top: 20px;
    }

    /* Main Frame Body Wrapper - Responsive */
    .main .main-frame-body-wrapper {
        padding: 60px 100px;
        gap: 8px;
    }

    .main .main-left-txt .text-wrapper-15,
    .main .main-left-txt .text-wrapper-14 {
        font-size: calc(16px + 0.8vw);
        line-height: 1.3;
    }

    .main .main-left-txt .text-wrapper-16 {
        font-size: calc(12px + 0.3vw);
        line-height: 1.5;
    }

    .main .main-right-5 {
        width: 100%;
        max-width: 600px;
        gap: 8px;
    }

    .main .main-right-6 {
        width: 48%;
        min-width: 300px;
        height: auto;
        min-height: 400px;
    }

    .main .main-right-7 {
        /* gap: 12px; */
        margin: 0 auto;
    }

    .main .text-wrapper-17 {
        font-size: calc(14px + 0.2vw);
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: calc(14px + 0.2vw);
        line-height: 1.4;
    }

    .main .div-wrapper {
        width: 100px;
        height: 35px;
        padding: 4px 20px;
    }

    .main .main-right-wrapper {
        width: 100%;
        max-width: 215px;
        height: auto;
        min-height: 280px;
        padding: 35px 25px;
    }

    .main .frame {
        gap: 14px;
    }

    .main .group {
        width: 10px;
        height: auto;
        min-height: 200px;
    }

    .main .main-right-8 {
        gap: 8px;
        padding: 8px 16px;
    }

    .main .text-wrapper-20 {
        font-size: calc(10px + 0.2vw);
    }

    .main .main-right-9 {
        width: 48%;
        min-width: 300px;
        height: auto;
        min-height: 400px;
    }

    .main .main-right-10 {
        width: 100px;
        height: 35px;
        padding: 4px 20px;
    }

    .main .text-wrapper-21 {
        font-size: calc(14px + 0.2vw);
    }

    .main .main-right-11 {
        width: 100%;
        max-width: 215px;
        height: auto;
        min-height: 280px;
        padding: 130px 25px;
    }

    .main .text-wrapper-22 {
        font-size: calc(14px + 0.2vw);
        line-height: 1.4;
    }

    .main .text-wrapper-23 {
        font-size: calc(10px + 0.2vw);
    }

    /* Main Bottom Section - 1060px Responsive */
    .main .main-bottom {
        height: auto;
        min-height: 600px;
        /* padding: 40px 20px; */
    }

    .main .main-bottom-2 {
        gap: 30px;
        flex-wrap: wrap;
    }

    .main .main-bottom-3 {
        height: auto;
        min-height: 450px;
        gap: 150px;
        padding: 30px 20px;
    }

    .main .main-bottom-4 {
        gap: 25px;
    }

    .main .main-bottom-5 {
        gap: 12px;
    }

    .main .main-bottom-6 {
        width: 100%;
        max-width: 400px;
    }

    .main .main-bottom-7 {
        gap: 8px;
        flex-wrap: wrap;
    }

    .main .main-bottom-8 {
        width: 160px;
        height: 50px;
    }

    .main .main-bottom-wrapper,
    .main .main-frame-bottom-wrapper {
        width: 50px;
        height: 50px;
    }

    .main .main-bottom-9 {
        width: 15px;
        height: 15px;
    }

    .main .main-bottom-10 {
        width: 150px;
        height: 50px;
    }

    /* Main Frame 3 Section - 1060px Responsive */
    .main .main-frame-3 {
        gap: 40px;
        padding: 80px 100px;
    }

    .main .main-frame-img {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main .main-lg {
        position: relative;
        flex: 0 0 auto;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-kt {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-hanhwa {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-frame-4 {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    /* Main Frame 5 Section - 1060px Responsive */
    .main .main-frame-5 {
        height: auto;
        min-height: 800px;
        padding: 100px;
        gap: 10px;
    }

    .main .main-body-3 {
        flex-direction: column;
        gap: 40px;
    }

    .main .main-left {
        gap: 50px;
        width: 100%;
    }

    .main .main-left-box-3 {
        gap: 8px;
    }

    .main .main-frame-txt-2 {
        font-size: calc(24px + 0.5vw);
    }

    .main .main-frame-txt-3 {
        font-size: calc(24px + 0.5vw);
    }

    .main .main-frame-txt-4 {
        font-size: calc(14px + 0.3vw);
    }

    .main .main-left-tab {
        width: 100%;
        max-width: 280px;
        gap: 15px;
    }

    .main .main-frame-left {
        height: 60px;
        padding: 15px 25px;
    }

    .main .main-left-wrapper {
        height: 60px;
        padding: 15px 25px;
    }

    .main .main-left-2 {
        font-size: 24px;
    }

    .main .main-left-3 {
        font-size: 24px;
    }

    .main .main-right-12 {
        gap: 25px;
        width: 100%;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        height: auto;
        min-height: 280px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .main .main-right-14 {
        width: 100%;
        max-width: 280px;
        padding: 60px 20px;
        gap: 18px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: calc(18px + 0.3vw);
    }

    .main .main-right-16 {
        gap: 4px;
    }

    .main .main-right-17,
    .main .main-right-18,
    .main .main-right-24 {
        font-size: calc(12px + 0.2vw);
    }

    .main .main-right-19 {
        width: 250px;
        height: auto;
    }

    .main .main-right-21 {
        padding: 60px 20px;
    }

    .main .main-right-23 {
        gap: 18px;
    }

    .main .main-right-25 {
        width: 280px;
        height: 280px;
    }

    .main .main-right-27 {
        width: 100%;
        max-width: 250px;
        gap: 18px;
    }

    .main .main-right-28 {
        gap: 4px;
    }

    .main .main-right-29 {
        width: 300px;
        height: auto;
    }

    /* Dynamic text sizing */
    .text-wrapper-8,
    .text-wrapper-9 {
        font-size: calc(28px + 0.6vw);
    }

    .text-wrapper-13,
    .text-wrapper-14,
    .text-wrapper-15 {
        font-size: calc(26px + 0.6vw);
    }

    .text-wrapper-24,
    .text-wrapper-25 {
        font-size: calc(26px + 0.6vw);
    }
}

/* Tablet & Mobile - Below 1270px */
@media (max-width: 1270px) {
    .main .main-body-wrapper {
        margin: 50px 0;
        padding: 120px;
    }

    .header {
        box-sizing: border-box;
        /* top: 70px; */
    }
}

@media (max-width: 1269px) {

    html .text-wrapper-34{text-align: left;}
    html .text-wrapper-35{text-align: left;}
    html .text-wrapper-36{text-align: left;}
    html .text-wrapper-37{text-align: left;}
    html .text-wrapper-38{text-align: left;}


    /* header */
    .header {
        box-sizing: border-box;
        /* top: 70px; */
    }

    .header .h_inner {
        max-width: 100%;
        padding: 0;
    }

    .header-logo img {
        max-height: 35px;
        min-width: 120px;
    }

    .header-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    /* .mobile-menu {
        display: none;
    } */

    /* .mobile-menu.active {
        display: flex;
    } */

    /* .mobile-menu-header {
        padding: 0 20px;
        margin-bottom: 45px;
    }

    .mobile-menu a {
        padding: 15px 20px;
        font-size: 18px;
        color: #333;
    } */

    /* .mobile-cta-button {
        margin: 20px 15px;
        width: 209px;
        height: 49px;
    } */

    /* top-banner-header */
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    /* view section */
    .main .view {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
    }

    .main img[src*="main-banner"] {
        display: none;
        width: 100%;
    }

    .main .view img[src*="Frame 269"] {
        display: block;
        /* position: absolute;
        top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    .main .text-wrapper-4 {
        position: absolute;
        top: 30%;
        left: 25%;
        transform: translate(-50%, -50%);
        margin-top: -100px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
        text-align: center;
        width: 100%;
    }

    .main .text-wrapper-5 {
        position: absolute;
        top: 30%;
        left: 32.4%;
        transform: translate(-50%, -50%);
        margin-top: -50px;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .text-wrapper-6 {
        position: absolute;
        top: 28.5%;
        left: 28.4%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .btn {
        position: absolute;
        top: 29%;
        left: 29% !important;
        transform: translate(-50%, -50%);
        margin-top: 80px;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 17px;
        letter-spacing: -0.44px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }

    /* footer */
    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #1d1d1d;
    }

    /* 모바일에서는 모바일 footer만 표시 */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: flex !important;
    }

    .footer-body {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 40px 120px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #1d1d1d;
        gap: 30px;
    }

    .footer-logo-img {
        position: relative;
        width: 180px;
        height: 50px;
    }

    html .bsdevel-logo {
        width: 180px;
        height: 50px;
    }

    .footer-logo-content {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main .bsgroupceo-naver-com {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 18px;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-34 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 14px;
        text-align: start;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .main .text-wrapper-35 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 14px;
        text-align: center;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .main .text-wrapper-36 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: #ffffff;
        font-size: 16px;
        text-align: start;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .text-wrapper-37 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #7e7e7e;
        font-size: 12px;
        text-align: start;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .main .text-wrapper-38 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 12px;
        text-align: start;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    /* main-frame section - mobile vertical layout */
    .main .main-frame {
        padding: 60px 120px;
        gap: 30px;
    }

    .main .main-body {
        padding: 0px;
        height: auto;
        gap: 40px;
    }

    .main .main-txt {
        height: auto;
    }

    .main .text-wrapper-8,
    .main .text-wrapper-9 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .main .p {
        font-size: 16px;
        letter-spacing: -0.32px;
        white-space: normal;
        text-align: center;
    }

    /* main-box - stack vertically */
    .main .main-box {
        flex-direction: column;
        gap: 20px;
    }

    .main .main-left-box {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 40px 30px;
        border-radius: 30px;
    }

    .main .main-frame-left-box {
        gap: 15px;
    }

    .main .text-wrapper-10 {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    .main .text-wrapper-11 {
        font-size: 16px;
        letter-spacing: -0.64px;
        line-height: 24px;
    }

    .main .main-left-box-2 {
        /* Keep same flex layout as PC */
        flex-wrap: wrap;
        width: 156.33px;
        gap: 0px 3px;
        display: flex;
        align-items: flex-start;
    }

    .main .ellipse,
    .main .ellipse-2 {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }

    .main .rectangle-4 {
        width: 55px;
        height: 55px;
        border-radius: 8px;
    }

    /* main-right - stack vertically */
    .main .main-right {
        width: 100%;
        gap: 20px;
    }

    .main .main-frame-right {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 40px 30px;
        border-radius: 30px;
        /* Keep horizontal layout like PC */
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .main .main-right-2 {
        flex: 1;
        align-self: stretch;
        gap: 15px;
        justify-content: center;
    }

    .main .text-wrapper-12 {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .main .main-right-3 {
        /* Keep same layout as PC */
        width: 145px;
        align-items: flex-end;
        gap: 9px;
    }

    .main .rectangle-5,
    .main .rectangle-6,
    .main .rectangle-7 {
        height: 14px;
    }

    .main .main-right-4 {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 40px 30px;
        border-radius: 30px;
        /* Keep horizontal layout like PC */
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .main .main-frame-right-box {
        flex: 1;
        gap: 15px;
        align-self: center;
    }

    .main .main-frame-right-box-2 {
        /* Keep same layout as PC */
        width: 118px;
        align-items: center;
        display: flex;
    }

    .main .rectangle-8,
    .main .rectangle-9 {
        width: 40px;
        height: 40px;
        border-radius: 5px;
    }

    .main .rectangle-9 {
        margin-right: -14px;
    }

    /* main-body-wrapper */
    .main .main-body-wrapper-1 {
        height: auto;
        padding: 60px 120px;
        gap: 30px;
    }

    .main .main-frame-body {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        border-radius: 30px;
    }

    .main .main-frame-txt {
        width: 100%;
        height: auto;
        text-align: start;
        align-items: start;
    }

    .main .text-wrapper-13,
    .main .text-wrapper-14 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .main .main-img {
        width: 100%;
        height: auto;
        max-width: 500px;
    }

    .main .main-box-wrapper {
        padding: 40px 90px;
        border-radius: 25px;
        gap: 25px;
    }

    /* main-frame-body-wrapper */
    .main .main-frame-body-wrapper {
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 60px 120px;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-body-2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 40px;
    }

    .main .main-left-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
        text-align: start;
        align-items: start;
    }

    .main .text-wrapper-15 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1b1c1e;
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: normal;
        text-align: start;
    }

    .main .text-wrapper-16 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-7);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
        text-align: start;
        white-space: normal;
        /* 줄바꿈 허용 */
    }

    .main .main-right-5 {
        width: 100%;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: row;
    }

    .main .main-right-6 {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 350px;
        gap: 40px;
        padding: 40px 30px;
        background-color: var(--gray-2);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .main .div-wrapper,
    .main .main-right-10 {
        width: 100px;
        height: 28px;
        justify-content: center;
        padding: 4px 15px;
        border-radius: 20.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        background-color: var(--white-1);
    }

    .main .text-wrapper-17 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 20px;
        text-align: center;
        letter-spacing: -0.4px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .main-right-wrapper {
        width: 100%;
        max-width: 300px;
        height: 237px;
        padding: 30px 20px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        background-color: var(--white-1);
    }

    .main .main-right-7 {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        position: relative;
        flex: 0 0 auto;
        margin: 0 auto;
        text-align: center;
    }

    .main .group {
        display: none;
    }

    .main .frame {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
    }

    .main .text-wrapper-18 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .text-wrapper-19 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .main-right-8 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .text-wrapper-20 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--gray-8);
        font-size: 14px;
        text-align: center;
        letter-spacing: -0.28px;
        line-height: 1.4;
        white-space: normal;
        /* 줄바꿈 허용 */
    }

    .main .main-right-9 {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 350px;
        gap: 40px;
        padding: 40px 30px;
        background-color: #1a69d9;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* .main .main-right-10 {
        width: 80px;
        height: 28px;
        padding: 4px 15px;
        border-radius: 20.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        background-color: var(--blue-1);
    } */

    .main .text-wrapper-21 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 20px;
        text-align: center;
        letter-spacing: -0.4px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .main-right-11 {
        width: 100%;
        max-width: 300px;
        height: 237px;
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        background-color: var(--blue-1);
    }

    .main .text-wrapper-22 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 16px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: 1.5;
        white-space: nowrap;
    }

    .main .text-wrapper-23 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 14px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: 1.4;
        white-space: normal;
        /* 줄바꿈 허용 */
    }

    /* 모바일에서 br 태그 표시 */
    .main .text-wrapper-23 .mobile-br,
    .main .text-wrapper-20 .mobile-br,
    .main .text-wrapper-16 .mobile-br {
        display: inline;
    }

    /* main-frame-2 section */
    .main .main-frame-2 {
        align-items: center;
        gap: 40px;
        padding: 0px 120px;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-24 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1b1c1e;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
    }

    .main .text-wrapper-25 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1b1c1e;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
    }

    .main .main-tab {
        display: flex;
        width: 180px;
        height: 46px;
        align-items: center;
        padding: 4px;
        position: relative;
        background-color: #f1f1f1;
        border-radius: 31px;
    }

    .main .rectangle-10 {
        position: relative;
        width: 86px;
        height: 38px;
        background-color: #ffffff;
        border-radius: 21px;
    }

    .main .rectangle-11 {
        position: relative;
        width: 86px;
        height: 38px;
        border-radius: 21px;
    }

    .main .text-wrapper-26 {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-3);
        font-size: 15px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .text-wrapper-27 {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-7);
        font-size: 15px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .main-bottom {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 800px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        padding: 60px 0px;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-frame-bottom {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
        padding: 60px 20px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        margin-top: 0;
        margin-bottom: 0;
        background-color: var(--blue-1);
        border-radius: 30px;
        display: flex;
        position: relative;
    }

    .main .main-bottom-2 {
        align-items: center;
        justify-content: flex-end;
        gap: 30px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        position: relative;
        flex-direction: column;
    }

    .main .main-bottom-3 {
        flex-direction: column;
        height: auto;
        min-height: 500px;
        align-items: flex-start;
        gap: 40px;
        padding: 30px 20px;
        flex: 1;
        flex-grow: 1;
        background-color: var(--white-1);
        border-radius: 30px;
        display: flex;
        position: relative;
        width: 100%;
    }

    .main .main-bottom-4 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-bottom-5 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-28 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-7);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .text-wrapper-29 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #121212;
        font-size: 24px;
        letter-spacing: -0.96px;
        line-height: normal;
    }

    .main .main-bottom-6 {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 1px;
        object-fit: cover;
    }

    .main .UI-UX-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .UI-UX {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-7);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 22px;
    }

    .main .main-bottom-7 {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
    }

    .main .main-bottom-8 {
        display: flex;
        width: 100%;
        /* max-width: 280px; */
        height: 56px;
        align-items: center;
        justify-content: space-between;
        padding: 0px 0px 0px 25px;
        position: relative;
        background-color: #ffffff;
        border-radius: 20px;
        border: 1px solid;
        border-color: #121212;
    }

    .main .text-wrapper-30 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #121212;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .main-bottom-wrapper {
        display: flex;
        width: 56px;
        height: 56px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        position: relative;
        background-color: #121212;
        border-radius: 20px;
    }

    .main .main-bottom-9 {
        position: relative;
        width: 16px;
        height: 16px;
    }

    .main .main-bottom-10 {
        display: flex;
        width: 100%;
        /* max-width: 280px; */
        height: 56px;
        align-items: center;
        justify-content: space-between;
        padding: 0px 0px 0px 25px;
        position: relative;
        background-color: #ffffff;
        border-radius: 20px;
        border: 1px solid;
        border-color: #121212;
    }

    .main .main-frame-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 56px;
        height: 56px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #121212;
        border-radius: 20px;
    }

    .main .img-2 {
        position: relative;
        width: 12px;
        height: 12px;
    }

    .main .main-wrapper {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 10px;
        display: flex;
        position: relative;
    }

    .main .main-frame-tablet {
        position: relative;
        align-self: stretch;
        width: 100%;
        aspect-ratio: 1.22;
        object-fit: cover;
    }

    /* main-frame-3 section */
    .main .main-frame-3 {
        align-items: flex-start;
        gap: 60px;
        padding: 60px 120px;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-frame-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
    }

    .main .main-frame-img {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main .main-lg {
        position: relative;
        flex: 0 0 auto;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-kt {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-hanhwa {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    .main .main-frame-4 {
        position: relative;
        width: calc(50% - 15px);
        max-width: 200px;
        height: 50px;
        object-fit: contain;
    }

    /* main-frame-5 section */
    .main .main-frame-5 {
        height: auto;
        min-height: 1000px;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 10px;
        padding: 60px 120px;
        background-color: #181818;
        display: flex;
        flex-direction: column;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-body-3 {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 50px;
    }

    .main .main-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 50px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .main .main-left-box-3 {
        flex-direction: column;
        align-items: flex-start;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-frame-txt-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: normal;
    }

    .main .main-frame-txt-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: normal;
    }

    .main .main-frame-txt-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: normal;
    }

    .main .main-left-tab {
        display: none;
    }

    .main .main-frame-left {
        height: 64px;
        align-items: center;
        padding: 18px 26px;
        background-color: #ffffff;
        border-radius: 38px;
        display: flex;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-left-2 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--blue-3);
        font-size: 22px;
        letter-spacing: -0.88px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .main-left-wrapper {
        height: 64px;
        align-items: center;
        padding: 18px 26px;
        border-radius: 38px;
        border: 1px solid;
        border-color: var(--white-2);
        display: flex;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
    }

    .main .main-left-3 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-2);
        font-size: 22px;
        letter-spacing: -0.88px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .main-right-12 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .main .main-right-13 {
        display: flex;
        height: auto;
        min-height: 500px;
        align-items: center;
        justify-content: space-evenly;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f5f5f5;
        border-radius: 30px;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 0;
    }

    .main .main-right-14 {
        width: 100%;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .main .main-right-15 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #121212;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: normal;
    }

    .main .main-right-16 {
        gap: 5px;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        align-self: stretch;
    }

    .main .main-right-17 {
        position: relative;
        align-self: stretch;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #121212;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .main-right-19 {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 0.91;
    }

    .main .main-right-20 {
        display: flex;
        height: auto;
        min-height: 500px;
        align-items: center;
        justify-content: space-evenly;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f5f5f5;
        border-radius: 30px;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 0;
    }

    .main .main-right-21 {
        width: 100%;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .main .main-right-22 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #121212;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .main-right-23 {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-right-24 {
        position: relative;
        width: fit-content;
        margin-top: -1px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #121212;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .main .main-right-25 {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .main .main-right-26 {
        display: flex;
        height: auto;
        min-height: 500px;
        align-items: center;
        justify-content: space-evenly;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f5f5f5;
        border-radius: 30px;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 0;
    }

    .main .main-right-27 {
        width: 100%;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .main .main-right-28 {
        display: flex;
        align-self: stretch;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-right-29 {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1.11;
        object-fit: cover;
    }
}

/* Mobile Small - Below 768px */
@media (max-width: 767px) {


    .header {
        box-sizing: border-box;
        /* top: 70px; */
    }

    .main .main-body-wrapper {
        padding: 30px;
    }

    .main-hero-slider .swiper-slide .image {
        padding: 10px !important;
    }

    .main .main-body-wrapper-1,
    .main .main-frame-body-wrapper {
        padding: 30px !important;
    }

    /* top-banner-header */
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 17px;
        letter-spacing: -0.36px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }

    /* view section */
    .main .view {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
    }

    .main img[src*="main-banner"] {
        display: none;
        width: 100%;
    }

    .main .view img[src*="Frame 269"] {
        display: block;
        /* position: absolute;
        top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    .main .text-wrapper-4 {
        position: absolute;
        top: 30%;
        left: 25%;
        transform: translate(-50%, -50%);
        margin-top: -100px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
        text-align: center;
        width: 100%;
    }

    .main .text-wrapper-5 {
        position: absolute;
        top: 30%;
        left: 32.4%;
        transform: translate(-50%, -50%);
        margin-top: -50px;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .text-wrapper-6 {
        position: absolute;
        top: 28.5%;
        left: 28.4%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .btn {
        position: absolute;
        top: 29%;
        left: 26%;
        transform: translate(-50%, -50%);
        margin-top: 80px;
    }

    /* footer */
    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #1d1d1d;
    }

    /* 모바일에서는 모바일 footer만 표시 */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: flex !important;
    }

    .footer-body {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 35px 30px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #1d1d1d;
        gap: 25px;
    }

    .footer-logo-img {
        position: relative;
        width: 160px;
        height: 44px;
    }

    html .bsdevel-logo {
        width: 160px;
        height: 44px;
    }

    .footer-logo-content {
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main .bsgroupceo-naver-com {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: 16px;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 7px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-34 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 13px;
        text-align: start;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .main .text-wrapper-35 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .main .text-wrapper-36 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: #ffffff;
        font-size: 15px;
        text-align: start;
        letter-spacing: -0.3px;
        line-height: normal;
    }

    .main .text-wrapper-37 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #7e7e7e;
        font-size: 11px;
        text-align: start;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .main .text-wrapper-38 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 11px;
        text-align: start;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .main .main-frame {
        padding: 40px 15px;
        gap: 25px;
    }

    /* main-body-wrapper section (무료체험 신청) */
    .main .main-box-wrapper {
        padding: 80px 100px;
        border-radius: 35px;
        gap: 30px;
    }

    .main .main-frame-txt-5,
    .main .main-frame-txt-6 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .main .main-frame-txt-7 {
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 24px;
    }

    .main .main-body {
        padding: 0px 15px;
        gap: 30px;
    }

    .main .text-wrapper-8,
    .main .text-wrapper-9 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .main .p {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .main .main-left-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .main .text-wrapper-10 {
        font-size: 20px;
    }

    .main .text-wrapper-11,
    .main .text-wrapper-12 {
        font-size: 14px;
        line-height: 22px;
    }

    /* Keep PC layout for these decorative elements */
    .main .main-left-box-2 {
        width: 120px;
    }

    .main .ellipse,
    .main .ellipse-2 {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }

    .main .rectangle-4 {
        width: 45px;
        height: 45px;
    }

    .main .main-frame-right,
    .main .main-right-4 {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .main .main-right-3 {
        width: 110px;
    }

    .main .rectangle-5,
    .main .rectangle-6,
    .main .rectangle-7 {
        height: 12px;
    }

    .main .main-frame-right-box-2 {
        width: 90px;
    }

    .main .rectangle-8,
    .main .rectangle-9 {
        width: 35px;
        height: 35px;
    }

    .main .rectangle-9 {
        margin-right: -12px;
    }

    .main .main-frame-body {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .main .text-wrapper-13,
    .main .text-wrapper-14,
    .main .text-wrapper-15 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    /* main-frame-body-wrapper - keep flex layout for main-right-5 */
    .main .main-frame-body-wrapper {
        padding: 50px 15px;
    }

    .main .main-body-2 {
        gap: 35px;
    }

    .main .text-wrapper-15 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .main .text-wrapper-16 {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .main .main-right-5 {
        gap: 15px;
    }

    .main .main-right-6 {
        min-height: 300px;
        padding: 35px 25px;
        gap: 35px;
    }

    .main .div-wrapper {
        width: 100px;
        height: 26px;
        padding: 4px 12px;
    }

    .main .text-wrapper-17 {
        font-size: 18px;
    }

    .main .main-right-wrapper {
        max-width: 100%;
        padding: 25px 18px;
        min-height: 220px;
    }

    .main .frame {
        gap: 10px;
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: 14px;
        text-align: center;
    }

    .main .main-right-8 {
        gap: 5px;
    }

    .main .text-wrapper-20 {
        font-size: 12px;
    }

    .main .main-right-9 {
        min-height: 300px;
        padding: 35px 25px;
        gap: 35px;
    }

    .main .main-right-10 {
        width: 100px;
        height: 26px;
        padding: 4px 12px;
    }

    .main .text-wrapper-21 {
        font-size: 18px;
    }

    .main .main-right-11 {
        max-width: 100%;
        padding: 90px 18px;
        min-height: 220px;
    }

    .main .text-wrapper-22 {
        font-size: 14px;
    }

    .main .text-wrapper-23 {
        color: var(--white-1);
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        font-size: 12px;

    }

    /* main-frame-2 */
    .main .main-frame-2 {
        gap: 35px;
        padding: 0px 15px;
    }

    .main .text-wrapper-24,
    .main .text-wrapper-25 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .main .main-tab {
        width: 170px;
        height: 44px;
    }

    .main .rectangle-10,
    .main .rectangle-11 {
        width: 81px;
        height: 36px;
    }

    .main .text-wrapper-26,
    .main .text-wrapper-27 {
        font-size: 13px;
    }

    .main .main-bottom {
        min-height: 700px;
        padding: 50px 15px;
    }

    .main .main-frame-bottom {
        padding: 50px 15px;
        border-radius: 25px;
    }

    .main .main-bottom-2 {
        gap: 25px;
    }

    .main .main-bottom-3 {
        min-height: 450px;
        gap: 35px;
        padding: 25px 18px;
        border-radius: 25px;
    }

    .main .main-bottom-4 {
        gap: 22px;
    }

    .main .main-bottom-5 {
        gap: 10px;
    }

    .main .text-wrapper-28 {
        font-size: 15px;
    }

    .main .text-wrapper-29 {
        font-size: 22px;
        letter-spacing: -0.88px;
    }

    .main .main-bottom-6 {
        max-width: 450px;
    }

    .main .UI-UX {
        font-size: 13px;
        line-height: 20px;
    }

    .main .main-bottom-7 {
        gap: 12px;
    }

    .main .main-bottom-8,
    .main .main-bottom-10 {
        /* max-width: 260px; */
        height: 52px;
        padding: 0px 0px 0px 22px;
    }

    .main .text-wrapper-30 {
        font-size: 15px;
    }

    .main .main-bottom-wrapper,
    .main .main-frame-bottom-wrapper {
        width: 52px;
        height: 52px;
        padding: 14px;
    }

    .main .main-bottom-9 {
        width: 15px;
        height: 15px;
    }

    .main .img-2 {
        width: 11px;
        height: 11px;
    }

    /* main-frame-3 */
    .main .main-frame-3 {
        gap: 50px;
        padding: 50px 30px;
    }

    .main .main-frame-img {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main .main-lg {
        flex: 0 0 auto;
        width: calc(50% - 12.5px);
        max-width: 180px;
        height: 45px;
    }

    .main .main-kt,
    .main .main-hanhwa,
    .main .main-frame-4 {
        width: calc(50% - 12.5px);
        max-width: 180px;
        height: 45px;
    }

    /* main-frame-5 */
    .main .main-frame-5 {
        min-height: 900px;
        padding: 50px 30px;
    }

    .main .main-body-3 {
        gap: 45px;
    }

    .main .main-left {
        gap: 45px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3,
    .main .main-frame-txt-4 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .main .main-left-tab {
        display: none;
    }

    .main .main-frame-left {
        height: 60px;
        padding: 16px 24px;
    }

    .main .main-left-2 {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .main .main-left-wrapper {
        height: 60px;
        padding: 16px 24px;
    }

    .main .main-left-3 {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .main .main-right-12 {
        gap: 28px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        min-height: 450px;
        border-radius: 25px;
        gap: 28px;
        padding: 35px 18px 0;
    }

    .main .main-right-14,
    .main .main-right-21,
    .main .main-right-27 {
        gap: 18px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .main .main-right-17,
    .main .main-right-24 {
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .main .main-right-19,
    .main .main-right-25,
    .main .main-right-29 {
        max-width: 350px;
    }

    .main .main-right-23,
    .main .main-right-28 {
        gap: 18px;
    }
}

/* Mobile Extra Small - Below 576px */
@media (max-width: 575px) {




    .header {
        box-sizing: border-box;
        /* top: 60px; */
    }

    /* top-banner-header */
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 14px;
        height: 14px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }

    /* view section */
    .main .view {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 15px;
    }

    .main img[src*="main-banner"] {
        /* position: absolute;
        top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        display: none;
    }

    .main .view img[src*="Frame 269"] {
        display: block;
        /* position: absolute;
        top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    .main .text-wrapper-4 {
        position: absolute;
        top: 30%;
        left: 25%;
        transform: translate(-50%, -50%);
        margin-top: -90px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
        text-align: center;
        width: 100%;
    }

    .main .text-wrapper-5 {
        position: absolute;
        top: 30%;
        left: 34%;
        transform: translate(-50%, -50%);
        margin-top: -45px;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 24px;
        text-align: center;
        letter-spacing: -0.48px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .text-wrapper-6 {
        position: absolute;
        top: 28.5%;
        left: 29%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 24px;
        text-align: center;
        letter-spacing: -0.48px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .btn {
        position: absolute;
        top: 29%;
        left: 29%;
        transform: translate(-50%, -50%);
        margin-top: 70px;
    }

    /* footer */
    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #1d1d1d;
    }

    .footer-body {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 30px 30px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #1d1d1d;
        gap: 20px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: start;
        height: auto;
        gap: 20px;
        position: relative;
    }

    .footer-logo-img {
        position: relative;
        width: 140px;
        height: 38px;
    }

    html .bsdevel-logo {
        width: 140px;
        height: 38px;
    }

    .footer-logo-content {
        gap: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main .bsgroupceo-naver-com {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 9px;
        letter-spacing: -0.18px;
        line-height: 14px;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 6px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-34 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 11px;
        text-align: start;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .main .text-wrapper-35 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 11px;
        text-align: center;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .main .text-wrapper-36 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: #ffffff;
        font-size: 13px;
        text-align: start;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .main .text-wrapper-37 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #7e7e7e;
        font-size: 10px;
        text-align: start;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .text-wrapper-38 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 10px;
        text-align: start;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .main-frame {
        padding: 30px 15px;
        gap: 20px;
    }

    .main .main-body {
        padding: 0px 10px;
        gap: 25px;
    }

    /* main-body-wrapper section (무료체험 신청) */
    .main .main-box-wrapper {
        padding: 40px 60px;
        border-radius: 25px;
        gap: 25px;
    }

    .main .main-frame-txt-5,
    .main .main-frame-txt-6 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .main-frame-txt-7 {
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 20px;
    }

    .main .text-wrapper-8,
    .main .text-wrapper-9 {
        font-size: 22px;
    }

    .main .p {
        font-size: 13px;
    }

    .main .main-left-box {
        padding: 25px 15px;
        min-height: 250px;
    }

    .main .text-wrapper-10 {
        font-size: 18px;
    }

    .main .text-wrapper-11,
    .main .text-wrapper-12 {
        font-size: 13px;
        line-height: 20px;
    }

    /* Keep PC layout for decorative elements */
    .main .main-left-box-2 {
        width: 110px;
    }

    .main .ellipse,
    .main .ellipse-2 {
        width: 45px;
        height: 45px;
        border-radius: 22.5px;
    }

    .main .rectangle-4 {
        width: 42px;
        height: 42px;
    }

    .main .main-frame-right,
    .main .main-right-4 {
        padding: 25px 15px;
        min-height: 180px;
    }

    .main .main-right-3 {
        width: 100px;
    }

    .main .rectangle-5,
    .main .rectangle-6,
    .main .rectangle-7 {
        height: 11px;
    }

    .main .main-frame-right-box-2 {
        width: 80px;
    }

    .main .rectangle-8,
    .main .rectangle-9 {
        width: 32px;
        height: 32px;
    }

    .main .rectangle-9 {
        margin-right: -11px;
    }

    .main .main-frame-body {
        padding: 25px 15px;
    }

    .main .text-wrapper-13,
    .main .text-wrapper-14,
    .main .text-wrapper-15 {
        font-size: 22px;
    }

    .main .text-wrapper-16 {
        font-size: 14px;
    }

    /* main-frame-body-wrapper */
    .main .main-frame-body-wrapper {
        padding: 45px 12px;
    }

    .main .main-body-2 {
        gap: 30px;
    }

    .main .text-wrapper-15 {
        font-size: 22px;
    }

    .main .text-wrapper-16 {
        font-size: 13px;
    }

    .main .main-right-5 {
        gap: 12px;
    }

    .main .main-right-6 {
        min-height: 280px;
        padding: 30px 20px;
        gap: 30px;
    }

    .main .div-wrapper {
        width: 90px;
        height: 24px;
        padding: 3px 10px;
    }

    .main .text-wrapper-17 {
        font-size: 16px;
    }

    .main .main-right-wrapper {
        padding: 80px 15px;
        min-height: 200px;
        min-width: 150px;
    }

    .main .frame {
        gap: 9px;
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: 13px;
        text-align: center;
    }

    .main .text-wrapper-20 {
        font-size: 11px;
    }

    .main .main-right-9 {
        min-height: 280px;
        padding: 30px 20px;
        gap: 30px;
    }

    .main .main-right-10 {
        width: 90px;
        height: 24px;
        padding: 3px 10px;
    }

    .main .text-wrapper-21 {
        font-size: 16px;
    }

    .main .main-right-11 {
        padding: 80px 15px;
        min-height: 200px;
    }

    .main .text-wrapper-22 {
        font-size: 13px;
    }

    .main .text-wrapper-23 {
        color: var(--white-1);
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        font-size: 11px;
    }

    /* main-frame-2 */
    .main .main-frame-2 {
        gap: 30px;
        padding: 0px 12px;
    }

    .main .text-wrapper-24,
    .main .text-wrapper-25 {
        font-size: 22px;
    }

    .main .main-tab {
        width: 160px;
        height: 42px;
    }

    .main .rectangle-10,
    .main .rectangle-11 {
        width: 76px;
        height: 34px;
    }

    .main .text-wrapper-26,
    .main .text-wrapper-27 {
        font-size: 12px;
        text-align: center;
    }

    .main .main-bottom {
        min-height: 650px;
        padding: 45px 12px;
    }

    .main .main-frame-bottom {
        padding: 45px 12px;
        border-radius: 22px;
    }

    .main .main-bottom-2 {
        gap: 22px;
    }

    .main .main-bottom-3 {
        min-height: 420px;
        gap: 32px;
        padding: 22px 15px;
        border-radius: 22px;
    }

    .main .main-bottom-4 {
        gap: 20px;
    }

    .main .main-bottom-5 {
        gap: 9px;
    }

    .main .text-wrapper-28 {
        font-size: 14px;
    }

    .main .text-wrapper-29 {
        font-size: 20px;
        letter-spacing: -0.8px;
    }

    .main .main-bottom-6 {
        max-width: 400px;
    }

    .main .UI-UX {
        font-size: 12px;
        line-height: 19px;
    }

    .main .main-bottom-7 {
        gap: 10px;
    }

    .main .main-bottom-8,
    .main .main-bottom-10 {
        /* max-width: 240px; */
        height: 50px;
        padding: 0px 0px 0px 20px;
    }

    .main .text-wrapper-30 {
        font-size: 14px;
    }

    .main .main-bottom-wrapper,
    .main .main-frame-bottom-wrapper {
        width: 50px;
        height: 50px;
        padding: 13px;
    }

    .main .main-bottom-9 {
        width: 14px;
        height: 14px;
    }

    .main .img-2 {
        width: 10px;
        height: 10px;
    }

    /* main-frame-3 */
    .main .main-frame-3 {
        gap: 45px;
        padding: 45px 24px;
    }

    .main .main-frame-img {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main .main-lg {
        flex: 0 0 auto;
        width: calc(30% - 11px);
        max-width: 160px;
        height: 42px;
    }

    .main .main-kt,
    .main .main-hanhwa,
    .main .main-frame-4 {
        width: calc(30% - 11px);
        max-width: 160px;
        height: 42px;
    }

    /* main-frame-5 */
    .main .main-frame-5 {
        min-height: 850px;
        padding: 45px 30px;
    }

    .main .main-body-wrapper {
        padding: 30px;
    }

    .main .main-body-3 {
        gap: 40px;
    }

    .main .main-left {
        gap: 40px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3,
    .main .main-frame-txt-4 {
        font-size: 26px;
        letter-spacing: -0.52px;
    }

    .main .main-left-tab {
        display: none;
    }

    .main .main-frame-left {
        height: 56px;
        padding: 14px 22px;
    }

    .main .main-left-2 {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .main .main-left-wrapper {
        height: 56px;
        padding: 14px 22px;
    }

    .main .main-left-3 {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .main .main-right-12 {
        gap: 26px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        min-height: 420px;
        border-radius: 22px;
        gap: 26px;
        padding: 32px 16px 0;
    }

    .main .main-right-14,
    .main .main-right-21,
    .main .main-right-27 {
        gap: 16px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: 22px;
        letter-spacing: -0.44px;
    }

    .main .main-right-17,
    .main .main-right-24 {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .main .main-right-19,
    .main .main-right-25,
    .main .main-right-29 {
        max-width: 320px;
    }

    .main .main-right-23,
    .main .main-right-28 {
        gap: 16px;
    }
}

/* Mobile Minimum - 375px */
@media (max-width: 375px) {

    /* top-banner-header */
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .main-body-wrapper-1,
    .main .main-frame-body-wrapper {
        padding: 20px !important;
    }

    .main .top-banner {
        display: flex;
        height: 55px;
        align-items: center;
        justify-content: space-between;
        padding: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        display: none;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 40px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .main .top-banner-close {
        display: none;
    }

    .main .top-banner-box {
        position: relative;
        width: 12px;
        height: 12px;
        display: block;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }

    /* view section */
    .main .view {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 12px;
    }

    .main img[src*="main-banner"] {
        display: none;
    }

    .main .view img[src*="Frame 269"] {
        display: block;
        /* position: absolute;
        top: 0;
        left: 0; */
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    .main .text-wrapper-4 {
        position: absolute;
        top: 30%;
        left: 25%;
        transform: translate(-50%, -50%);
        margin-top: -80px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
        text-align: center;
        width: 100%;
    }

    .main .text-wrapper-5 {
        position: absolute;
        top: 30%;
        left: 32.4%;
        transform: translate(-50%, -50%);
        margin-top: -40px;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 22px;
        text-align: center;
        letter-spacing: -0.44px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .text-wrapper-6 {
        position: absolute;
        top: 28.5%;
        left: 28.4%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #ffffff;
        font-size: 22px;
        text-align: center;
        letter-spacing: -0.44px;
        line-height: normal;
        white-space: normal;
        width: 100%;
    }

    .main .btn {
        position: absolute;
        top: 29%;
        left: 29%;
        transform: translate(-50%, -50%);
        margin-top: 60px;
    }

    /* footer */
    .footer {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #1d1d1d;
    }

    .footer-body {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding: 25px 20px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #1d1d1d;
        gap: 18px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: start;
        height: auto;
        gap: 18px;
        position: relative;
    }

    .footer-logo-img {
        position: relative;
        width: 120px;
        height: 33px;
    }

    html .bsdevel-logo {
        width: 120px;
        height: 33px;
    }

    .footer-logo-content {
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main .bsgroupceo-naver-com {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 8px;
        letter-spacing: -0.16px;
        line-height: 12px;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
        position: relative;
        flex: 0 0 auto;
        width: 100%;
    }

    .main .text-wrapper-34 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 10px;
        text-align: start;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .text-wrapper-35 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #ffffff;
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.2px;
        line-height: normal;
    }

    .main .text-wrapper-36 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: #ffffff;
        font-size: 12px;
        text-align: start;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .main .text-wrapper-37 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #7e7e7e;
        font-size: 9px;
        text-align: start;
        letter-spacing: -0.18px;
        line-height: normal;
    }

    .main .text-wrapper-38 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #7e7e7e;
        font-size: 9px;
        text-align: start;
        letter-spacing: -0.18px;
        line-height: normal;
    }

    /* main-body-wrapper section (무료체험 신청) */
    .main .main-box-wrapper {
        padding: 30px 10px;
        border-radius: 20px;
        gap: 20px;
    }

    .main .main-frame-txt-5,
    .main .main-frame-txt-6 {
        font-size: 17px;
        letter-spacing: -0.34px;
    }

    .main .main-frame-txt-7 {
        font-size: 10px;
        letter-spacing: -0.2px;
        line-height: 18px;
    }

    .main .main-frame {
        padding: 25px 12px;
        gap: 18px;
    }

    .main .main-body {
        padding: 0px 8px;
        gap: 20px;
    }

    .main .text-wrapper-8,
    .main .text-wrapper-9 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .p {
        font-size: 12px;
        letter-spacing: -0.24px;
    }

    .main .main-left-box {
        padding: 20px 12px;
        min-height: 220px;
        border-radius: 15px;
    }

    .main .text-wrapper-10 {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .main .text-wrapper-11,
    .main .text-wrapper-12 {
        font-size: 12px;
        letter-spacing: -0.48px;
        line-height: 18px;
    }

    /* Keep PC layout for decorative elements */
    .main .main-left-box-2 {
        width: 95px;
    }

    .main .ellipse,
    .main .ellipse-2 {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }

    .main .rectangle-4 {
        width: 37px;
        height: 37px;
        border-radius: 6px;
    }

    .main .main-frame-right,
    .main .main-right-4 {
        padding: 20px 12px;
        min-height: 160px;
        border-radius: 15px;
    }

    .main .main-right-3 {
        width: 90px;
    }

    .main .rectangle-5,
    .main .rectangle-6,
    .main .rectangle-7 {
        height: 10px;
    }

    .main .main-frame-right-box-2 {
        width: 70px;
    }

    .main .rectangle-8,
    .main .rectangle-9 {
        width: 28px;
        height: 28px;
    }

    .main .rectangle-9 {
        margin-right: -10px;
    }

    .main .main-frame-body {
        padding: 20px 12px;
        border-radius: 15px;
    }

    .main .text-wrapper-13,
    .main .text-wrapper-14,
    .main .text-wrapper-15 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .main-img {
        max-width: 100%;
    }

    .main .text-wrapper-16 {
        font-size: 13px;
    }

    /* main-body-wrapper section (무료체험 신청) */
    .main .main-box-wrapper {
        padding: 40px 15px;
        border-radius: 25px;
        gap: 25px;
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        align-items: center;
        justify-content: center;
        background-image: url(/about/renewal_img/main-frame7-body.png);
        background-size: cover;
        background-position: 50% 50%;
    }

    .main .main-frame-box {
        gap: 25px;
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-box {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-5,
    .main .main-frame-txt-6 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: normal;
        text-align: center;
        position: relative;
        width: 100%;
        margin-top: -1px;
    }

    .main .main-frame-txt-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-7 {
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-4);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 20px;
        text-align: center;
        position: relative;
        width: fit-content;
    }

    .main .main-btn {
        display: flex;
        flex-direction: column;
        width: 150px;
        height: 52px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        position: relative;
        border-radius: 15px;
        border: 1px solid;
        border-color: var(--white-1);
        padding: 6px 0;
    }

    .main .main-btn-body {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-btn-txt {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .main .main-frame-btn {
        display: flex;
        width: 52px;
        height: 52px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: var(--white-1);
        border-radius: 15px;
    }

    /* main-frame-body-wrapper */
    .main .main-frame-body-wrapper {
        padding: 40px 10px;
    }

    .main .main-body-2 {
        gap: 25px;
    }

    .main .text-wrapper-15 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .text-wrapper-16 {
        font-size: 12px;
        letter-spacing: -0.24px;
    }

    .main .main-right-5 {
        gap: 10px;
    }

    .main .main-right-6 {
        height: 395px;
        padding: 25px 15px;
        gap: 25px;
        border-radius: 20px;
    }

    .main .div-wrapper {
        width: 80px;
        height: 22px;
        padding: 3px 8px;
    }

    .main .text-wrapper-17 {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .main .main-right-wrapper {
        padding: 20px 12px;
        min-height: 180px;
        min-width: 130px;
    }

    .main .main-right-7 {
        gap: 12px;
        margin: 0 auto;
    }

    .main .frame {
        gap: 8px;
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: 12px;
        letter-spacing: -0.24px;
        text-align: center;
    }

    .main .main-right-8 {
        gap: 4px;
    }

    .main .text-wrapper-20 {
        font-size: 10px;
        letter-spacing: -0.2px;
    }

    .main .main-right-9 {
        height: 395px;
        padding: 25px 15px;
        gap: 25px;
        border-radius: 20px;
    }

    .main .main-right-10 {
        width: 80px;
        height: 22px;
        padding: 3px 8px;
    }

    .main .text-wrapper-21 {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .main .main-right-11 {
        padding: 70px 12px;
        min-height: 180px;
        min-width: 130px;
    }

    .main .text-wrapper-22 {
        font-size: 12px;
        letter-spacing: -0.24px;
    }

    .main .text-wrapper-23 {
        font-size: 10px;
    }

    .main .text-wrapper-23 {
        color: var(--white-1);
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
    }

    /* main-frame-2 */
    .main .main-frame-2 {
        gap: 28px;
        padding: 0px 10px;
    }

    .main .text-wrapper-24,
    .main .text-wrapper-25 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .main-tab {
        width: 150px;
        height: 40px;
        padding: 3px;
    }

    .main .rectangle-10,
    .main .rectangle-11 {
        width: 72px;
        height: 32px;
    }

    .main .text-wrapper-26,
    .main .text-wrapper-27 {
        font-size: 13px;
        letter-spacing: -0.26px;
        width: 80px
    }

    .main .main-bottom {
        min-height: 600px;
        padding: 40px 10px;
    }

    .main .main-frame-bottom {
        padding: 40px 10px;
        border-radius: 20px;
    }

    .main .main-bottom-2 {
        gap: 20px;
    }

    .main .main-bottom-3 {
        min-height: 400px;
        gap: 30px;
        padding: 20px 12px;
        border-radius: 20px;
    }

    .main .main-bottom-4 {
        gap: 18px;
    }

    .main .main-bottom-5 {
        gap: 8px;
    }

    .main .text-wrapper-28 {
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .main .text-wrapper-29 {
        font-size: 18px;
        letter-spacing: -0.72px;
    }

    .main .main-bottom-6 {
        max-width: 350px;
    }

    .main .UI-UX {
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 18px;
    }

    .main .main-bottom-7 {
        gap: 9px;
    }

    .main .main-bottom-8,
    .main .main-bottom-10 {
        /* max-width: 220px; */
        height: 48px;
        padding: 0px 0px 0px 18px;
    }

    .main .text-wrapper-30 {
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .main .main-bottom-wrapper,
    .main .main-frame-bottom-wrapper {
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .main .main-bottom-9 {
        width: 13px;
        height: 13px;
    }

    .main .img-2 {
        width: 9px;
        height: 9px;
    }

    /* main-frame-3 */
    .main .main-frame-3 {
        gap: 40px;
        padding: 40px 20px;
    }

    .main .main-frame-img {
        gap: 50px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main .main-lg {
        flex: 0 0 auto;
        width: calc(40% - 10px);
        max-width: 140px;
        height: 38px;
    }

    .main .main-kt,
    .main .main-hanhwa,
    .main .main-frame-4 {
        width: calc(40% - 10px);
        max-width: 140px;
        height: 38px;
    }

    .main .main-body-wrapper {
        padding: 20px;
    }

    /* main-frame-5 */
    .main .main-frame-5 {
        min-height: 800px;
        padding: 40px 20px;
    }

    .main .main-body-3 {
        gap: 35px;
    }

    .main .main-left {
        gap: 35px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3,
    .main .main-frame-txt-4 {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .main .main-left-tab {
        display: none;
    }

    .main .main-frame-left {
        height: 52px;
        padding: 12px 20px;
    }

    .main .main-left-2 {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .main .main-left-wrapper {
        height: 52px;
        padding: 12px 20px;
    }

    .main .main-left-3 {
        font-size: 16px;
        letter-spacing: -0.64px;
    }

    .main .main-right-12 {
        gap: 24px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        min-height: 300px;
        border-radius: 20px;
        gap: 24px;
        padding: 30px 14px 0;
    }

    .main .main-right-14,
    .main .main-right-21,
    .main .main-right-27 {
        gap: 14px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .main .main-right-17,
    .main .main-right-24 {
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .main .main-right-19,
    .main .main-right-25,
    .main .main-right-29 {
        max-width: 300px;
    }

    .main .main-right-23,
    .main .main-right-28 {
        gap: 14px;
    }
}

/* Medium Desktop - 1200px to 1439px (moved from new_style.css) */
@media (min-width: 1200px) and (max-width: 1439px) {

    /* top-banner-header */
    .main .top-banner-header {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #111;
        z-index: 2000;
        display: flex;
        align-items: center;
        color: #fff;
    }

    .main .top-banner {
        display: flex;
        height: 75px;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #151518;
    }

    .main .top-banner-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 150px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .main .btn-swiper {
        position: relative;
        width: 10px;
        height: 18px;
        display: block;
    }

    .main .top-banner-txt-group {
        position: relative;
        width: auto;
        height: auto;
    }

    .main .top-banner-main-text {
        left: 0;
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
        white-space: nowrap;
    }

    .main .text-wrapper {
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .span {
        font-family: "Pretendard-Light", Helvetica;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-2 {
        font-weight: 700;
        color: #00ff88;
        letter-spacing: -0.10px;
    }

    .main .text-wrapper-3 {
        font-weight: 700;
        color: #00e5ff;
        letter-spacing: -0.10px;
    }

    .main .top-banner-sub-text {
        top: 2px;
        left: 0;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: #dedede;
        font-size: 15px;
        letter-spacing: -0.3px;
        line-height: normal;
    }

    .main .btn-topbenner-close {
        height: 45px;
        position: relative;
        display: block;
    }

    .main .top-banner-close {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .main .top-banner-box {
        position: relative;
        width: 16px;
        height: 16px;
    }

    .main .img {
        position: absolute;
        width: 50.00%;
        height: 50.00%;
        top: 25.00%;
        left: 25.00%;
    }

    /* Header adjustments for 1200px range */
    .header .h_inner {
        max-width: 1400px;
        padding: 0 35px;
    }

    /* Enhanced view section for 1200px range */
    .main .view {
        width: 95%;
        /* height: 75vh;
        max-height: 750px;
        min-height: 550px; */
    }

    .main .rectangle {
        left: calc(50% - 860px);
        width: 1720px;
        height: 100%;
    }

    .main img[src*="main-banner"] {
        /* left: calc(50% - 860px); */
        /* width: 1720px; */
        width: 100%;
        height: 100%;
        /* object-fit: cover;
        max-height: 700px; */
    }

    .main .view img[src*="Frame 269"] {
        display: none;
    }

    .main .text-wrapper-4 {
        /* left: calc(50% - 640px); */
        left: 50px;
        font-size: calc(18px + 0.2vw);
        top: 360px;
    }

    .main .text-wrapper-5 {
        /* left: calc(50% - 640px); */
        left: 50px;
        font-size: calc(36px + 0.6vw);
        top: 400px;
    }

    .main .text-wrapper-6 {
        /* left: calc(50% - 640px); */
        left: 50px;
        font-size: calc(36px + 0.6vw);
        top: 465px;
    }

    .main .btn {
        left: 50px;
        top: 550px;
    }

    .main .rectangle-2 {
        width: 184px;
        height: 62px;
    }

    .main .rectangle-3 {
        width: 62px;
        height: 62px;
    }

    .main .iconamoon-arrow {
        width: 28px;
        height: 28px;
    }

    .main .text-wrapper-7 {
        font-size: 18px;
    }

    /* Content sections responsive padding */
    .main-frame,
    .main-body-wrapper-1,
    .main-frame-body-wrapper,
    .main-frame-2,
    .main-frame-3,
    .main-frame-5 {
        padding: 70px 35px;
    }

    /* Second main-body-wrapper Section - 1200px */
    .main .main-box-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 100px 295px;
        position: relative;
        align-self: stretch;
        width: 100%;
        border-radius: 60px;
        background-image: url(/about/renewal_img/main-frame7-body.png);
        background-size: cover;
        background-position: 50% 50%;
    }

    .main .main-frame-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-box {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-5 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-6 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-wrapper {
        justify-content: center;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-7 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-4);
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.36px;
        line-height: 28px;
    }

    .main .main-btn {
        display: flex;
        flex-direction: column;
        width: 199px;
        height: 62px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        position: relative;
        border-radius: 20px;
        border: 1px solid;
        border-color: var(--white-1);
        padding: 6px 0;
    }

    .main .main-btn-body {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-btn-txt {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .main-frame-btn {
        display: flex;
        width: 62px;
        height: 62px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px;
        position: relative;
        background-color: var(--white-1);
        border-radius: 20px;
    }

    .main-body,
    .main-frame-body {
        /* max-width: 1350px; */
        padding: 0 35px;
    }

    /* Enhanced layouts for 1200px range */
    .main-box {
        gap: 28px;
    }

    .main-right {
        flex: 1.4;
        gap: 18px;
    }

    .main-bottom-2 {
        gap: calc(30px + 0.6vw);
    }

    /* Text sizing for this range */
    /* .text-wrapper-5,
    .text-wrapper-6 {
        font-size: calc(38px + 0.5vw);
    }

    .text-wrapper-8,
    .text-wrapper-9 {
        font-size: calc(34px + 0.4vw);
    }

    .main .text-wrapper-13,
    .main .text-wrapper-14,
    .main .text-wrapper-15 {
        font-size: calc(32px + 0.4vw);
    }

    .text-wrapper-24,
    .text-wrapper-25 {
        font-size: calc(30px + 0.4vw);
    } */

    /* Enhanced spacing */
    .bs-stats-container {
        max-width: 1350px;
        gap: 18px;
    }

    .bs-features-grid {
        max-width: 1350px;
        gap: 28px;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .main-frame-img {
        gap: 50px;
        max-width: 1350px;
    }

    .footer-body {
        max-width: 1350px;
        padding: 55px 100px;
        gap: 35px;
    }

    /* Main Text Section - Enhanced for 1200px range */
    .main-txt {
        /* padding: 25px; */
        margin-bottom: 50px;
    }

    .main-txt .text-wrapper-8,
    .main-txt .text-wrapper-9 {
        font-size: calc(30px + 0.4vw);
    }

    .main-txt .p {
        font-size: calc(16px + 0.15vw);
    }

    /* Main Body Wrapper - Enhanced for 1200px range */
    .main-body-wrapper-1 {
        padding: 70px 35px;
    }

    .main-frame-body {
        max-width: 1350px;
    }

    .main-frame-txt .text-wrapper-13,
    .main-frame-txt .text-wrapper-14 {
        font-size: calc(30px + 0.4vw);
    }

    .main-frame-txt .text-wrapper-14 {
        margin-bottom: 20px;
    }

    .main-frame-txt .p {
        font-size: calc(16px + 0.15vw);
    }

    .main-img {
        margin-top: 25px;
        max-width: 540px;
    }

    /* Main Frame Body Wrapper - 1200px range */
    .main .main-frame-body-wrapper {
        padding: 70px 100px;
        gap: 9px;
    }

    .main .main-left-txt .text-wrapper-15,
    .main .main-left-txt .text-wrapper-14 {
        font-size: calc(20px + 0.6vw);
        line-height: 1.3;
    }

    .main .main-left-txt .text-wrapper-16 {
        font-size: calc(14px + 0.25vw);
        line-height: 1.5;
    }

    .main .main-right-5 {
        max-width: 700px;
        gap: 10px;
    }

    .main .main-right-6 {
        min-width: 350px;
        min-height: 450px;
    }

    .main .main-right-7 {
        /* gap: 14px; */
        margin: 0 auto;
    }

    .main .text-wrapper-17 {
        font-size: calc(16px + 0.2vw);
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: calc(19px + 0.2vw);
        line-height: 1.4;
    }

    .main .div-wrapper {
        width: 110px;
        height: 38px;
        padding: 5px 22px;
    }

    .main .main-right-wrapper {
        max-width: 280px;
        min-height: 300px;
        padding: 38px 63px;
    }

    .main .frame {
        gap: 11px;
    }

    .main .group {
        width: 11px;
        min-height: 220px;
    }

    .main .main-right-8 {
        gap: 9px;
        padding: 9px 18px;
    }

    .main .text-wrapper-20 {
        font-size: calc(11px + 0.2vw);
    }

    .main .main-right-9 {
        min-width: 330px;
        min-height: 480px;
        gap: 35px;
        padding: 45px 30px;
    }

    .main .main-right-10 {
        width: 110px;
        height: 38px;
        padding: 5px 22px;
    }

    .main .text-wrapper-21 {
        font-size: calc(16px + 0.2vw);
    }

    .main .main-right-11 {
        max-width: 280px;
        min-height: 300px;
        padding: 140px 30px;
    }

    .main .text-wrapper-22 {
        font-size: calc(19px + 0.2vw);
        line-height: 1.4;
    }

    .main .text-wrapper-23 {
        font-size: calc(11px + 0.2vw);
    }

    /* Main Bottom Section - 1200px Responsive */
    .main .main-bottom {
        height: auto;
        min-height: 700px;
        /* padding: 50px 30px; */
    }

    .main .main-bottom-2 {
        gap: 35px;
    }

    .main .main-bottom-3 {
        height: auto;
        min-height: 500px;
        gap: 200px;
        padding: 35px 25px;
    }

    .main .main-bottom-4 {
        gap: 30px;
    }

    .main .main-bottom-5 {
        gap: 13px;
    }

    .main .main-bottom-6 {
        width: 100%;
        max-width: 450px;
    }

    .main .main-bottom-7 {
        gap: 9px;
    }

    .main .main-bottom-8 {
        width: 180px;
        height: 55px;
    }

    .main .main-bottom-wrapper {
        width: 55px;
        height: 55px;
    }

    .main .main-bottom-9 {
        width: 16px;
        height: 16px;
    }

    .main .main-bottom-10 {
        width: 165px;
        height: 55px;
    }

    /* Main Frame 3 Section - 1200px Responsive */
    .main .main-frame-3 {
        gap: 50px;
        padding: 100px 100px;
    }

    .main .main-frame-img {
        gap: 50px;
        margin: 0 auto 0 0;
        width: auto;
    }

    .main .main-lg {
        height: 50px;
        max-width: 170px;
    }

    .main .main-kt {
        width: 60px;
        height: 50px;
    }

    .main .main-hanhwa {
        width: 200px;
        height: 50px;
    }

    .main .main-frame-4 {
        width: 215px;
        height: 50px;
    }

    /* Main Frame 5 Section - 1200px Responsive */
    .main .main-frame-5 {
        height: auto;
        min-height: 1000px;
        padding: 100px;
    }

    .main .main-body-3 {
        gap: 45px;
    }

    .main .main-left {
        gap: 70px;
    }

    .main .main-left-box-3 {
        gap: 9px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3 {
        font-size: calc(28px + 0.4vw);
    }

    .main .main-frame-txt-4 {
        font-size: calc(16px + 0.25vw);
    }

    .main .main-left-tab {
        width: 290px;
        gap: 17px;
    }

    .main .main-frame-left,
    .main .main-left-wrapper {
        height: 65px;
        padding: 18px 28px;
    }

    .main .main-left-2,
    .main .main-left-3 {
        font-size: 20px;
    }

    .main .main-right-12 {
        gap: 28px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        min-height: 320px;
        gap: 70px;
    }

    .main .main-right-14 {
        max-width: 300px;
        padding: 75px 20px;
        gap: 20px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: calc(20px + 0.25vw);
    }

    .main .main-right-17,
    .main .main-right-18,
    .main .main-right-24 {
        font-size: calc(13px + 0.15vw);
    }

    .main .main-right-19 {
        width: 280px;
    }

    .main .main-right-21 {
        padding: 75px 20px;
    }

    .main .main-right-25 {
        width: 310px;
        height: 310px;
    }

    .main .main-right-27 {
        max-width: 270px;
        gap: 20px;
        padding: 75px 20px;
    }

    .main .main-right-29 {
        width: 340px;
    }
}

/* Large Desktop - 1440px and above (moved from new_style.css) */
@media (min-width: 1440px) and (max-width : 1599px) {
    .header .h_inner {
        max-width: 1600px;
        padding: 0 60px;
    }

    .main-body,
    .main-frame-body,
    .main-body-2,
    .main-body-3,
    .bs-stats-container,
    .bs-features-grid,
    .bs-faq-container,
    .main-frame-img,
    .footer-body {
        max-width: 1600px;
    }

    /* View Section */
    .main .view {
        width: 95%;
        /* height: 900px; */
    }

    .main .rectangle {
        left: calc(50% - 860px);
        width: 1720px;
        height: 900px;
    }

    .main img[src*="main-banner"] {
        left: calc(50% - 860px);
        /* width: 1720px; */
        width: 100%;
        height: 900px;
    }

    .main .view img[src*="Frame 269"] {
        display: none;
    }

    .main .text-wrapper-4 {
        /* left: calc(50% - 670px); */
        left: 100px;
        font-size: 28px;
    }

    .main .text-wrapper-5 {
        /* left: calc(50% - 670px); */
        left: 100px;
        font-size: 45px;
    }

    .main .text-wrapper-6 {
        /* left: calc(50% - 670px); */
        left: 100px;
        font-size: 45px;
    }

    .main .btn {
        left: 100px;
    }

    /* Second main-body-wrapper Section - 1440px */
    .main .main-box-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 100px 400px;
        position: relative;
        align-self: stretch;
        width: 100%;
        border-radius: 60px;
        background-image: url(/about/renewal_img/main-frame7-body.png);
        background-size: cover;
        background-position: 50% 50%;
    }

    .main .main-frame-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-box {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-5 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-6 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-wrapper {
        justify-content: center;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-7 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-4);
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.36px;
        line-height: 28px;
    }

    .main .main-btn {
        display: flex;
        flex-direction: column;
        width: 199px;
        height: 62px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        position: relative;
        border-radius: 20px;
        border: 1px solid;
        border-color: var(--white-1);
        padding: 6px 0;
    }

    .main .main-btn-body {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-btn-txt {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .main-frame-btn {
        display: flex;
        width: 62px;
        height: 62px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px;
        position: relative;
        background-color: var(--white-1);
        border-radius: 20px;
    }

    /* Larger text for bigger screens */
    .view .text-wrapper-4 {
        font-size: 24px;
    }

    .view .text-wrapper-5,
    .view .text-wrapper-6 {
        font-size: 52px;
    }

    .text-wrapper-8,
    .text-wrapper-9 {
        font-size: 42px;
    }

    .main .text-wrapper-13,
    .text-wrapper-14,
    .text-wrapper-15 {
        font-size: 40px;
    }

    .text-wrapper-24,
    .text-wrapper-25 {
        font-size: 40px;
    }

    /* Main Text Section - Large Desktop */
    .main-txt {
        margin-bottom: 100px;
    }

    .main-txt .text-wrapper-8,
    .main-txt .text-wrapper-9 {
        font-size: 38px;
    }

    .main-txt .p {
        font-size: 18px;
    }

    /* Main Body Wrapper - Large Desktop */
    .main-body-wrapper-1 {
        padding: 80px 60px;
    }

    .main-frame-body {
        max-width: 1600px;
    }

    .main-frame-txt .text-wrapper-13,
    .main-frame-txt .text-wrapper-14 {
        font-size: 40px;
    }

    .main-frame-txt .text-wrapper-14 {
        margin-bottom: 20px;
    }

    .main-frame-txt .p {
        font-size: 18px;
    }

    .main-img {
        margin-top: 30px;
        max-width: 750px;
    }

    /* Main Frame Body Wrapper - Large Desktop */
    .main .main-frame-body-wrapper {
        padding: 100px 100px;
        gap: 10px;
    }

    .main .main-left-txt .text-wrapper-15,
    .main .main-left-txt .text-wrapper-14 {
        font-size: 22px;
        line-height: 1.2;
    }

    .main .main-left-txt .text-wrapper-16 {
        font-size: 16px;
        line-height: 1.5;
    }

    .main .main-right-5 {
        max-width: 800px;
        gap: 12px;
    }

    .main .main-right-6 {
        min-width: 400px;
        min-height: 500px;
    }

    .main .main-right-7 {
        /* gap: 15px; */
        margin: 0 auto;
    }

    .main .text-wrapper-17 {
        font-size: 18px;
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: 21px;
        line-height: 1.4;
    }

    .main .div-wrapper {
        width: 120px;
        height: 40px;
        padding: 5px 24px;
    }

    .main .main-right-wrapper {
        max-width: 370px;
        min-height: 320px;
        padding: 40px 35px;
    }

    .main .frame {
        gap: 13px;
    }

    .main .group {
        width: 12px;
        min-height: 230px;
    }

    .main .main-right-8 {
        gap: 10px;
        padding: 10px 20px;
    }

    .main .text-wrapper-20 {
        font-size: 13px;
    }

    /* Main Bottom Section - 1440px Responsive */
    .main .main-bottom {
        height: auto;
        min-height: 800px;
        /* padding: 60px 40px; */
    }

    .main .main-bottom-2 {
        gap: 40px;
    }

    .main .main-bottom-3 {
        height: auto;
        min-height: 600px;
        gap: 250px;
        padding: 40px 30px;
    }

    .main .main-bottom-4 {
        gap: 32px;
    }

    .main .main-bottom-5 {
        gap: 14px;
    }

    .main .main-bottom-6 {
        width: 100%;
        max-width: 500px;
    }

    .main .main-bottom-7 {
        gap: 10px;
    }

    .main .main-bottom-8 {
        width: 190px;
        height: 60px;
    }

    .main .main-bottom-wrapper {
        width: 60px;
        height: 60px;
    }

    .main .main-bottom-9 {
        width: 17px;
        height: 17px;
    }

    .main .main-bottom-10 {
        width: 175px;
        height: 60px;
    }

    /* Main Frame 3 Section - 1440px Responsive */
    .main .main-frame-3 {
        gap: 60px;
        padding: 120px 100px;
    }

    .main .main-frame-img {
        gap: 100px;
        margin: 0 auto 0 0;
        width: auto;
    }

    .main .main-lg {
        height: 55px;
        max-width: 200px;
    }

    .main .main-kt {
        width: 68px;
        height: 55px;
    }

    .main .main-hanhwa {
        width: 220px;
        height: 55px;
    }

    .main .main-frame-4 {
        width: 240px;
        height: 55px;
    }

    /* Main Frame 5 Section - 1440px Responsive */
    .main .main-frame-5 {
        height: auto;
        min-height: 1100px;
        padding: 38px 100px;
    }

    .main .main-body-3 {
        flex-direction: row;
        gap: 50px;
    }

    .main .main-left {
        gap: 85px;
    }

    .main .main-left-box-3 {
        gap: 10px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3 {
        font-size: 36px;
    }

    .main .main-frame-txt-4 {
        font-size: 18px;
    }

    .main .main-left-tab {
        width: 300px;
        gap: 18px;
    }

    .main .main-frame-left,
    .main .main-left-wrapper {
        height: 68px;
        padding: 19px 29px;
    }

    .main .main-left-2,
    .main .main-left-3 {
        font-size: 22px;
    }

    .main .main-right-12 {
        gap: 30px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        height: 340px;
        /* gap: 90px; */
        flex-wrap: nowrap;
    }

    .main .main-right-14 {
        width: 320px;
        padding: 85px 0;
        gap: 22px;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: 24px;
    }

    .main .main-right-17,
    .main .main-right-18,
    .main .main-right-24 {
        font-size: 14px;
    }

    .main .main-right-19 {
        width: 300px;
        height: 340px;
    }

    .main .main-right-21 {
        padding: 85px 0;
    }

    .main .main-right-25 {
        width: 330px;
        height: 330px;
    }

    .main .main-right-27 {
        width: 320px;
        padding: 85px 0;
        gap: 22px;
    }

    .main .main-right-28 {
        gap: 22px;
    }

    .main .main-right-29 {
        width: 300px;
        height: 340px;
    }

    .main .main-right-9 {
        min-width: 400px;
        min-height: 500px;
        gap: 40px;
        padding: 50px 35px;
    }

    .main .main-right-10 {
        width: 120px;
        height: 40px;
        padding: 5px 24px;
    }

    .main .text-wrapper-21 {
        font-size: 18px;
    }

    .main .main-right-11 {
        max-width: 370px;
        min-height: 320px;
        padding: 150px 35px;
    }

    .main .text-wrapper-22 {
        font-size: 21px;
        line-height: 1.4;
    }

    .main .text-wrapper-23 {
        font-size: 13px;
    }

    /* Fclick sticky scroll for 1440-1599px */
    .fclick .fclick-middle {
        position: relative !important;
        width: 100% !important;
        height: 400vh !important;
    }

    .fclick .fclick-middle-body {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        padding: 0 120px !important;
    }

    .fclick .fclick-middle-box {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100% - 240px) !important;
        max-width: 1360px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 40px !important;
        opacity: 0 !important;
        transition: opacity 0.6s ease-in-out !important;
        pointer-events: none !important;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Fix image sizes for 1440-1599px */
    .fclick .img,
    .fclick .fclick-middle-5,
    .fclick .fclick-middle-6 {
        width: auto !important;
        max-width: 45% !important;
        height: auto !important;
        flex-shrink: 0;
    }

    .fclick .fclick-middle-txt {
        flex: 1 !important;
        min-width: 0 !important;
    }
}

/* Large Desktop Plus - 1600px to 1919px (moved from new_style.css) */
@media (min-width: 1600px) and (max-width: 1919px) {

    /* Header responsive adjustments for 1600px */
    .header .h_inner {
        max-width: 1700px;
        padding: 0 50px;
    }

    /* Top Banner */
    .top-banner-frame {
        max-width: 1600px;
        margin: 0 auto;
    }

    /* Container adjustments for 1600px screens */
    .main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Enhanced view section for 1600px */
    .main .view {
        width: 95%;
        /* height: 80vh;
        max-height: 900px;
        min-height: 650px; */
    }

    .main .rectangle {
        left: calc(50% - 860px);
        width: 1720px;
        height: 100%;
    }

    .main img[src*="main-banner"] {
        /* left: calc(50% - 860px); */
        /* height: 100%; */
        /* object-fit: cover; */
        max-height: 850px;
    }

    .main .view img[src*="Frame 269"] {
        display: none;
    }

    .main .text-wrapper-4 {
        font-size: 22px;
        left: 5%;
        right: auto;
    }

    .main .text-wrapper-5 {
        font-size: 54px;
        left: 5%;
        right: auto;
        line-height: 1.2;
    }

    .main .text-wrapper-6 {
        font-size: 54px;
        left: 5%;
        right: auto;
        line-height: 1.2;
    }

    .main .btn {
        left: 5%;
        right: auto;
        transform: scale(1.1);
    }

    .main .rectangle-2 {
        width: 184px;
        height: 62px;
    }

    .main .rectangle-3 {
        width: 62px;
        height: 62px;
    }

    .main .iconamoon-arrow {
        width: 28px;
        height: 28px;
    }

    .main .text-wrapper-7 {
        font-size: 18px;
    }

    /* Main Content Sections */
    .main-frame,
    .main-body-wrapper-1,
    .main-frame-body-wrapper,
    .main-frame-3,
    .main-frame-5 {
        width: 100%;
        padding: 90px 50px;
    }

    .main-frame-2 {
        padding: 0px 120px !important;
    }

    /* Second main-body-wrapper Section - 1600px */
    .main .main-box-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        padding: 100px 275px;
        position: relative;
        align-self: stretch;
        width: 100%;
        border-radius: 60px;
        background-image: url(/about/renewal_img/main-frame7-body.png);
        background-size: cover;
        background-position: 50% 50%;
    }

    .main .main-frame-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-box {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-5 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-6 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-1);
        font-size: 38px;
        text-align: center;
        letter-spacing: -0.76px;
        line-height: normal;
    }

    .main .main-frame-txt-wrapper {
        justify-content: center;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .main .main-frame-txt-7 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-4);
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.36px;
        line-height: 28px;
    }

    .main .main-btn {
        display: flex;
        flex-direction: column;
        width: 199px;
        height: 62px;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
        position: relative;
        border-radius: 20px;
        border: 1px solid;
        border-color: var(--white-1);
        padding: 6px 0;
    }

    .main .main-btn-body {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        position: relative;
        flex: 0 0 auto;
    }

    .main .main-btn-txt {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .main .main-frame-btn {
        display: flex;
        width: 62px;
        height: 62px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px;
        position: relative;
        background-color: var(--white-1);
        border-radius: 20px;
    }

    .main-body,
    .main-frame-body {
        margin: 0 auto;
        padding: 0 120px !important;
    }

    .main-body-2 {
        margin: 0 auto;
        padding: 0 120px !important;
    }

    /* Enhanced layouts for 1600px */
    .main-box {
        gap: 35px;
        align-items: stretch;
    }

    .main-left-box {
        flex: 1;
        min-width: 400px;
    }

    .main-right {
        flex: 1.6;
        display: flex;
        gap: 25px;
    }

    .main-bottom-2 {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .main-bottom-3 {
        flex: 1;
        min-width: 400px;
    }

    .main-wrapper {
        flex: 1;
        min-width: 400px;
    }

    /* Text sizing for 1600px range */
    /* .text-wrapper-5,
    .text-wrapper-6 {
        font-size: 50px;
    } */

    .text-wrapper-8,
    .text-wrapper-9 {
        font-size: 44px;
        line-height: 1.3;
    }

    .text-wrapper-13,
    .text-wrapper-14,
    .text-wrapper-15 {
        font-size: 42px;
        line-height: 1.3;
    }

    .text-wrapper-24,
    .text-wrapper-25 {
        font-size: 42px;
        line-height: 1.3;
    }

    /* Stats Container */
    .bs-stats-container {
        max-width: 1700px;
        gap: 25px;
    }

    /* Features Grid */
    .bs-features-grid {
        max-width: 1700px;
        gap: 35px;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    /* FAQ Section */
    .bs-faq-container {
        max-width: 1700px;
    }

    /* Client Logos */
    .main-frame-img {
        gap: 70px;
        max-width: 1700px;
    }

    .main-frame-img img {
        max-width: 150px;
        height: auto;
    }

    /* Enhanced footer for 1600px */
    .footer-body {
        padding: 70px 120px;
        gap: 50px;
    }

    .footer-left {
        flex: 2;
        min-width: 400px;
    }

    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    /* Main Text Section - 1600px range */
    .main-txt {
        /* padding: 35px; */
        margin-bottom: 70px;
    }

    .main-txt .text-wrapper-8,
    .main-txt .text-wrapper-9 {
        font-size: 42px;
    }

    .main-txt .p {
        font-size: 20px;
    }

    /* Bottom sections layout */
    .main-bottom-2 {
        gap: 40px;
    }

    .main-body-3 {
        gap: 40px;
    }

    /* Tab sections enhanced */
    .main-left-tab {
        gap: 15px;
        flex-wrap: wrap;
    }

    .main-right-13,
    .main-right-20,
    .main-right-26 {
        gap: 30px;
        padding: 25px;
    }

    /* Enhanced image sections */
    .main-frame-tablet {
        max-width: 600px;
        height: auto;
    }

    .main-img {
        max-width: 700px;
        height: auto;
    }

    /* Main Body Wrapper - 1600px range */
    .main-body-wrapper-1 {
        padding: 90px 120px !important;
    }

    .main-frame-body {
        max-width: 1700px;
    }

    .main-frame-txt .text-wrapper-13,
    .main-frame-txt .text-wrapper-14 {
        font-size: 42px;
    }

    .main-frame-txt .text-wrapper-14 {
        margin-bottom: 20px;
    }

    .main-frame-txt .p {
        font-size: 20px;
    }

    .main-img {
        margin-top: 35px;
        max-width: 800px;
    }

    /* Main Frame Body Wrapper - 1600px range */
    .main .main-frame-body-wrapper {
        padding: 120px 0px;
        gap: 10px;
    }

    .main .main-left-txt .text-wrapper-15,
    .main .main-left-txt .text-wrapper-14 {
        font-size: 30px;
        line-height: 1.2;
    }

    .main .main-left-txt .text-wrapper-16 {
        font-size: 18px;
        line-height: 1.5;
    }

    .main .main-right-5 {
        max-width: 900px;
        gap: 14px;
    }

    .main .main-right-6,
    .main .main-right-9 {
        min-width: 450px;
        min-height: 530px;
    }

    .main .main-right-7 {
        /* gap: 16px; */
        margin: 0 auto;
    }

    .main .text-wrapper-17 {
        font-size: 20px;
    }

    .main .text-wrapper-18,
    .main .text-wrapper-19 {
        font-size: 21px;
        line-height: 1.4;
    }

    .main .div-wrapper,
    .main .main-right-10 {
        width: 125px;
        height: 42px;
        padding: 5px 25px;
    }

    .main .main-right-wrapper {
        max-width: 380px;
        min-height: 330px;
        padding: 42px 38px;
    }

    .main .frame {
        gap: 14px;
    }

    .main .group {
        width: 12px;
        min-height: 235px;
    }

    .main .main-right-8 {
        gap: 11px;
        padding: 11px 22px;
    }

    .main .text-wrapper-20,
    .main .text-wrapper-23 {
        font-size: 14px;
    }

    .main .text-wrapper-21 {
        font-size: 20px;
    }

    .main .main-right-11 {
        max-width: 380px;
        min-height: 330px;
        padding: 155px 38px;
    }

    .main .text-wrapper-22 {
        font-size: 21px;
        line-height: 1.4;
    }

    /* Main Bottom Section - 1600px Responsive */
    .main .main-bottom {
        height: auto;
        min-height: 850px;
        /* padding: 70px 50px; */
    }

    .main .main-bottom-2 {
        gap: 43px;
    }

    .main .main-bottom-3 {
        height: auto;
        min-height: 650px;
        gap: 280px;
        padding: 40px 30px;
    }

    .main .main-bottom-4 {
        gap: 33px;
    }

    .main .main-bottom-5 {
        gap: 14px;
    }

    .main .main-bottom-6 {
        width: 100%;
        max-width: 530px;
    }

    .main .main-bottom-7 {
        gap: 10px;
    }

    .main .main-bottom-8 {
        width: 195px;
        height: 61px;
    }

    .main .main-bottom-wrapper {
        width: 61px;
        height: 61px;
    }

    .main .main-bottom-9 {
        width: 18px;
        height: 18px;
    }

    .main .main-bottom-10 {
        width: 180px;
        height: 61px;
    }

    /* Main Frame 3 Section - 1600px Responsive */
    .main .main-frame-3 {
        gap: 70px;
        padding: 130px 120px;
    }

    .main .main-frame-img {
        gap: 285px;
        margin: 0 auto 0 0;
        width: auto;
    }

    .main .main-lg {
        height: 58px;
        max-width: 230px;
    }

    .main .main-kt {
        width: 70px;
        height: 58px;
    }

    .main .main-hanhwa {
        width: 230px;
        height: 58px;
    }

    .main .main-frame-4 {
        width: 250px;
        height: 58px;
    }

    /* Main Frame 5 Section - 1600px Responsive */
    .main .main-frame-5 {
        height: auto;
        min-height: 1180px;
        padding: 38px 120px;
    }

    .main .main-body-wrapper {
        padding: 120px;
    }

    .main .main-body-3 {
        gap: 55px;
    }

    .main .main-left {
        gap: 95px;
    }

    .main .main-frame-txt-2,
    .main .main-frame-txt-3 {
        font-size: 40px;
    }

    .main .main-frame-txt-4 {
        font-size: 20px;
    }

    .main .main-left-tab {
        width: 305px;
        gap: 19px;
    }

    .main .main-frame-left,
    .main .main-left-wrapper {
        height: 70px;
        padding: 20px 30px;
    }

    .main .main-left-2,
    .main .main-left-3 {
        font-size: 24px;
    }

    .main .main-right-12 {
        gap: 31px;
    }

    .main .main-right-13,
    .main .main-right-20,
    .main .main-right-26 {
        height: 345px;
        gap: 100px;
    }

    .main .main-right-14 {
        width: 325px;
        padding: 88px 0;
    }

    .main .main-right-15,
    .main .main-right-22 {
        font-size: 26px;
    }

    .main .main-right-17,
    .main .main-right-18,
    .main .main-right-24 {
        font-size: 15px;
    }

    .main .main-right-19 {
        width: 310px;
        height: 345px;
    }

    .main .main-right-21 {
        padding: 88px 0;
    }

    .main .main-right-25 {
        width: 340px;
        height: 340px;
    }

    .main .main-right-27 {
        width: 285px;
    }

    .main .main-right-29 {
        width: 380px;
        height: 345px;
    }
}


@media (max-width: 768px) {
    .main-frame-body {
        padding: 0px 20px;
    }

    .main-body {
        padding: 0px 20px;
    }

    .main-frame-2 {
        padding: 0px 20px;
    }

    .main-frame-3 {
        padding: 150px 20px;
    }

    .main-frame-5 {
        padding: 38px 20px;
    }

    /* 모바일에서는 모바일 footer만 표시 */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: flex !important;
    }
}

/* 1920px 이상 해상도: 배경은 전체, 콘텐츠는 고정 */
@media (min-width: 1920px) {

    /* 메인 컨테이너 - 배경은 전체 너비 */
    .main {
        width: 100%;
    }

    /* 메인 히어로 슬라이더 이미지 - 비율 유지하며 크기 조정 */
    .main-hero-slider .swiper-slide .image {
        width: 100%;
        height: auto;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 !important;
    }

    /* 모든 섹션 - 배경은 전체, 콘텐츠는 중앙 정렬 */
    .main .view.main_slide01,
    .main .main-frame,
    .main .main-body-wrapper-1,
    .main .main-frame-body-wrapper,
    .main .main-frame-2,
    .main .main-frame-3,
    .main .main-frame-5,
    .main .main-body-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* .main .main-bottom{
    height: 0!important;
  } */

    /* 콘텐츠 영역 최대 너비 고정 */
    .main .main-body,
    .main .main-body-2,
    .main .main-frame-top,
    .main .main-frame-img,
    .main .main-body-3,
    .main .main-box-wrapper {
        max-width: 1520px;
        margin: 0 auto;
        width: 100%;
    }

    .main-body {
        padding: 0 !important;
    }

    /* main-frame-body는 배경까지 1670px로 설정 */
    .main .main-frame-body {
        max-width: 1520px;
        margin: 0 auto;
        width: 100%;
        padding-left: 128px;
        padding-right: 128px;
    }

    /* 탭 영역도 고정 */
    .main .main-tab {
        max-width: 1520px;
        margin: 0 auto;
    }

    /* 하단 콘텐츠 영역 */
    .main .main-frame-bottom {
        max-width: 1520px;
        margin: 0 auto;
        width: 100%;
    }

    /* 헤더와 푸터도 고정 */
    .header .h_inner,
    .footer .footer-body {
        max-width: 1520px;
        margin: 0 auto;
    }

    /* 섹션별 패딩 조정 - 좌우 여백을 계산하여 콘텐츠가 1520px 중앙에 오도록 */
    .main .main-body-wrapper-1 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .main .main-frame-body-wrapper {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .main-frame-3 {
        height: 500px;
    }

    .main .main-bottom {
        padding: 0;
    }

    .footer-body {
        padding: 0;
    }

    .main-hero-slider .swiper-slide .image {
        height: 100% !important;
    }

    .main .main-img {
        width: 850px;
    }
}

/* Common title section */
.common-title {
    width: 100%;
    position: relative;
    text-align: center;
    padding-top: 115px;
}

.common-title .top-sect {
    margin: 0 auto 20px;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #1C1D1F;
}

.common-title .top-sect span {
    color: #3182F6 !important;
}

.common-title .bottom-sect {
    margin: 0 auto;
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #424756;
}
.common-title br {
    display: none;
}


/* cs style */
.cs {
    display: flex;
    flex-direction: column;
    /* height: 1713px; */
    align-items: center;
    gap: 10px;
    padding: 80px;
    position: relative;
    background-color: #ffffff;
    /* margin-top: 160px; */
}

.cs .cs-body {
    /* margin-top: 60px; */
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding: 80px 355px;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    margin-bottom:150px;
}



.cs .cs-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 55px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.cs .div-wrapper {
    align-items: center;
    gap: 10px;
    padding: 10px;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.cs .element {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: transparent;
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 56px;
}

.cs .text-wrapper {
    color: #1c1d1f;
    letter-spacing: -0.26px;
}

.cs .span {
    color: #3182f6;
    letter-spacing: -0.26px;
    line-height: 53px;
}

.cs .BS {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 18px;
}

.cs .text-wrapper-2 {
    letter-spacing: -0.06px;
}

.cs .text-wrapper-3 {
    letter-spacing: -0.06px;
    line-height: 28px;
}

.cs .cs-left-img {
    position: relative;
    width: 520px;
    height: 342px;
    margin-right: -5.00px;
    aspect-ratio: 1.52;
    object-fit: cover;
}

.cs .cs-right {
    align-self: center;
    max-width: 530px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.cs .div {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.cs .cs-right-txt {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    margin-bottom: 20px;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: var(--black-1);
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: normal;
}

.cs .div-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.cs .text-wrapper-4 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
}

.cs .div-wrapper-2 {
    display: flex;
    height: 57px;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f6f6f6;
    border-radius: 10px;
}

.cs .cs-right-name {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
    outline: none;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-6);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.cs .text-wrapper-5 {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-6);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.cs .cs-right-content-box {
    display: flex;
    height: 270px;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #f6f6f6;
    border-radius: 10px;
}

.cs .cs-right-content {
    position: relative;
    /* width: 117px; */
    height: 17px;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-6);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.cs .cs-right-chk-btn {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.cs .cs-right-chk-box {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid;
    border-color: var(--gray-6);
}

.cs .cs-right-chk-txt {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-6);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
}

.cs .cs-right-btn-box {
    justify-content: space-between;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    margin-top:20px;
}

.cs .cs-right-btn {
    width: 260px;
    height: 49px;
    justify-content: center;
    gap: 10px;
    padding: 15px 73px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--blue-2);
    display: flex;
    align-items: center;
    position: relative;
}

.cs .cs-right-btn-2 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--blue-2);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: normal;
    white-space: nowrap;
}

.cs .cs-right-btn-wrapper {
    width: 260px;
    height: 49px;
    justify-content: center;
    gap: 10px;
    padding: 15px 73px;
    margin-right: -5.00px;
    background-color: var(--blue-2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.cs .cs-right-btn-3 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-1);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: normal;
    white-space: nowrap;
}

/* Original CSS code should be injected here */

.cs .cs-right-name,
.cs .text-wrapper-5,
.cs .cs-right-content {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    height: 100%;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 14px;
    letter-spacing: -0.28px;
    line-height: normal;
    padding: 0;
    margin: 0;
}

.cs .cs-right-name::placeholder,
.cs .text-wrapper-5::placeholder,
.cs .cs-right-content::placeholder {
    color: var(--gray-6);
}

.cs .cs-right-content {
    resize: vertical;
    /* min-height: 230px; */
    font-family: "Pretendard-Regular", Helvetica;
}

.cs .cs-right-chk-box {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid var(--gray-6);
    background-color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.cs .cs-right-chk-box:checked {
    background-color: var(--blue-2);
    border-color: var(--blue-2);
}

.cs .cs-right-chk-box:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cs .cs-right-chk-box:focus-visible {
    outline: 2px solid var(--blue-2);
    outline-offset: 2px;
}

.cs .cs-right-chk-txt {
    cursor: pointer;
    user-select: none;
}

.cs .cs-right-btn,
.cs .cs-right-btn-wrapper {
    cursor: pointer;
    transition: all 0.2s ease;
}

.cs .cs-right-btn:hover {
    background-color: var(--blue-2);
    border-color: var(--blue-2);
}

.cs .cs-right-btn:hover .cs-right-btn-2 {
    color: var(--white-1);
}

.cs .cs-right-btn-wrapper:hover {
    background-color: #2563eb;
}

.cs .cs-right-btn:focus-visible,
.cs .cs-right-btn-wrapper:focus-visible {
    outline: 2px solid var(--blue-2);
    outline-offset: 2px;
}

.cs .cs-right-btn:active,
.cs .cs-right-btn-wrapper:active {
    transform: scale(0.98);
}

.cs fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.cs legend {
    padding: 0;
}

.cs input[type="text"]:focus,
.cs input[type="tel"]:focus,
.cs input[type="email"]:focus,
.cs textarea:focus {
    outline: 2px solid var(--blue-2);
    outline-offset: -2px;
}

.cs input[type="text"]:invalid:not(:placeholder-shown),
.cs input[type="tel"]:invalid:not(:placeholder-shown),
.cs input[type="email"]:invalid:not(:placeholder-shown),
.cs textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.cs .div-wrapper-2:has(input:focus),
.cs .cs-right-content-box:has(textarea:focus) {
    background-color: #eeeeee;
}

/* Desktop Responsive Media Queries */
@media (min-width: 1060px) and (max-width: 1199px) {



    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        padding: 0px 80px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 10px;
        padding: 10px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: 28px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 42px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: 15px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 24px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        max-width: 530px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 20px;
        letter-spacing: -0.40px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 52px;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }


    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 240px;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 46px;
        justify-content: center;
        gap: 10px;
        padding: 14px 60px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 46px;
        justify-content: center;
        gap: 10px;
        padding: 14px 60px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        padding: 0px 120px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 10px;
        padding: 10px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 30px;
        letter-spacing: -0.60px;
        line-height: 30px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 45px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 16px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 25px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 22px;
        letter-spacing: -0.44px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 54px;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 250px;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 47px;
        justify-content: center;
        gap: 10px;
        padding: 14px 65px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 47px;
        justify-content: center;
        gap: 10px;
        padding: 14px 65px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        padding: 0px 200px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 10px;
        padding: 10px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 32px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 48px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 26px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 23px;
        letter-spacing: -0.46px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 55px;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 260px;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 48px;
        justify-content: center;
        gap: 10px;
        padding: 14px 68px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 48px;
        justify-content: center;
        gap: 10px;
        padding: 14px 68px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        padding: 0px 280px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 52px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 10px;
        padding: 10px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 34px;
        letter-spacing: -0.68px;
        line-height: 34px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 51px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17.5px;
        letter-spacing: -0.35px;
        line-height: 17.5px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 27px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 23.5px;
        letter-spacing: -0.47px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19.5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17.5px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 56px;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 265px;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 48.5px;
        justify-content: center;
        gap: 10px;
        padding: 15px 70px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 15.5px;
        letter-spacing: -0.31px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 48.5px;
        justify-content: center;
        gap: 10px;
        padding: 15px 70px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 15.5px;
        letter-spacing: -0.31px;
        line-height: normal;
        white-space: nowrap;
    }
}




























@media (max-width: 1269px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
        padding: 0px 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        position: relative;
        width: 100%;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 10px;
        padding: 10px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: 24px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 36px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 14px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 22px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        width: 100%;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 14px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 48px;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 200px;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 10px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        flex-direction: row;
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 44px;
        justify-content: center;
        gap: 10px;
        padding: 13px 50px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 44px;
        justify-content: center;
        gap: 10px;
        padding: 13px 50px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 10px;
        padding: 10px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 35px;
        padding: 0px 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        position: relative;
        width: 100%;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 8px;
        padding: 8px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 20px;
        letter-spacing: -0.40px;
        line-height: 20px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 30px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: 13px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 20px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: relative;
        width: 100%;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 13px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 45px;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 8px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 180px;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 8px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 15px;
        height: 15px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        flex-direction: row;
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 10px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 42px;
        justify-content: center;
        gap: 8px;
        padding: 12px 40px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 42px;
        justify-content: center;
        gap: 8px;
        padding: 12px 40px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 8px;
        padding: 8px;
        position: relative;
        background-color: #ffffff;
        margin-top: 10px;
    }

    .cs .cs-body {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        padding: 0px 16px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        width: 100%;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 8px;
        padding: 8px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;

    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 28px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 27px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 12px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 18px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
        width: 100%;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 12px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 42px;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 8px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 160px;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 8px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 14px;
        height: 14px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        flex-direction: row;
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 8px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 40px;
        justify-content: center;
        gap: 8px;
        padding: 11px 35px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 40px;
        justify-content: center;
        gap: 8px;
        padding: 11px 35px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: normal;
        white-space: nowrap;
    }
}

@media (max-width: 375px) {
    .cs {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 8px;
        padding: 8px;
        position: relative;
        background-color: #ffffff;
    }

    .cs .cs-body {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
        padding: 0px 12px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: relative;
        width: 100%;
    }

    .cs .div-wrapper {
        align-items: center;
        gap: 6px;
        padding: 6px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .element {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 16px;
    }

    .cs .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .cs .span {
        color: #3182f6;
        letter-spacing: -0.26px;
        line-height: 24px;
    }

    .cs .BS {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 11px;
    }

    .cs .text-wrapper-2 {
        letter-spacing: -0.06px;
    }

    .cs .text-wrapper-3 {
        letter-spacing: -0.06px;
        line-height: 17px;
    }

    .cs .cs-left-img {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1.52;
        object-fit: cover;
    }

    .cs .cs-right {
        max-width: 530px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        position: relative;
        width: 100%;
    }

    .cs .div {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        display: flex;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-txt {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .cs .div-2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .text-wrapper-4 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 11px;
        letter-spacing: 0;
        line-height: normal;
    }

    .cs .div-wrapper-2 {
        display: flex;
        height: 40px;
        align-items: center;
        gap: 6px;
        padding: 8px 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 6px;
    }

    .cs .text-wrapper-5 {
        position: relative;
        /* width: 129px; */
        height: 17px;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 10px;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .cs .cs-right-content-box {
        display: flex;
        height: 140px;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        background-color: #f6f6f6;
        border-radius: 6px;
    }

    .cs .cs-right-content {
        position: relative;
        /* width: 117px; */
        /* height: 17px; */
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 10px;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .cs .cs-right-chk-btn {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .cs .cs-right-chk-box {
        position: relative;
        width: 13px;
        height: 13px;
        border-radius: 2px;
        border: 1px solid;
        border-color: var(--gray-6);
    }

    .cs .cs-right-chk-txt {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-6);
        font-size: 10px;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .cs .cs-right-btn-box {
        flex-direction: row;
        justify-content: space-between;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        gap: 8px;
    }

    .cs .cs-right-btn {
        width: 100%;
        height: 38px;
        justify-content: center;
        gap: 6px;
        padding: 10px 30px;
        background-color: #ffffff;
        border-radius: 5px;
        border: 1px solid;
        border-color: var(--blue-2);
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-2 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--blue-2);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: normal;
        white-space: nowrap;
    }

    .cs .cs-right-btn-wrapper {
        width: 100%;
        height: 38px;
        justify-content: center;
        gap: 6px;
        padding: 10px 30px;
        background-color: var(--blue-2);
        border-radius: 5px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .cs .cs-right-btn-3 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: normal;
        white-space: nowrap;
    }
}

:root {
    --white-1: rgba(255, 255, 255, 1);
    --white-2: rgba(251, 251, 251, 1);
    --black-1: rgba(28, 29, 31, 1);
    --gray-1: rgba(247, 247, 248, 1);
    --gray-2: rgba(238, 239, 242, 1);
    --gray-3: rgba(222, 222, 229, 1);
    --gray-4: rgba(213, 218, 227, 1);
    --gray-5: rgba(191, 197, 207, 1);
    --gray-6: rgba(140, 147, 159, 1);
    --gray-7: rgba(97, 100, 106, 1);
    --gray-8: rgba(66, 71, 86, 1);
    --blue-1: rgba(243, 246, 249, 1);
    --blue-2: rgba(49, 130, 246, 1);
    --blue-3: rgba(26, 105, 217, 1);
}

/* Fclick banner full width styles */
.view.fclick_slide01 {
    /* padding: 60px 20px; */
    margin: 0;
}

.view.fclick_slide01 .image {
    /* width: 100%; */
    height: auto;
    display: block;
    object-fit: cover;
}

/* Desktop image - show by default */
.view.fclick_slide01 .image-desktop {
    display: block;
}

/* Mobile image - hide by default */
.view.fclick_slide01 .image-mobile {
    display: none;
}

/* Switch images at 1060px */
/* Desktop sticky scroll - 1061px to 1439px */
@media (min-width: 1061px) and (max-width: 1439px) {
    .fclick .fclick-middle {
        position: relative;
        width: 100%;
        height: 400vh;
    }

    .fclick .fclick-middle-body {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0 100px;
    }

    .fclick .fclick-middle-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 200px);
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        pointer-events: none;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Fix image sizes for this breakpoint */
    .fclick .img,
    .fclick .fclick-middle-5,
    .fclick .fclick-middle-6 {
        width: auto !important;
        max-width: 45% !important;
        height: auto !important;
        flex-shrink: 0;
    }

    .fclick .fclick-middle-txt {
        flex: 1;
        min-width: 0;
    }
}

/* Tablet sticky scroll - 769px to 1060px */
@media (min-width: 769px) and (max-width: 1060px) {
    .view.fclick_slide01 .image-desktop {
        display: none;
    }

    .view.fclick_slide01 .image-mobile {
        display: block;
        width: 100%;
    }

    /* Apply sticky scroll on tablet */
    .fclick .fclick-middle {
        position: relative !important;
        width: 100% !important;
        height: 400vh !important;
        padding: 0 !important;
    }

    .fclick .fclick-middle-body {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        padding: 0 40px !important;
        gap: 0 !important;
    }

    .fclick .fclick-middle-box {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100% - 80px) !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        opacity: 0 !important;
        transition: opacity 0.6s ease-in-out !important;
        pointer-events: none !important;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Mobile - 768px and below - Sticky scroll with all articles visible */
@media (max-width: 768px) {
    .view.fclick_slide01 .image-desktop {
        display: none;
    }

    .view.fclick_slide01 .image-mobile {
        display: block;
        width: 100%;
    }

    /* Apply sticky scroll on mobile with all articles visible */
    .fclick .fclick-middle {
        position: relative !important;
        width: 100% !important;
        height: 400vh !important;
        padding: 0 !important;
    }

    .fclick .fclick-middle-body {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        padding: 40px 20px !important;
        gap: 0 !important;
    }

    .fclick .fclick-middle-box {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100% - 40px) !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 90vh !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        opacity: 0 !important;
        transition: opacity 0.6s ease-in-out !important;
        pointer-events: none !important;
        overflow-y: auto !important;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Control image sizes on mobile to fit in viewport */
    .fclick .img,
    .fclick .fclick-middle-5,
    .fclick .fclick-middle-6 {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 40vh !important;
        object-fit: contain !important;
    }

    /* Adjust text sizes for mobile */
    .fclick .fclick-middle-box .fclick-middle-txt {
        width: 100% !important;
    }

    .fclick .fclick-middle-box .p,
    .fclick .fclick-middle-box .fclick-middle-4 {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .fclick .fclick-middle-box .fclick-middle-3,
    .fclick .fclick-middle-box .fclick-middle-7 {
        font-size: 12px !important;
        line-height: 18px !important;
    }
}

/* Fclick */
/* .fclick {
  display: inline-flex;
  flex-direction: column;
  height: 8027px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  background-color: #ffffff;
} */

.fclick .fclick-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 130px 0px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    position: relative;
}

.fclick .fclick-top-txt-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.fclick .fclick-top-txt {
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: transparent;
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: normal;
    position: relative;
    text-align: center;
}

.fclick .text-wrapper {
    color: #1c1d1f;
    letter-spacing: -0.26px;
}

.fclick .span {
    color: #1a69d9;
    letter-spacing: -0.26px;
}

.fclick .div {
    width: fit-content;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 20px;
    letter-spacing: -0.40px;
    line-height: 20px;
    position: relative;
    text-align: center;
}

.fclick .text-wrapper-2,
.fclick .text-wrapper-3 {
    letter-spacing: -0.08px;
    line-height: 32px;
}

/* Default sticky styles for 1920px and above */
@media (min-width: 1920px) {
    .fclick .fclick-middle {
        position: relative;
        width: 100%;
        height: 400vh;
    }

    .fclick .fclick-middle-body {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .fclick .fclick-middle-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 460px);
        max-width: 1460px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        pointer-events: none;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1;
        pointer-events: auto;
    }
}

.fclick .fclick-middle-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.fclick .fclick-middle-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--blue-3);
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: normal;
}

.fclick .p {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 30px;
    letter-spacing: -0.60px;
    line-height: normal;
}

.fclick .text-wrapper-4 {
    font-weight: 600;
    color: #1c1d1f;
    letter-spacing: -0.18px;
}

.fclick .text-wrapper-5 {
    font-family: "Pretendard-Regular", Helvetica;
    color: #8c939f;
    letter-spacing: -0.18px;
}

.fclick .fclick-middle-3 {
    position: relative;
    width: fit-content;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 28px;
}

.fclick .text-wrapper-6 {
    letter-spacing: -0.06px;
    line-height: 28px;
}

.fclick .text-wrapper-7 {
    letter-spacing: -0.06px;
    line-height: 28px;
}

.fclick .img {
    position: relative;
    flex: 1;
    flex-grow: 1;
    aspect-ratio: 1.62;
    object-fit: cover;
}

.fclick .img-mobile {
    display: none;
}

.fclick .fclick-middle-4 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 30px;
    letter-spacing: -0.60px;
    line-height: normal;
}

.fclick .text-wrapper-8 {
    color: #8c939f;
    letter-spacing: -0.18px;
}

.fclick .text-wrapper-9 {
    color: #1c1d1f;
    letter-spacing: -0.18px;
}

.fclick .text-wrapper-10 {
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: #1c1d1f;
    letter-spacing: -0.18px;
}

.fclick .fclick-middle-5 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    object-fit: cover;
}

.fclick .fclick-middle-5-mobile {
    display: none;
}

.fclick .text-wrapper-11 {
    font-family: "Pretendard-Regular", Helvetica;
    color: #1c1d1f;
    letter-spacing: -0.18px;
}

.fclick .fclick-middle-6 {
    position: relative;
    width: 722px;
    aspect-ratio: 1.62;
    object-fit: cover;
}

.fclick .fclick-middle-6-mobile {
    display: none;
}

.fclick .text-wrapper-12 {
    font-family: "Pretendard-Bold", Helvetica;
    font-weight: 700;
    color: #1c1d1f;
    letter-spacing: -0.18px;
}

.fclick .fclick-middle-7 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-8);
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 18px;
}

.fclick .fclick-bottom {
    flex-direction: column;
    /* width: 1920px;
  height: 722px; */
    align-items: flex-start;
    padding: 140px 360px;
    background-color: var(--black-1);
    display: flex;
    gap: 10px;
    position: relative;
}

.fclick .fclick-bottom-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.fclick .fclick-bottom-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.fclick .fclick-bottom-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-2);
    font-size: 36px;
    text-align: center;
    letter-spacing: -0.72px;
    line-height: 48px;
}

.fclick .fclick-bottom-3 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-2);
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 18px;
}

.fclick .fclick-bottom-ico {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.fclick .fclick-bottom-box {
    display: flex;
    flex-direction: column;
    height: 182px;
    align-items: center;
    gap: 20px;
    padding: 40px 81px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: var(--gray-2);
    border-radius: 20px;
}

.fclick .fclick-bottom-4 {
    position: relative;
    width: 45px;
    height: 45px;
}

.fclick .fclick-bottom-ico-2 {
    width: 87px;
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
}

.fclick .fclick-bottom-wrapper {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1px 6px;
    position: relative;
    background-color: var(--blue-2);
    border-radius: 10px;
}

.fclick .fclick-bottom-5 {
    position: relative;
    width: 3.7px;
    height: 9.9px;
}

.fclick .fclick-bottom-6 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: var(--black-1);
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: normal;
}

.fclick .vector {
    position: relative;
    width: 225px;
    height: 1px;
    object-fit: cover;
}

.fclick .vector-vertical {
    display: none;
}

.fclick .fclick-bottom-7 {
    display: flex;
    flex-direction: column;
    height: 182px;
    align-items: center;
    gap: 20px;
    padding: 25px 32px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: var(--gray-1);
    border-radius: 20px;
    opacity: 0.4;
}

.fclick .eos-icons-api {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    /* padding: 10px 5px; */
    position: relative;
    flex: 0 0 auto;
}

.fclick .vector-2 {
    position: relative;
    /* width: 50px;
  height: 40px; */
}

.fclick .vector-3 {
    position: absolute;
    width: 8.33%;
    height: 4.17%;
    top: 43.75%;
    left: 55.25%;
}

.fclick .vector-4 {
    position: absolute;
    width: 4.83%;
    height: 6.63%;
    top: 46.58%;
    left: 26.79%;
}

.fclick .fclick-bottom-ico-3 {
    width: 186px;
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
    justify-content: space-between;
}

.fclick .fclick-bottom-ico-wrapper {
    display: flex;
    flex-direction: column;
    /* width: 20px;
  height: 20px; */
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1px 5px;
    position: relative;
    background-color: var(--black-1);
    border-radius: 10px;
}

.fclick .fclick-bottom-8 {
    position: relative;
    width: fit-content;
    margin-top: -0.50px;
    font-family: "Pretendard-Regular", Helvetica;
    font-weight: 400;
    color: var(--white-1);
    font-size: 14px;
    text-align: center;
    letter-spacing: -0.28px;
    line-height: normal;
}

.fclick .fclick-bottom-9 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Pretendard-Medium", Helvetica;
    font-weight: 500;
    color: var(--black-1);
    font-size: 17px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: normal;
}

.fclick .fclick-bottom-10 {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 182px;
    align-items: center;
    gap: 25px;
    padding: 40px 64px;
    position: relative;
    background-color: var(--gray-1);
    border-radius: 20px;
    opacity: 0.4;
}

.fclick .vector-5 {
    position: relative;
    width: 47.09px;
    height: 46.88px;
}

.fclick .fclick-bottom-ico-4 {
    width: 121px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
}

/* Original CSS code should be injected here */

/* Responsive improvements */
@media (max-width: 768px) {
    .fclick-top {
        padding: 60px 0px;
    }

    .fclick-top-txt {
        font-size: 28px;
    }

    .div {
        font-size: 16px;
        line-height: 24px;
    }

    /* .fclick-middle removed - sticky scroll styles in line 17227 take precedence */

    .fclick-middle-box {
        flex-direction: column;
        gap: 30px;
    }

    .fclick-middle-txt {
        width: 100%;
    }

    .p,
    .fclick-middle-4 {
        font-size: 24px;
    }

    .fclick-middle-3,
    .fclick-middle-7 {
        font-size: 16px;
        line-height: 24px;
    }

    .fclick-bottom {
        width: 100%;
        padding: 80px 20px;
    }

    .fclick-bottom-2 {
        font-size: 28px;
    }

    .fclick-bottom-3 {
        font-size: 16px;
        line-height: 24px;
    }

    .fclick-bottom-ico {
        flex-direction: column;
        gap: 20px;
    }
}

/* Focus states for accessibility */
.fclick-bottom-box:focus-within,
.fclick-bottom-7:focus-within,
.fclick-bottom-10:focus-within {
    outline: 2px solid var(--blue-2);
    outline-offset: 2px;
}

/* Improved image loading */
.img,
.fclick-middle-5,
.fclick-middle-6 {
    max-width: 100%;
    height: auto;
}

/* Better text contrast for accessibility */
.text-wrapper-2,
.text-wrapper-3 {
    color: var(--gray-8);
}

/* Ensure proper heading hierarchy styling */
h1.fclick-top-txt {
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: transparent;
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: normal;
    text-align: center;
    align-self: stretch;
    margin-top: -1.00px;
    position: relative;
}

h2.fclick-middle-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--blue-3);
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: normal;
}

h3.p,
h3.fclick-middle-4 {
    position: relative;
    align-self: stretch;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 30px;
    letter-spacing: -0.60px;
    line-height: normal;
}

h2.fclick-bottom-2 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Pretendard-SemiBold", Helvetica;
    font-weight: 600;
    color: var(--white-2);
    font-size: 36px;
    text-align: center;
    letter-spacing: -0.72px;
    line-height: 48px;
}

@media (min-width: 1060px) and (max-width: 1199px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: normal;
        position: relative;
        text-align: center;
    }

    /* Removed - using sticky scroll styles from line 17115 instead */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 14px;
        letter-spacing: -0.42px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: 15px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 22px;
    }

    .fclick .img {
        position: relative;
        flex: 1;
        flex-grow: 1;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        width: 500px;
        height: 320px;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 15px;
        letter-spacing: -0.30px;
        line-height: 15px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 100px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 28px;
        text-align: center;
        letter-spacing: -0.56px;
        line-height: 38px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 15px;
        text-align: center;
        letter-spacing: -0.30px;
        line-height: 15px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 150px;
        align-items: center;
        gap: 16px;
        padding: 32px 60px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-2);
        border-radius: 16px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 38px;
        height: 38px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 75px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 18px;
        height: 18px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 1px 5px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 9px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 3.2px;
        height: 8.5px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 15px;
        text-align: center;
        letter-spacing: -0.30px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 180px;
        height: 1px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        height: 150px;
        align-items: center;
        gap: 16px;
        padding: 20px 26px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-1);
        border-radius: 16px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 160px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 9px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 12px;
        text-align: center;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 15px;
        text-align: center;
        letter-spacing: -0.30px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 210px;
        height: 150px;
        align-items: center;
        gap: 20px;
        padding: 32px 52px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 16px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 40px;
        height: 39px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 105px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 0px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: normal;
        position: relative;
        text-align: center;
    }

    /* Removed - using sticky scroll styles from line 17115 instead */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 15px;
        letter-spacing: -0.45px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 16px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 24px;
    }

    .fclick .img {
        position: relative;
        flex: 1;
        flex-grow: 1;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 26px;
        letter-spacing: -0.52px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        width: 550px;
        height: 340px;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 16px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 180px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
        padding: 9px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 32px;
        text-align: center;
        letter-spacing: -0.64px;
        line-height: 42px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 16px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: 16px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 165px;
        align-items: center;
        gap: 18px;
        padding: 36px 70px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-2);
        border-radius: 18px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 41px;
        height: 41px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 80px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 19px;
        height: 19px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 1px 5px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 9px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 3.4px;
        height: 9px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 16px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 200px;
        height: 1px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        height: 165px;
        align-items: center;
        gap: 18px;
        padding: 22px 28px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-1);
        border-radius: 18px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 170px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 9px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 16px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 230px;
        height: 165px;
        align-items: center;
        gap: 22px;
        padding: 36px 58px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 18px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 43px;
        height: 42px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 112px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (min-width: 1440px) and (max-width: 1599px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 110px 0px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 34px;
        letter-spacing: -0.68px;
        line-height: normal;
        position: relative;
        text-align: center;
    }

    /* Removed - using sticky scroll styles from line 13407 instead */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 15px;
        letter-spacing: -0.45px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 26px;
    }

    .fclick .img {
        position: relative;
        flex: 1;
        flex-grow: 1;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        width: 580px;
        height: 360px;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 250px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 80px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 34px;
        text-align: center;
        letter-spacing: -0.68px;
        line-height: 45px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 17px;
        text-align: center;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 175px;
        align-items: center;
        gap: 19px;
        padding: 38px 76px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-2);
        border-radius: 19px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 43px;
        height: 43px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 84px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 19px;
        height: 19px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 1px 6px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 10px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 3.5px;
        height: 9.5px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 17px;
        text-align: center;
        letter-spacing: -0.34px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 215px;
        height: 1px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        height: 175px;
        align-items: center;
        gap: 19px;
        padding: 24px 30px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-1);
        border-radius: 19px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 178px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 1px 5px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 10px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 16px;
        text-align: center;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 240px;
        height: 175px;
        align-items: center;
        gap: 24px;
        padding: 38px 61px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 19px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 45px;
        height: 44.5px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 116px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 0px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 35px;
        letter-spacing: -0.70px;
        line-height: normal;
        position: relative;
        text-align: center;
    }

    .fclick .fclick-middle {
        position: relative;
        width: 100%;
        height: 400vh;
    }

    .fclick .fclick-middle-body {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0 180px;
    }

    .fclick .fclick-middle-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 360px);
        max-width: 1540px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 0;
        transition: opacity 0.6s ease-in-out;
        pointer-events: none;
    }

    .fclick .fclick-middle-box.active {
        opacity: 1;
        pointer-events: auto;
    }

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        position: relative;
        flex: 1;
        flex-grow: 1;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 16px;
        letter-spacing: -0.48px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 29px;
        letter-spacing: -0.58px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 26px;
    }

    .fclick .img {
        position: relative;
        flex: 1;
        flex-grow: 1;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 29px;
        letter-spacing: -0.58px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        width: 620px;
        height: 380px;
        aspect-ratio: 1.62;
        object-fit: cover;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 17px;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 130px 300px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 85px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 35px;
        text-align: center;
        letter-spacing: -0.70px;
        line-height: 47px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 17px;
        text-align: center;
        letter-spacing: -0.34px;
        line-height: 17px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 180px;
        align-items: center;
        gap: 20px;
        padding: 40px 80px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-2);
        border-radius: 20px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 44px;
        height: 44px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 86px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 20px;
        height: 20px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 1px 6px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 10px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 3.6px;
        height: 9.7px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 17px;
        text-align: center;
        letter-spacing: -0.34px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 220px;
        height: 1px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        height: 180px;
        align-items: center;
        gap: 20px;
        padding: 25px 31px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        background-color: var(--gray-1);
        border-radius: 20px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 183px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 1px 5px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 10px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 14px;
        text-align: center;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 17px;
        text-align: center;
        letter-spacing: -0.34px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 248px;
        height: 180px;
        align-items: center;
        gap: 24px;
        padding: 40px 63px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 20px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 46px;
        height: 46px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 119px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (max-width: 1269px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: normal;
        position: relative;
        text-align: start;
    }

    .fclick .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .fclick .span {
        color: #1a69d9;
        letter-spacing: -0.26px;
    }

    .fclick .div {
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: 16px;
        position: relative;
        text-align: start;
    }

    /* Removed .fclick-middle, .fclick-middle-body, .fclick-middle-box to allow sticky scroll from 769-1060px */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 12px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 20px;
        letter-spacing: -0.40px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: 13px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 20px;
    }

    .fclick .img {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .img-desktop {
        display: none;
    }

    .fclick .img-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 20px;
        letter-spacing: -0.40px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-5-desktop {
        display: none;
    }

    .fclick .fclick-middle-5-mobile {
        display: block;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        /* width: 100%; */
        height: 250px;
        object-fit: fill;
        margin: 0 auto;
    }

    .fclick .fclick-middle-6-desktop {
        display: none;
    }

    .fclick .fclick-middle-6-mobile {
        display: block;
        aspect-ratio: 0;
        height: auto;
        width: 335px;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: 13px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 24px;
        text-align: center;
        letter-spacing: -0.48px;
        line-height: 32px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: 13px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 130px;
        align-items: center;
        gap: 14px;
        padding: 60px 50px;
        position: relative;
        width: 100%;
        background-color: var(--gray-2);
        border-radius: 14px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 32px;
        height: 32px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 65px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 16px;
        height: 16px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 8px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 2.8px;
        height: 7.5px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 1px;
        height: 50px;
        object-fit: cover;
    }

    .fclick .vector-horizontal {
        display: none;
    }

    .fclick .vector-vertical {
        display: block;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        /* height: 130px; */
        align-items: center;
        gap: 14px;
        padding: 60px 22px;
        position: relative;
        width: 100%;
        background-color: var(--gray-1);
        border-radius: 14px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 140px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 8px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* height: 130px; */
        align-items: center;
        gap: 18px;
        padding: 60px 45px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 14px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 35px;
        height: 34px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 90px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 16px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 24px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 20px;
        letter-spacing: -0.72px;
        line-height: normal;
        position: relative;
        text-align: start;
    }

    .fclick .text-wrapper-2,
    .fclick .text-wrapper-3 {
        letter-spacing: -0.08px;
        line-height: 22px;
    }

    .fclick .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .fclick .span {
        color: #1a69d9;
        letter-spacing: -0.26px;
    }

    .fclick .div {
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 14px;
        position: relative;
        text-align: start;
    }

    /* Removed .fclick-middle, .fclick-middle-body, .fclick-middle-box to allow sticky scroll at 767px and below */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 11px;
        letter-spacing: -0.33px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 12px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 18px;
    }

    .fclick .img {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
        margin: 0 auto;

    }

    .fclick .img-desktop {
        display: none;
    }

    .fclick .img-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-5-desktop {
        display: none;
    }

    .fclick .fclick-middle-5-mobile {
        display: block;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        /* width: 100%; */
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-6-desktop {
        display: none;
    }

    .fclick .fclick-middle-6-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 12px;
    }
}

@media (max-width: 575px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 12px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 8px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 18px;
        letter-spacing: -0.72px;
        line-height: normal;
        position: relative;
        text-align: start;
    }

    .fclick .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .fclick .span {
        color: #1a69d9;
        letter-spacing: -0.26px;
    }

    .fclick .div {
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 13px;
        letter-spacing: -0.26px;
        line-height: 13px;
        position: relative;
        text-align: start;
    }

    /* Removed .fclick-middle, .fclick-middle-body, .fclick-middle-box to allow sticky scroll at 575px and below */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 10px;
        letter-spacing: -0.30px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 11px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 16px;
    }

    .fclick .img {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .img-desktop {
        display: none;
    }

    .fclick .img-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 16px;
        letter-spacing: -0.32px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-5-desktop {
        display: none;
    }

    .fclick .fclick-middle-5-mobile {
        display: block;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        /* width: 100%; */
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-6-desktop {
        display: none;
    }

    .fclick .fclick-middle-6-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 11px;
        letter-spacing: -0.22px;
        line-height: 11px;
    }
}

@media (max-width: 375px) {
    .fclick .fclick-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 10px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        display: flex;
        gap: 8px;
        position: relative;
    }

    .fclick .fclick-top-txt-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-top-txt {
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: transparent;
        font-size: 16px;
        letter-spacing: -0.72px;
        line-height: normal;
        position: relative;
        text-align: start;
    }

    .fclick .text-wrapper {
        color: #1c1d1f;
        letter-spacing: -0.26px;
    }

    .fclick .span {
        color: #1a69d9;
        letter-spacing: -0.26px;
    }

    .fclick .div {
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 12px;
        letter-spacing: -0.24px;
        line-height: 12px;
        position: relative;
        text-align: start;
    }

    /* Removed .fclick-middle, .fclick-middle-body, .fclick-middle-box to allow sticky scroll at 375px and below */

    .fclick .fclick-middle-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        position: relative;
        flex: 1;
        flex-grow: 1;
        width: 100%;
    }

    .fclick .fclick-middle-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--blue-3);
        font-size: 9px;
        letter-spacing: -0.27px;
        line-height: normal;
    }

    .fclick .p {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .fclick .text-wrapper-4 {
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-5 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-3 {
        position: relative;
        width: fit-content;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 10px;
        letter-spacing: -0.20px;
        line-height: 10px;
    }

    .fclick .text-wrapper-6 {
        letter-spacing: -0.06px;
    }

    .fclick .text-wrapper-7 {
        letter-spacing: -0.06px;
        line-height: 15px;
    }

    .fclick .img {
        position: relative;
        flex: 1;
        flex-grow: 1;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-4 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: transparent;
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: normal;
    }

    .fclick .text-wrapper-8 {
        color: #8c939f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-9 {
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .text-wrapper-10 {
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-5 {
        position: relative;
        /* width: 100%; */
        flex: 1;
        flex-grow: 1;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-5-desktop {
        display: none;
    }

    .fclick .fclick-middle-5-mobile {
        display: block;
    }

    .fclick .text-wrapper-11 {
        font-family: "Pretendard-Regular", Helvetica;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-6 {
        position: relative;
        /* width: 100%; */
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .fclick .fclick-middle-6-desktop {
        display: none;
    }

    .fclick .fclick-middle-6-mobile {
        display: block;
        aspect-ratio: 0;
    }

    .fclick .text-wrapper-12 {
        font-family: "Pretendard-Bold", Helvetica;
        font-weight: 700;
        color: #1c1d1f;
        letter-spacing: -0.18px;
    }

    .fclick .fclick-middle-7 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-8);
        font-size: 10px;
        letter-spacing: -0.20px;
        line-height: 10px;
    }

    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        background-color: var(--black-1);
        display: flex;
        gap: 10px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 24px;
        text-align: center;
        letter-spacing: -0.48px;
        line-height: 32px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: 13px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 16px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 130px;
        align-items: center;
        gap: 14px;
        padding: 60px 50px;
        position: relative;
        width: 100%;
        background-color: var(--gray-2);
        border-radius: 14px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 32px;
        height: 32px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 65px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 16px;
        height: 16px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 8px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 2.8px;
        height: 7.5px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 1px;
        height: 50px;
        object-fit: cover;
    }

    .fclick .vector-horizontal {
        display: none;
    }

    .fclick .vector-vertical {
        display: block;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        /* height: 130px; */
        align-items: center;
        gap: 14px;
        padding: 60px 22px;
        position: relative;
        width: 100%;
        background-color: var(--gray-1);
        border-radius: 14px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 140px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 8px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 13px;
        text-align: center;
        letter-spacing: -0.26px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* height: 130px; */
        align-items: center;
        gap: 18px;
        padding: 60px 45px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 14px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 35px;
        height: 34px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 90px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}







@media (max-width: 767px) {



    .common-title {padding-top: 0px;}
    .common-title .top-sect {font-size: 26px; line-height: 36px;}
    .common-title .bottom-sect {font-size: 14px; line-height: 22px;}
    .common-title br {display: block;}



    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 16px;
        background-color: var(--black-1);
        display: flex;
        gap: 8px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        padding: 7px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 22px;
        text-align: center;
        letter-spacing: -0.44px;
        line-height: 30px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 12px;
        text-align: center;
        letter-spacing: -0.24px;
        line-height: 12px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 14px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 120px;
        align-items: center;
        gap: 12px;
        padding: 60px 45px;
        position: relative;
        width: 100%;
        background-color: var(--gray-2);
        border-radius: 13px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 30px;
        height: 30px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 60px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 15px;
        height: 15px;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 1px 4px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 7px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 2.6px;
        height: 7px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 12px;
        text-align: center;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 1px;
        height: 45px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        /* height: 120px; */
        align-items: center;
        gap: 12px;
        padding: 60px 20px;
        position: relative;
        width: 100%;
        background-color: var(--gray-1);
        border-radius: 13px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 130px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 1px 3px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 7px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 9px;
        text-align: center;
        letter-spacing: -0.18px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 12px;
        text-align: center;
        letter-spacing: -0.24px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* height: 120px; */
        align-items: center;
        gap: 16px;
        padding: 60px 40px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 13px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 32px;
        height: 31px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 85px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (max-width: 575px) {
    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px 100px;
        background-color: var(--black-1);
        display: flex;
        gap: 8px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 6px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 20px;
        text-align: center;
        letter-spacing: -0.40px;
        line-height: 28px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 11px;
        text-align: center;
        letter-spacing: -0.22px;
        line-height: 11px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 12px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 110px;
        align-items: center;
        gap: 11px;
        padding: 60px 40px;
        position: relative;
        width: 100%;
        background-color: var(--gray-2);
        border-radius: 12px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 28px;
        height: 28px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 55px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 14px;
        height: 14px;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 1px 3px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 7px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 2.4px;
        height: 6.5px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 11px;
        text-align: center;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 1px;
        height: 40px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        /* height: 110px; */
        align-items: center;
        gap: 11px;
        padding: 60px 18px;
        position: relative;
        width: 100%;
        background-color: var(--gray-1);
        border-radius: 12px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 120px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 1px 3px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 7px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 8px;
        text-align: center;
        letter-spacing: -0.16px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 11px;
        text-align: center;
        letter-spacing: -0.22px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* height: 110px; */
        align-items: center;
        gap: 14px;
        padding: 60px 36px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 12px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 30px;
        height: 29px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 80px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

@media (max-width: 375px) {
    .fclick .fclick-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 20px 80px;
        background-color: var(--black-1);
        display: flex;
        gap: 8px;
        position: relative;
    }

    .fclick .fclick-bottom-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-txt {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 5px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-2 {
        position: relative;
        align-self: stretch;
        margin-top: -1.00px;
        font-family: "Pretendard-SemiBold", Helvetica;
        font-weight: 600;
        color: var(--white-2);
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.36px;
        line-height: 26px;
    }

    .fclick .fclick-bottom-3 {
        position: relative;
        align-self: stretch;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--gray-2);
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.20px;
        line-height: 10px;
    }

    .fclick .fclick-bottom-ico {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-box {
        display: flex;
        flex-direction: column;
        height: 100px;
        align-items: center;
        gap: 10px;
        padding: 60px 35px;
        position: relative;
        width: 100%;
        background-color: var(--gray-2);
        border-radius: 11px;
    }

    .fclick .fclick-bottom-4 {
        position: relative;
        width: 26px;
        height: 26px;
    }

    .fclick .fclick-bottom-ico-2 {
        width: 50px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-wrapper {
        display: flex;
        flex-direction: column;
        width: 13px;
        height: 13px;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 1px 3px;
        position: relative;
        background-color: var(--blue-2);
        border-radius: 6px;
    }

    .fclick .fclick-bottom-5 {
        position: relative;
        width: 2.2px;
        height: 6px;
    }

    .fclick .fclick-bottom-6 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .fclick .vector {
        position: relative;
        width: 1px;
        height: 35px;
        object-fit: cover;
    }

    .fclick .fclick-bottom-7 {
        display: flex;
        flex-direction: column;
        /* height: 100px; */
        align-items: center;
        gap: 10px;
        padding: 60px 16px;
        position: relative;
        width: 100%;
        background-color: var(--gray-1);
        border-radius: 11px;
        opacity: 0.4;
    }

    .fclick .eos-icons-api {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .vector-2 {
        position: relative;
    }

    .fclick .vector-3 {
        position: absolute;
        width: 8.33%;
        height: 4.17%;
        top: 43.75%;
        left: 55.25%;
    }

    .fclick .vector-4 {
        position: absolute;
        width: 4.83%;
        height: 6.63%;
        top: 46.58%;
        left: 26.79%;
    }

    .fclick .fclick-bottom-ico-3 {
        width: 110px;
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }

    .fclick .fclick-bottom-ico-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 1px 3px;
        position: relative;
        background-color: var(--black-1);
        border-radius: 6px;
    }

    .fclick .fclick-bottom-8 {
        position: relative;
        width: fit-content;
        margin-top: -0.50px;
        font-family: "Pretendard-Regular", Helvetica;
        font-weight: 400;
        color: var(--white-1);
        font-size: 7px;
        text-align: center;
        letter-spacing: -0.14px;
        line-height: normal;
    }

    .fclick .fclick-bottom-9 {
        position: relative;
        width: fit-content;
        margin-top: -1.00px;
        font-family: "Pretendard-Medium", Helvetica;
        font-weight: 500;
        color: var(--black-1);
        font-size: 10px;
        text-align: center;
        letter-spacing: -0.20px;
        line-height: normal;
    }

    .fclick .fclick-bottom-10 {
        display: flex;
        flex-direction: column;
        width: 100%;
        /* height: 100px; */
        align-items: center;
        gap: 12px;
        padding: 60px 32px;
        position: relative;
        background-color: var(--gray-1);
        border-radius: 11px;
        opacity: 0.4;
    }

    .fclick .vector-5 {
        position: relative;
        width: 28px;
        height: 27px;
    }

    .fclick .fclick-bottom-ico-4 {
        width: 75px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        position: relative;
        flex: 0 0 auto;
    }
}

/* Sequential fade-in animation for fclick-bottom section */
.fade-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Specific animations for different elements */
.fclick-bottom-txt.fade-animate {
    transition-delay: 0s;
}

.fclick-bottom-box.fade-animate,
.fclick-bottom-7.fade-animate,
.fclick-bottom-10.fade-animate {
    transition-duration: 0.6s;
}

.vector.fade-animate {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.vector.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Highlight rotation animation - 5 second interval */
/* Default box background - var(--gray-1) with opacity 0.4 */
.fclick-bottom-box,
.fclick-bottom-7,
.fclick-bottom-10 {
    background-color: var(--gray-1) !important;
    opacity: 0.4;
    transition: background-color 0.8s ease-in-out, transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

/* Active box background - var(--gray-2) with opacity 1 */
.fclick-bottom-box.highlight-active,
.fclick-bottom-7.highlight-active,
.fclick-bottom-10.highlight-active {
    background-color: var(--gray-2) !important;
    opacity: 1 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

/* Icon images transition */
.fclick-bottom-4,
.vector-2,
.vector-5 {
    transition: opacity 0.3s ease-in-out;
}

/* Default number backgrounds - var(--black-1) */
.fclick-bottom-wrapper,
.fclick-bottom-ico-wrapper {
    background-color: var(--black-1) !important;
    transition: background-color 0.8s ease-in-out;
}

/* Active number background - var(--blue-2) */
.fclick-bottom-box.highlight-active .fclick-bottom-wrapper,
.fclick-bottom-7.highlight-active .fclick-bottom-ico-wrapper,
.fclick-bottom-10.highlight-active .fclick-bottom-ico-wrapper {
    background-color: var(--blue-2) !important;
}

/* Default number text/image */
.fclick-bottom-5,
.fclick-bottom-8 {
    transition: color 0.8s ease-in-out;
}

/* Active number text to white (for box 2, 3) */
.fclick-bottom-7.highlight-active .fclick-bottom-8,
.fclick-bottom-10.highlight-active .fclick-bottom-8 {
    color: #FFFFFF !important;
}

/* Default text color */
.fclick-bottom-6,
.fclick-bottom-9 {
    transition: color 0.8s ease-in-out;
}

/* Active text to var(--blue-3) */
.fclick-bottom-box.highlight-active .fclick-bottom-6,
.fclick-bottom-7.highlight-active .fclick-bottom-9,
.fclick-bottom-10.highlight-active .fclick-bottom-9 {
    color: var(--blue-3) !important;
}

/* Main Hero Swiper Slider Styles */
.view.main_slide01 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main-hero-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-hero-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.main-hero-slider .swiper-slide {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-hero-slider .swiper-slide .image {
    width: 100%;
    padding: 0 100px;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* Desktop image - show by default */
.main-hero-slider .swiper-slide .image-desktop {
    display: block;
}

/* Mobile image - hide by default */
.main-hero-slider .swiper-slide .image-mobile {
    display: none;
}

/* Swiper Navigation Buttons for Main Hero */
.main-hero-prev,
.main-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-hero-prev:hover,
.main-hero-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.main-hero-prev {
    left: 20px;
}

.main-hero-next {
    right: 20px;
}

.main-hero-prev:after,
.main-hero-next:after {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

/* Swiper Pagination for Main Hero */
.main-hero-pagination {
    bottom: 40px !important;
    z-index: 10;
}

.main-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.main-hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Tablet - Switch to mobile images at 1270px */
@media (max-width: 1270px) {
    .main-hero-slider .swiper-slide .image-desktop {
        display: none;
    }

    .main-hero-slider .swiper-slide .image-mobile {
        display: block;
        /* width: 100%; */
    }
}

/* Mobile - Smaller navigation and pagination */
@media (max-width: 768px) {

    .main-hero-prev,
    .main-hero-next {
        width: 45px;
        height: 45px;
    }

    .main-hero-prev {
        left: 10px;
    }

    .main-hero-next {
        right: 10px;
    }

    .main-hero-prev:after,
    .main-hero-next:after {
        font-size: 22px;
    }

    .main-hero-pagination {
        bottom: 20px !important;
    }

    .main-hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }

    .main-hero-pagination .swiper-pagination-bullet-active {
        width: 24px;
    }
}