.scroll_y {
    opacity: 0;
    transform: translateY(20px);
}
.scroll_x {
    opacity: 0;
    transform: translateX(-20px);
}




/*--------------------------------------------- header ---------------------------------------------*/
.h_top {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    pointer-events: none;
    transition: height .4s ease;
}
.h_top::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--dark-line);
    transform: translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .4s ease, left .6s ease;
}
.h_inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h_logo {
    width: 130px;
    pointer-events: all;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: width .4s ease;
}
.h_nav {
    width: fit-content;
    height: 100%;
    pointer-events: all;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.h_nav > ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.h_nav > ul > li {
    height: 100%;
    position: relative;
}
.nav_main {
    min-width: 140px;
    height: 100%;
    position: relative;
}
.nav_main::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: calc(50% - 16px);
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: opacity .3s ease, top .3s ease;
}
.nav_main a {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: font-size .3s ease;
}

.nav_sub {
    width: 140px;
    position: absolute;
    top: calc(50% + 20px);
    left: 0;
    background-color: var(--gray-500);
    padding: 16px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.nav_sub li {
    width: 100%;
    border-radius: 6px;
    transition: background .3s ease;
}
.nav_sub li a {
    padding: 8px 0;
    text-align: center;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--white);
}


.h_nav > ul > li:hover .nav_sub {
    top: calc(50% + 30px);
    opacity: 1;
    pointer-events: all;
}
.h_nav > ul > li:hover .nav_main::before,
.nav_main.show::before {
    top: calc(50% - 22px);
    opacity: 1;
}
.nav_sub li:hover {
    background-color: rgba(255, 255, 255, .1);
}

.h_r {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    pointer-events: all;
}
.trollygo {
    width: 140px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background .3s ease;
}
.trollygo a {
    padding: 8px 20px;
}
.trollygo img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.trollygo:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.language {
    width: 80px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.language_btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.language_icon {
    width: 24px;
    height: 24px;
}
.language_arrow {
    width: 12px;
    height: 12px;
    transition: transform .3s ease;
}
.language .language_list {
    width: 80px;
}
.language:hover .language_arrow {
    transform: rotate(180deg);
}
.language:hover .nav_sub {
    top: calc(50% + 30px);
    opacity: 1;
    pointer-events: all;
}

.h_top.bg {
    height: 60px;
}
.h_top.bg::before {
    transform: translateX(0);
}
.h_top.bg .h_logo {
    width: 110px;
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}
.h_top.bg .nav_main::before {
    background-color: var(--primary);
}
.h_top.bg .nav_main a {
    font-size: var(--ft16);
    color: var(--gray-500);
}
.h_top.bg .h_nav > ul > li:hover .nav_sub {
    top: calc(50% + 24px);
}
.h_top.bg .trollygo {
    border: 1px solid var(--dark-line);
}
.h_top.bg .trollygo img {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}
.h_top.bg .trollygo:hover {
    background-color: var(--gray-100);
}
.h_top.bg .language_btn {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}
.h_top.bg .ham span {
    background-color: var(--gray-500);
}

.h_top.ham_open::before {
    left: -100%;
}
.h_top.ham_open .h_logo {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    transition: all .2s .3s ease;
}
.h_top.ham_open .ham span {
    background: var(--white);
}

/*-- ham --*/
.ham {
    width: 30px;
    height: 30px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    display: none;
    cursor: pointer;
} 
.ham span {
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--white);
    transform-origin: center cneter;
    transition: transform .3s ease;
}
.ham.active span:nth-child(1) {
    transform: rotate(45deg) translateY(3.5px);
}
.ham.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-3.5px);
}

/*-- ham_box --*/
.ham_box {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    pointer-events: none;
    transition: right .6s ease;
}
.ham_inner {
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 0 40px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
}
.ham_nav {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    padding-bottom: 30px;
}
.ham_nav > ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.ham_nav > ul > li {
    display: flex;
    align-items: center;
    gap: 30px;
    transform: translateX(30px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.ham_nav_main {
    width: 120px;
    font-size: var(--ft32);
    font-weight: var(--semi-bold);
    color: var(--white);
    opacity: .6;
    flex-shrink: 0;
    transition: opacity .2s ease;
}
.eng_ham_box .ham_nav_main {
    width: 260px;
}
.ham_nav_sub {
    display: flex;
    gap: 40px;
    align-items: center;
}
.ham_nav_sub li {
    font-size: var(--ft20);
    font-weight: var(--medium);
    color: var(--white);
    opacity: .6;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s ease;
}
.ham_nav_sub li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary);
    display: none;
}
.ham_nav_sub li a {
    padding: 0 10px;
}
.ham_btm {
    width: 100%;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(30px);
    transition: transform .3s ease, opacity .3s ease;
}
.ham_trollygo {
    width: 100px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.ham_language {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ham_language li {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--white);
    opacity: .4;
    display: flex;
    align-items: center;
    gap: 20px;
}
.ham_language li:first-child::after {
    content: '';
    width: 1px;
    height: 12px;
    background-color: var(--white);
}
.ham_language li.active {
    opacity: 1;
}
.stx_mark {
    max-width: 50%;
    height: 65vh;
    opacity: .1;
    position: absolute;
    top: 10%;
    right: 20px;
    z-index: 1;
    pointer-events: none;
    transform: translateX(120%);
    transition: transform .6s .1s ease;
}
.stx_mark img {
    object-fit: contain;
}

.ham_box.ham_show {
    right: 0;
    pointer-events: all;
}
body:has(.ham_box.ham_show) {
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    touch-action: none;
}
.ham_box.ham_show .ham_nav > ul > li,
.ham_box.ham_show .ham_btm {
    opacity: 1;
    transform: translateX(0);
    transition: transform .6s var(--ham-delay) ease, opacity .6s var(--ham-delay) ease;
}
.ham_box.ham_show .stx_mark  {
    transform: translateX(0);
}
.ham_nav_main:hover,
.ham_nav_main.show,
.ham_nav_sub li:hover,
.ham_nav_sub li.active {
    opacity: 1;
}
.ham_nav_sub li.active::before {
    display: block;
}



/*-- top_btn --*/
.top_btn {
    position: fixed;
    bottom: 90px;
    right: 50px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: transform .3s ease;
}
.top_btn img {
    width: auto;
    height: 30px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.top_btn span {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--white);
    transform: rotate(90deg);
    display: block;
}
.top_btn:hover {
    transform: translateY(-4px);
}

.top_btn.black img {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}
.top_btn.black span {
    color: var(--gray-500);
}

/*--------------------------------------------- footer ---------------------------------------------*/
.footer {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.footer_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.footer_logo {
    width: 140px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.footer_text {
    font-size: var(--ft40);
    font-weight: var(--semi-bold);
    color: var(--white);
    margin-top: 50px;
}
.footer_nav {
    display: flex;
    gap: 50px;
    flex-shrink: 0;
}
.footer_nav a {
    font-weight: var(--semi-bold);
    color: var(--white);
}
.footer_nav li:hover a {
    text-decoration: underline;
}

.footer_btn {
    width: 100%;
    margin-top: 120px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
.footer_btn .btn_box {
    width: 240px;
    height: 50px;
    border-radius: 6px;
}
.footer_btn .btn_box a {
    padding-left: 20px;
    padding-right: 10px;
}
.footer_btn .btn_box p {
    font-size: var(--ft14);
}
.footer_btn .btn_box .btn_hover {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, .2);
}
.footer_btn .btn_img {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_btn .btn_img img {
    width: 12px;
}
.family_site {
    width: 240px;
    position: relative;
}
.family_box {
    width: 100%;
    height: 50px;
    background-color: var(--gray-500);
    padding-left: 20px;
    padding-right: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.family_site.primary .family_box {
    background-color: var(--primary);
}
.family_box p {
    font-size: var(--ft14);
    color: var(--white);
}
.family_plus {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform .3s ease;
}
.family_plus span {
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--white);
}
.family_plus span:last-child {
    position: absolute;
    transform: rotate(90deg);
}
.family_hover {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .1);
    position: absolute;
    right: 10px;
    transition: all .3s ease;
}
.family_menu {
    width: 100%;
    max-height: 160px;
    padding: 10px 6px;
    border-radius: 6px;
    background-color: var(--gray-500);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: -10px;
    right: 0;
    transform: translateY(-100%);
    -ms-overflow-style: block; 
    scrollbar-width: block; 
    display: none;
    z-index: 1;
}
.family_menu::-webkit-scrollbar {
    display: block;
}
.family_menu li {
    width: 100%;
    height: 35px;
    transition: background .3s ease;
    border-radius: 6px;
    padding: 0 14px;
}   
.family_menu li a {
    font-size: var(--ft14);
    color: var(--white);
    display: flex;
    align-items: center;
}
.family_menu li:hover {
    background-color: rgba(255, 255, 255, .1);
}
.family_box:hover .family_hover,
.family_box.open .family_hover {
    width: 100%;
    height: 100%;
    right: 0;
}
.family_box:hover .family_plus,
.family_box.open .family_plus {
    transform: rotate(180deg);
}
.footer_btm {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.footer_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer_info > * {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.footer_info * {
    width: fit-content;
    font-size: var(--ft14);
    color: var(--gray-200);
}
.footer_info .bold {
    font-weight: var(--medium);
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer_info .bold::after {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: var(--gray-200);
}
.copyright {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.copyright * {
    width: fit-content;
    font-size: var(--ft14);
    color: var(--gray-300);
}
.copyright a:hover {
    text-decoration: underline;
}

/*--------------------------------------------- btn_box ---------------------------------------------*/
.btn_box {
    width: 260px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.btn_box a {
    padding-left: 30px;
    padding-right: 20px;
    background-color: var(--gray-500);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn_box p {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--white);
}
.btn_hover {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    background-color: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}
.btn_box img {
    width: 20px;
    height: auto;
    position: relative;
    z-index: 1;
}

.btn_box:hover .btn_hover {
    width: 100%;
    height: 100%;
    right: 0;
}

.btn_box.primary a {
    background-color: var(--primary);
}

/*--------------------------------------------- page_main ---------------------------------------------*/
.page_main {
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
    overflow: hidden;
}
.page_main .main_img {
    width: 100%;
    height: calc(100vh - 50px);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}
.page_main .main_img img {
    transform: scale(1.2);
    transition: transform 6s linear;
}
.page_main .main_inner {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.page_main .main_eng {
    font-size: var(--ft24);
    font-weight: var(--medium);
    color: var(--white);
    text-align: center;
}
.page_main .main_title {
    font-size: var(--ft80);
    font-weight: var(--bold);
    color: var(--white);
    text-align: center;
}
.page_main .main_tab {
    padding: 10px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 80px;
}
.page_main .main_tab div {
    width: 160px;
    height: 50px;
    border-radius: 30px;
}
.page_main .main_tab a {
    font-size: var(--ft18);
    font-weight: var(--medium);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: pre-line;
}
.page_main .main_tab div.active {
    background-color: var(--gray-500);
}
.page_main .main_tab div.active a {
    color: var(--white);
}

.page_main.on .main_img img {
    transform: scale(1);
}


/*-- sticky_top --*/
.sticky_top {
    width: 100%;
    height: 50px;
    background-color: var(--white);
    position: sticky;
    top: 60px;
    left: 0;
    z-index: 5;
}
.sticky_top ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}
.sticky_top li {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-500);
    text-align: center;
    opacity: .4;
    transition: opacity .2s ease;
}
.sticky_top li:hover {
    opacity: .6;
}
.sticky_top li.show {
    opacity: 1;
}

.pagi_line {
    width: 100%;
    height: 3px;
    background-color: var(--gray-100);
    position: absolute;
    left: 0;
    bottom: 0;
}
.pagi_line span {
    display: block;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 0 2px 2px 0;
}

/*--------------------------------------------- page_wrap ---------------------------------------------*/
.page_wrap {
    padding-top: 120px;
    padding-bottom: 180px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}
.page_sec_eng {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--primary);
    margin-bottom: 30px;
}
.page_sec_title {
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
}
.page_sec_text {
    font-size: var(--ft20);
    color: var(--gray-400);
    margin-top: 40px;
}

/*--------------------------------------------- sub_sec ---------------------------------------------*/
.sub_sec {
    display: flex;
    align-items: start;
    margin-top: var(--sec-gap);
}
.sub_sec:first-child {
    margin-top: 0;
}
.sub_sec_title {
    width: 560px;
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-20px);
    position: sticky;
    top: 160px;
    left: 0;
}
.sub_sec_bold {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    margin-bottom: 20px;
}
.sub_sec_text {
    font-size: var(--ft20);
    color: var(--gray-400);
}
.sub_sec_s_text {
    font-size: var(--ft16);
    color: var(--gray-400);
}
.sub_sec_box {
    width: calc(100% - 560px);
    opacity: 0;
    overflow: hidden;
}

/*--------------------------------------------- swiper ---------------------------------------------*/
.swiper_box {
    width: 100%;
    position: relative;
}
.swiper_pagination {
    height: 4px;
    background-color: var(--gray-100);
    position: relative;
    margin-top: 60px;
}
.swiper_pagination .swiper-pagination-progressbar-fill {
    background-color: var(--gray-500);
}


/*-- swiper_btn --*/
.swiper_btn {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}
.swiper_btn div {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.10));
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}
.swiper_btn .swiper_prev {
    transform: translateX(-30px);
}
.swiper_btn .swiper_next {
    transform: translateX(30px);
}
.swiper_btn .swiper_prev:hover {
    transform: translateX(-40px);
}
.swiper_btn .swiper_next:hover {
    transform: translateX(40px);
}
.swiper_btn img {
    width: 32px;
    height: 32px;
}
.swiper_box:hover .swiper_btn div {
    opacity: 1;
}

.swiper_btn .swiper-button-disabled {
    opacity: 0 !important;
}


/*--------------------------------------------- pagination ---------------------------------------------*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--contant-gap);
    margin-top: 100px;
}
.pagination .pagination_btn {
    width: 32px;
    height: 32px;
}
.pagination .pagination_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination ul {
    display: flex;
    gap: 10px;
    padding: 0 10px;
}
.pagination ul li {
    width: 32px;
    height: 32px;
    border-radius: 16px;
}
.pagination ul li a {
    font-size: var(--ft18);
    text-align: center;
    line-height: 32px;
}
.pagination span {
    font-size: var(--ft18);
    color: var(--gray-400);
}
.pagination i {
    font-size: var(--ft14);
    color: var(--gray-400);
}
.pagination ul li:hover,
.pagination ul li.page_click {
    background-color: var(--primary);
}
.pagination ul li:hover a,
.pagination ul li.page_click a {
    color: var(--white);
}

/*--------------------------------------------- form_list ---------------------------------------------*/
.form_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.form_flex .form_box {
    width: calc(50% - 10px);
}
.form_box {
    width: 100%;
    position: relative;
}
.form_name {
    width: fit-content;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
    padding: 0 10px;
    margin-bottom: 10px;
    background-color: var(--white);
    display: flex;
    align-items: start;
    gap: 2px;
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1;
}
.form_name span {
    font-size: var(--ft12);
    font-weight: var(--medium);
    color: var(--primary);
}

.form_border {
    width: 100%;
    height: 56px;
    border: 1px solid var(--dark-line) !important; 
    border-radius: var(--border-radius) !important; 
    padding: 12px 20px !important; 
    transition: border .2s ease;
    word-wrap: break-word;
}
/*-- input --*/
input[type="text"].form_input {
    font-weight: var(--medium);
}

/*-- textarea --*/
textarea.form_input {
    font-weight: var(--medium);
    height: 200px;
    min-height: 200px;
    padding: 20px !important;
}
textarea.form_input::placeholder {
    color: var(--gray-300);
}
.form_border.form_textarea {
    height: auto;
    padding: 20px !important;
    white-space: pre-line;
}

/*-- file --*/
.file_box_wrap .form_border {
    display: flex;
    gap: 5px;
}
.file_box {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.file_icon {
    width: 20px;
    height: 20px;
    margin: 5px 0;
}
.file_box input {
    font-weight: var(--medium);
    pointer-events: none;
}
.file_box a {
    display: flex;
    align-items: center;
    line-height: 1;
}
input[type="text"].input_on,
input[type="password"].input_on,
textarea.input_on {
    border-color: var(--gray-400) !important;
}

/*-- datepicker --*/
.form_box.datepicker .form_input {
    padding-left: 45px !important;
}
.form_box.datepicker img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.form_box.datepickers {
    display: flex;
    gap: 20px;
}
.datepickers_box {
    width: 100%;
    display: flex;
    /* align-items: center; */
    gap: 5px;
}
.datepickers_box.prev_date {
    position: relative;
    padding-right: 20px;
}
.datepickers_box.prev_date::after {
    content: '';
    display: block;
    width: 1px;
    height: 26px;
    background-color: var(--dark-line);
    position: absolute;
    right: 0;
}
.datepickers_box img {
    width: 20px;
    height: 20px;
    margin: 5px 0;
}


/*-- label --*/
.form_box.radio_group,
.form_box.checkbox_group {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
}


/*-- select --*/
.form_box .select {
    font-weight: var(--medium);
}
.form_box .select:focus {
    border-color: var(--gray-500);
}

/*-- form_agree --*/
.agree_label {
    margin-top: 20px;
}
.agree_label label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.agree_label span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.agree_label span::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--gray-400);
    position: absolute;
    transform: scale(0);
    transition: transform .2s ease;
}
.agree_label span img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.agree_label p {
    font-size: var(--ft16);
    color: var(--gray-400);
}
.agree_label input:checked ~ label span::before {
    transform: scale(1);
}

/*-- send_btn --*/
.send_btn {
    width: 100%;
    max-width: 400px;
    height: 56px;
    margin: 60px auto 0;
    border-radius: var(--border-radius);
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background .2s ease;
}
.send_btn p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--white);
    text-align: center;
}
.send_btn:hover {
    background-color: var(--primary-hover);
}

/*--------------------------------------------- search_box ---------------------------------------------*/
.search_box {
    width: 300px;
    height: 60px;
    border-radius: 30px;
    padding-right: 20px;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
}
.search_box input {
    width: 100%;
    height: 100%;
    padding-left: 30px;
}
.search_btn {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search_btn img {
    width: 20px;
    height: 20px;
}

/*--------------------------------------------- detail_wrap ---------------------------------------------*/
.detail_wrap {
    margin-top: var(--gap);
    padding: var(--contant-gap) 0;
    background-color: var(--gray-100);
}

/*-- list_btn --*/
.list_btn {
    width: 100%;
    max-width: 300px;
    height: 56px;
    margin: 0 auto; 
    margin-top: 80px;
    border-radius: var(--border-radius);
    background-color: var(--gray-400);
    transition: background .2s ease;
}
.list_btn a {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.list_btn:hover {
    background-color: var(--gray-400-hover);
}

/*--------------------------------------------- null_box ---------------------------------------------*/
.null_box {
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
.null_box img {
    width: 60px;
    height: 60px;
}
.null_text {
    font-size: var(--ft20);
    font-weight: var(--medium);
    color: var(--gray-300);
}

/*--------------------------------------------- loader_bg ---------------------------------------------*/
.loader_bg {
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .4);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: none;
}
.loader_bg.active {
    display: flex;
}
body:has(.loader_bg.active) {
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    touch-action: none;
}
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}
.loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--white);
    animation: prixClipFix 2s linear infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}
@keyframes prixClipFix {
    0% {
        clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }
    25% {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }
    50% {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }
    75% {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }
    100% {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}

/*--------------------------------------------- swiper_popup ---------------------------------------------*/
.swiper_box {
    width: 100%;
    margin-top: 30px;
}
.swiper_box .swiper_list {
    overflow: hidden;
}
.swiper_box .slide {
    width: calc(100% / 3);
    height: auto;
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-line);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.swiper_img {
    width: 100%;
    height: 100%;
}
.slide_more {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .3s ease;
}
.slide_more img {
    width: 32px;
    height: 32px;
}
.slide_more p {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--white);
}

.swiper_box .swiper-slide:hover .slide_more {
    opacity: 1;
}

.swiper_popup {
    width: 100%;
    height: 100dvh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}
.swiper_popup.popup_show {
    opacity: 1;
    pointer-events: all;
}
body:has(.swiper_popup.popup_show) {
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    touch-action: none;
}
.popup_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
}
.popup_img {
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    position: relative;
    z-index: 1;
}
.popup_swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.popup_swiper img {
    object-fit: contain;
}
.close_btn {
    padding: 10px 40px;
    border-radius: 20px;
    background-color: var(--gray-500);
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.close_btn p {
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.swiper_popup .swiper_btn div {
    pointer-events: none;
    opacity: 1 !important;
}
.swiper_popup .swiper_btn .swiper_prev,
.swiper_popup .swiper_btn .swiper_next {
    transform: translateX(0);
}
.swiper_popup .swiper_btn .swiper_prev:hover {
    transform: translateX(-10px);
}
.swiper_popup .swiper_btn .swiper_next:hover {
    transform: translateX(10px);
}
.swiper_popup.popup_show .swiper_btn div {
    pointer-events: all;
}
.swiper_popup .swiper_btn img {
    display: block !important;
}

@media all and (max-width: 1600px) {
    /*-- header --*/
    .h_logo {
        width: 120px;
    }
    .h_top.bg .h_logo {
        width: 110px;
    }
    .nav_main {
        min-width: 110px;
    }
    .nav_sub {
        width: 110px;
    }
    .h_r {
        gap: 20px;
    }

    .top_btn {
        bottom: 50px;
        right: 30px;
    }

    /*-- page_main --*/
    .page_main .main_title {
        font-size: var(--ft70);
    }
    .page_main .main_tab {
        padding: 6px;
        bottom: 50px;
    }
    .page_main .main_tab div {
        width: 140px;
        height: 46px;
    }

    /*-- page_wrap --*/
    .page_sec_eng {
        font-size: var(--ft20);
        margin-bottom: 20px;
    }
    .page_sec_title {
        font-size: var(--ft40);
    }
    .page_sec_text {
        font-size: var(--ft18);
        margin-top: 30px;
    }

    /*--sec_sec --*/
    .sub_sec_title {
        width: 440px;
        font-size: var(--ft40);
    }
    .sub_sec_text {
        font-size: var(--ft18);
    }
    .sub_sec_box {
        width: calc(100% - 440px);
    }

    /*-- sticky_top --*/
    .sticky_top ul {
        gap: 46px;
    }
    .sticky_top li {
        font-size: var(--ft14);
    }
}

@media all and (max-width: 1400px) {
    /*-- header --*/
    .h_top {
        height: 80px;
    }
    .nav_main a {
        font-size: var(--ft16);
    }
    .h_nav > ul > li:hover .nav_sub {
        top: 70px;
    }
    .h_r {
        gap: 10px;
    }
    .trollygo {
        width: 120px;
    }

    /*-- footer --*/
    .footer_text {
        font-size: var(--ft32);
    }

    /*-- page_main --*/
    .page_main .main_inner {
        gap: 20px;
    }
    .page_main .main_eng {
        font-size: var(--ft20);
    }
    .page_main .main_title {
        font-size: var(--ft50);
    }
    .page_main .main_tab a {
        font-size: var(--ft16);
    }

    .page_wrap {
        padding-top: 90px;
        padding-bottom: 120px;
    }
    .sub_sec_title {
        position: static;
    }

    /*-- sticky_top --*/
    .sticky_top ul {
        gap: 40px;
    }
    .sticky_top li {
        font-size: var(--ft14);
    }

    /*-- sec_sec --*/
    .sub_sec {
        flex-direction: column;
        gap: 30px;
    }
    .sub_sec_title,
    .sub_sec_box {
        width: 100%;
    }
    .sub_sec_title {
        font-size: var(--ft36);
        white-space: normal;
    }
}

@media all and (max-width: 1200px) {
    /*-- header --*/
    .ham {
        display: flex;
    }
    .h_nav,
    .trollygo,
    .language {
        display: none;
    }

    /*-- footer --*/
    .footer_btm {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    /*-- sec_sec --*/
    .sub_sec_title {
        font-size: var(--ft32);
    }
    .sub_sec_bold {
        font-size: var(--ft20);
    }

    .sticky_top {
        height: 4px;
    }
    .sticky_top ul {
        display: none;
    }
    
    /*-- swiper --*/
    .swiper_btn div {
        width: 48px;
        height: 48px;
    }
    .swiper_btn .swiper_prev {
        transform: translateX(-24px);
    }
    .swiper_btn .swiper_next {
        transform: translateX(24px);
    }

    /*-- search --*/
    .search_box {
        height: 50px;
    }
}

@media all and (max-width: 900px) {
    /*-- header --*/
    .h_logo {
        width: 110px;
    }
    .h_top.bg .h_logo {
        width: 100px;
    }
    .ham span {
        width: 24px;
    }
    .ham_inner {
        width: 100%;
        padding: 0 20px;
        padding-top: 24px;
    }
    .ham_nav > ul {
        gap: 24px;
    }
    .ham_nav > ul > li {
        flex-direction: column;
        align-items: start;
        gap: 0;
    }
    .ham_nav_main  {
        font-size: var(--ft24);
        margin-bottom: 10px;
    }
    .ham_nav_sub {
        gap: 0 20px;
        flex-wrap: wrap;
    }
    .ham_nav_sub li {
        font-size: var(--ft18);
    } 
    .ham_nav_sub li a {
        padding: 10px 0;
    }

    .top_btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: var(--gray-500);
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 30px;
        right: 20px;
    }
    .top_btn img {
        display: none;
    }
    .top_btn span {
        font-size: var(--ft12);
        transform: rotate(0deg);
    }
    .top_btn.black span {
        color: var(--white);
    }


    /*-- footer --*/
    .footer_top {
        flex-direction: column;
        gap: 30px;
    }
    .footer_logo {
        width: 80px;
    }
    .footer_text {
        font-size: var(--ft24);
        margin-top: 20px;
    }
    .footer_nav {
        gap: 30px;
    }
    .footer_btn {
        justify-content: start;
    }
    .footer_btn .btn_box,
    .family_site {
        width: 100%;
    }
    .copyright {
        width: 100%;
        padding-right: 60px;
    }

    /*-- page_wrap --*/
    .page_wrap {
        padding-top: 70px;
        padding-bottom: 100px;
    }
    .page_sec_eng {
        font-size: var(--ft16);
        margin-bottom: 14px;
    }
    .page_sec_title {
        font-size: var(--ft28);
        margin-bottom: 20px;
    }
    .page_sec_text {
        font-size: var(--ft16);
        margin-top: 20px;
    }

    /*-- pagination --*/
    .pagination {
        margin-top: 60px;
    }
    .pagination ul {
        gap: 6px;
        padding: 0;
    }
    .pagination ul li {
        width: 28px;
        height: 28px;
    }
    .pagination ul li a {
        font-size: var(--ft16);
        line-height: 28px;
    }

    /*-- swiper --*/
    .swiper_pagination {
        margin-top: 40px;
    }
    .swiper_btn {
        display: none;
    }

    /*-- search --*/
    .search_box {
        width: 100%;
    }

    /*-- form --*/
    .send_btn {
        max-width: 240px;
        height: 50px;
    }
    .send_btn p {
        font-size: var(--ft16);
    }
    .form_flex {
        flex-direction: column;
        gap: 24px;
    }
    .form_flex .form_box {
        width: 100%;
    }
}

@media all and (max-width: 600px) {
    /*-- header --*/
    .h_logo,
    .h_top.bg .h_logo {
        width: 90px;
    }
    .h_top,
    .h_top.bg {
        height: 50px;
    }
    .ham_nav_sub li {
        font-size: var(--ft16);
    } 

    /*-- footer --*/
    .footer {
        padding: 60px 0;
    }
    .footer_nav {
        gap: 20px;
    }
    .footer_btn {
        flex-direction: column;
        gap: 10px;
        margin-top: 60px;
    }
    .footer_btn .btn_box {
        order: 2;
    }
    .footer_info > *,
    .footer_info {
        gap: 10px;
    }

    /*-- btn_box --*/
    .btn_box {
        height: 50px;
        border-radius: 6px;
    }
    .btn_box a {
        padding-left: 20px;
        padding-right: 18px;
    }
    .btn_box img {
        width: 16px;
    }
    .btn_hover {
        width: 32px;
        height: 32px;
    }

    /*-- page_main --*/
    .page_main,
    .page_main.on,
    .page_main .main_img {
        height: 70vh;
    }
    .page_main .main_inner {
        gap: 20px;
    }
    .page_main .main_eng {
        font-size: var(--ft18);
    }
    .page_main .main_title {
        font-size: var(--ft40);
    }
    .page_main .main_tab {
        width: 100%;
        max-width: calc(100% - 40px);
        bottom: 30px;
        gap: 6px;
    }
    .page_main .main_tab div {
        width: 100%;
        height: 36px;
    }
    .page_main .main_tab a {
        font-size: var(--ft14);
        padding: 0 3px;
    }

    .sticky_top {
        top: 50px;
    }

    /*-- sec_sec --*/
    .sub_sec {
        gap: 20px;
    }
    .sub_sec_title {
        font-size: var(--ft28);
    }
    .sub_sec_bold {
        font-size: var(--ft18);
        margin-bottom: 12px;
    }
    .sub_sec_text {
        font-size: var(--ft16);
    }

    /*-- detail_wrap --*/
    .list_btn {
        max-width: 240px;
        height: 50px;
        margin-top: 50px;
    }
}

@media all and (max-width: 360px) {
    /*-- header --*/
    .ham_nav > ul {
        gap: 20px;
    }
    .ham_nav_main {
        font-size: var(--ft20);
    }
    .ham_nav_sub {
        gap: 0 10px;
    }
}