@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'SVN-Abril Fatface';
    src: url('../publics/font/svn-abril-fatface.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
    --red: #912a2d;
    --red-gradient: linear-gradient(293deg,rgba(145, 42, 45, 1) 0%, rgba(194, 58, 63, 1) 100%);
    --ora: #e37138;
    --ora-gradient: linear-gradient(295deg,rgba(227, 113, 56, 1) 0%, rgba(255, 145, 89, 1) 100%);
    --black: #303030;
    --dark: #434343;
    --light: #f6f6f6;
    --shadow-lg: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --shadow-md: 0 3px 7px 0 rgba(0, 0, 0, .13), 0 1px 2px 0 rgba(0, 0, 0, .11);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    background-color: white;
}

section{
    width: 100%;
}

a{
    text-decoration: none;
}

.site-wrap{
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}
.site-wrap.resize{
    max-width: 1160px;
}

.p-l{
    padding: 20px;
}

.px-l{
    padding: 0 20px;
}

.py-l{
    padding: 20px 0;
}

.p-m{
    padding: 16px;
}

.px-m{
    padding: 0 16px;
}

.py-m{
    padding: 16px 0;
}

.p-s{
    padding: 12px;
}

.px-s{
    padding: 0 12px;
}

.py-s{
    padding: 12px 0;
}

.pt-l{
    padding-top: 20px;
}

.pb-l{
    padding-bottom: 20px;
}

.item-wrap{
    padding: 16px 20px;
}

.red-btn{
    background: var(--red-gradient);
    color: white;
}
.ora-btn{
    background: var(--ora-gradient);
    color: white;
}

.space-lg{
    padding: 68px 0;
}

.section-header{
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title{
    text-align: left;
    margin-bottom: 28px;
}
.section-title.center{
    text-align: center;
}


.title-md{
    font-size: 20px;
    font-weight: 600;
    color: var(--ora);
    text-transform: uppercase;
    margin-bottom: 6px;
    padding-left: 10px;
    position: relative;
}
.title-md.white{
    color: white;
}
.title-md::before{
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    top: 6px;
    bottom: 6px;
    opacity: 1;
    background-color: var(--ora);
}
.title-md.white::before{
    background-color: white;
}


.title-lg{
    font-size: 30px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 30px;
}

.section-title.center .title-md{
    padding-left: 0;
}
.section-title.center .title-md::before{
    opacity: 0;
}

.view-all_btn{
    display: inline-flex;
    gap: 10px;
    color: var(--black);
    align-items: center;
}

.bg-lite{
    background-color: var(--light);
}
/* ---------------------- */

.header-st{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
}

.header{
    width: 100%;
}

.header-topbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid #777;
}

.header-topbar_contact{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-topbar_contact li{
    width: fit-content;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 12px;
}

.header-topbar_contact_icon{
    display: inline-block;
    height: 22px;
    width: 22px;
    border: 1px solid white;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    padding-bottom: 2px;
}

.header-topbar_actions{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-topbar_actions li{
    width: fit-content;
}

.profile-btn{
    display: block;
    height: 26px;
    line-height: 26px;
    text-align: center;
    padding: 0 12px;
    border-radius: 13px;
    background: var(--ora-gradient);
    color: white;
    font-weight: 500;
}
.search-btn{
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    color: var(--black);
}

.header-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.header-logo{
    display: inline-block;
    width: fit-content;
}

.header-logo_wrap{
    width: fit-content;
    position: relative;
}

.h-logo-w{
    width: fit-content;
    margin-bottom: 0;
}
.h-logo-w img{
    width: 140px;
}

.h-logo{
    position: absolute;
    inset: 0;
    margin-bottom: 0;
    opacity: 0;
    transition: all .3s;
}
.h-logo img{
    width: 140px;
}

.header-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-menu>li{
    width: fit-content;
    display: inline-flex;
    position: relative;
    gap: 8px;
    align-items: center;
    z-index: 1;
}

.header-menu > li >.sub-menu{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    transform: translate(-50%, calc(100% + 8px));
    z-index: 2;
    margin: 0;
    padding: 12px 12px;
    list-style: none;
    background-color: white;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.header-menu>li>.sub-menu>li{
    width: 100%;
}
.header-menu>li>.sub-menu>li>a{
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--dark);
    text-transform: uppercase;
    transition: all .3s;
}
.header-menu>li>.sub-menu>li>a:hover{
    color: white;
    background: var(--ora-gradient)
}

.header-menu>li>a{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    transition: all .3s;
}
.header-menu>li>i{
    color: white;
    transition: all .3s;
}

.header-menu>li:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.header-menu>li:hover >a, .header-menu>li:hover >i{
    color: var(--ora);
}


.search-wrap{
    position: fixed;
    top: 0;
    left: 45%;
    right: 45%;
    background-color: white;
    height: 115px;
    display: grid;
    place-items: center;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    z-index: 111;
}
.search-wrap.show{
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
}


.seacch-box{
    width: 100%;
    max-width: 400px;
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background-color: var(--light);
    border-radius: 28px;
}

.close-search{
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--red-gradient);
    color: white;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.search-form{
    flex: 1;
    display: flex;
    height: 32px;
    background-color: white;
    border-radius: 16px;
}

.search-submit{
    display: inline-block;
    border: none;
    outline: none;
    background-color: transparent;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    flex-shrink: 0;
}
.search-input{
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
    padding-left: 16px;
}

.call-menu, .mobile-search_btn{
    display: none;
}

.site-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 222;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.site-overlay.show{
    visibility: visible;
    opacity: 1;
}

.mobile-menu-wrap{
    position: fixed;
    right: -320px;
    top: 0;
    bottom: 0;
    width: 300px;
    overflow-y: auto;
    background-color: #141A23;
    color: wite;
    padding: 28px 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: all .3s;
}
.mobile-menu-wrap.show{
    right: 0;
}

.mobile-menu_header{
    display: flex;
    justify-content: flex-start;
    padding: 0 12px;
}
.close-menu{
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: white;
    background: var(--red-gradient);
}

.mobile-menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-menu>li{
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
    flex-wrap: wrap;
}
.mobile-menu>li:hover{
    background-color: #202936;
}
.mobile-menu>li>a{
    display: inline-block;
    width: fit-content;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
}
.mobile-menu>li>i{
    color: white;
}
.mobile-menu>li>.sub-menu{
    width: 100%;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    display: none;
}
.mobile-menu>li>.sub-menu>li{
    width: 100%;
    padding: 8px;
}
.mobile-menu>li>.sub-menu>li:hover{
    background: var(--ora-gradient);
}
.mobile-menu>li>.sub-menu>li>a{
    display: block;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.mobile-contact{
    list-style: none;
    margin: 0;
    padding: 0 12px;
    color: var(--light);
}
.mobile-contact li{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.mobile-menu_footer{
    padding: 0 120x;
    display: flex;
    justify-content: center;
}
.mobile-menu_footer .profile-btn{
    display: inline-block;
}







.hero-st{
    position: relative;
    z-index: 1;
}

.hero-wrap{
    width: 100%;
}

.hero-list{
    width: 100%;
}

.hero-item{
    width: 100%;
    height: 720px;
    overflow: hidden;
    margin-bottom: 0;
}
.hero-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content_wrap{
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.5) 0%, rgba(255, 145, 89, 0.2) 100%);
}

.hero-content{
    position: relative;
    padding-top: 114px;
    display: flex;
    align-items: center;
}

.hero-text{
    width: 100%;
    color: white;
}

.hero-text_md{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.hero-text_lg{
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-cta{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.hero-cta li{
    width: fit-content;
}

.hero-cta_btn{
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 17px;
    transition: all .3s;
}
.hero-cta_btn:hover{
    transform: scale(1.1);
    color: white;
}


.hero-total_st{
    width: 100%;
}

.hero-total{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.hero-total li{
    width: fit-content;
    padding: 20px;
    position: relative;
}
.hero-total li:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    width: 2px;
    right: -1px;
    background-color: #aaa;
}

.hero-total_number{
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: var(--ora);
}
.hero-total_text{
    margin: 0;
    font-size: 16px;
    color: var(--dark);
}


.hero-label{
    position: absolute;
    right: 20px;
    bottom: -88px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .7);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-label_number{
    font-family: "SVN-Abril Fatface", sans-serif;
    font-size: 100px;
    font-weight: 800;
    line-height: 60px;
    color: var(--ora);
    text-shadow:
        -1px 0 2px rgba(255,255,255,0.6),
         1px 0 2px rgba(255,255,255,0.6),
         0 1px 2px rgba(255,255,255,0.6),
         0 -1px 2px rgba(255,255,255,0.6);
}

.hero-label_text{
    font-size: 32px;
    font-weight: 600;
}

.hero-label_bottom{
    margin-top: 22px;
}
.hero-label_bottom p{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.hero-label_bottom a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--black);
    align-items: center;
}

.hlb-icon{
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    color: white;
    background: var(--red-gradient);
    text-align: center;
    border-radius: 8px;
}
.hlb-icon.white{
    color: var(--black);
    background: white;
}

.home-intro{
    padding: 12px;
}

.home-intro_desc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-intro_desc_text{
    text-align: justify;
    text-align-last: center;
    color: var(--black);
    margin-bottom: 16px;
}

.home-intro_desc_btn{
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    color: white;
    background: var(--red-gradient);
    font-weight: 500;
    border-radius: 16px;
    transition: all .3s;
}
.home-intro_desc_btn:hover{
    color: white;
    transform: scale(1.1);
}

.home-intro_item{
    width: 100%;
    aspect-ratio: 1 / 1.13;
    clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
    background-color: var(--ora);
    overflow: hidden;
    position: relative;

}

.i-4, .i-5, .i-6{
    transform: translateY(-80px);
}

.home-intro_item_img{
    margin-bottom: 0;
    width: 100%;
    height: 100%;
}
.home-intro_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-intro_item_content{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: grid;
    place-items: center;
    padding: 20px;
}
.home-intro_item_content p{
    margin: 0;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}


.home-product_wrap{
    width: 100%;
    padding: 16px 20px;
}

.home-product_list{
    width: 100%;
    display: flex;
    gap: 16px;
}

.home-product_item{
    width: 12%;
    height: 400px;
    background-color: var(--ora);
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-product_item.show{
    flex: 1;
    transition: all .3s;
}

.home-product_img{
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home-product_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.home-product_item::before{
    content: "";
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.home-product_content{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    z-index: 3;
}

.home-product_item.show .home-product_content{
    opacity: 1;
    visibility: visible;
}

.home-product_title{
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
}
.home-product_title_label{
    display: inline-block;
    padding: 6px 16px;
    font-weight: 500;
    background-color: var(--ora);
    border-radius: 6px;
    font-weight: 600;
}

.home-product_title_text{
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}

.home-product_btn{
    display: inline-flex;
    gap: 10px;
    color: white;
    align-items: center;
    transition: all .3s;
}
.home-product_btn:hover{
    color: var(--ora);
}


.home-project{
    width: 100%;
    position: relative;
    z-index: 1;
}

.home-project_view{
    width: 100%;
}

.home-project_view_list{
    width: 100%;
}

.home-project_view_item{
    position: relative;
    aspect-ratio: 20/9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #777;
    z-index: 1;
    cursor: pointer;
}
.home-project_view_item::before{
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.home-project_view_img{
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}
.home-project_view_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-project_content{
    position: absolute;
    left: 28px;
    right: calc(50% + 20px);
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: white;
    z-index: 3;
}

.home-project_name{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-left: 10px;
    position: relative;
}
.home-project_name::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: white;
}

.home-project_desc{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    gap: 12px 24px;
}

.home-project_desc li{
    width: fit-content;
    display: flex;
    gap: 6px;
    align-items: center;
}


.home-project_thumb_wrap{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 20px;
    left: calc(50% + 20px);
    bottom: 28px;
    z-index: 2;
}

.home-project_thumb{
    width: calc(100% - 72px)
}

.home-project_thumb_list{
    width: 100%;
}

.home-project_thumb_item{
    aspect-ratio: 2/1;
    border-radius: 8px;
    background-color: var(--ora);
    overflow: hidden;
    border: 1px solid #aaa;
    cursor: pointer;
}

.home-project_nav_prev, .home-project_nav_next{
    font-size: 24px;
    color: white;
    cursor: pointer;
}


.partner-st{
    padding: 68px 0;
    position: relative;
}
.partner-st::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3);
}

.partner-wrap{
    padding: 16px 0;
}

.partner-list{
    width: 100%;
}
.partner-item{
    width: 100%;
}
.partner-item img{
    width: 100%;
}


.home-why_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-why_item{
    width: calc(25% - 12px);
    padding: 16px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .3s;
    cursor: pointer;
}
.home-why_item:hover{
    border: 1px solid var(--ora);
    box-shadow: var(--shadow-md);
}

.home-why_item_header{
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-why_icon{
    margin: 0;
    display: inline-block;
    width: 40px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}
.home-why_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.home-why_title{
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    flex: 1;
}
.home-why_text{
    margin-bottom: 0;
}


.cer-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cer-item{
    width: calc(25% - 15px);
    position: relative;
}

.cer-item_img{
    width: 100%;
    margin: 0;
}
.cer-item_img img{
    width: 100%;
}


.cer-name{
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 0;
    text-align: center;
    font-size: 13px;
}
.cer-title{
    color: var(--black);
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 17px;
}
.cer-year{
    color: var(--dark);
    margin-bottom: 0;
    text-align: center;
}



.home-new_wrap{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 24px;
}

.home-new_first{
    width: calc(50% - 12px);
}

.new-item_m{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.new-item_m:hover .new-img img{
    transform: scale(1.1);
}

.new-item_m>.new-img{
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.new-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.new-title{
    font-weight: 600;
    color: var(--black);
    position: relative;
    margin-bottom: 0;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}
.new-title::before{
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 3px;
    height: 12px;
    background-color: var(--ora);
}

.new-item_m> .new-title{
    font-size: 18px;
    margin-bottom: 8px;
}

.new-info{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}
.new-info li{
    width: fit-content;
    display: flex;
    gap: 4px;
    align-items: center;
    color: var(--dark);
}

.new-desc{
    margin-bottom: 0;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--dark);
}

.home-new_list{
    width: calc(50% - 12px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.new-item{
    width: calc(50% - 8px);
}
.new-item:hover .new-img img{
    transform: scale(1.1);
}
.new-item .new-img{
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.home-new_list .new-item .new-info{
    margin-bottom: 0;
    font-size: 12px;
    gap: 14px;
}





.footer-st{
    position: relative;
    padding-top: 60px;
    z-index: 1;
}
.footer-st::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 26, 35, .7);
    z-index: -1;
}

.footer-wrap{
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   z-index: 3;
}

.footer-col{
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-col.logo{
    align-items: center;
    flex: 1;
}

.footer-logo{
    width: 180px;
    margin-bottom: 0;
}
.footer-logo img{
    width: 100%;
}

.footer-name{
    margin-bottom: 0;
    color: var(--light);
    font-weight: 600;
    text-align: center;
}
.footer-desc{
    margin-bottom: 0;
    color: var(--light);
    text-align: justify;
    text-align-last: center;
}

.footer-title{
    position: relative;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    padding-left: 10px;
    font-weight: 600;
    margin-bottom: 0;
}
.footer-title::before{
    content: "";
    position: absolute;
    width: 3px;
    left: 0;
    top: 5px;
    bottom: 4px;
    background-color: white;
}

.footer-menu{
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu li{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-menu li a{
    color: var(--light);
    transition: all .3s;
}
.footer-menu li a:hover{
    color: var(--ora);
}

.power-st{
    background-color: #141A23;
}

.power-text{
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
    color: var(--light);
}

.page-banner_st{
    position: relative;
    z-index: 1;
}
.page-banner_st::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
}

.page-banner_img{
    width: 100%;
    height: 320px;
    margin-bottom: 0;
}
.page-banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner_content{
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    z-index: 3;
}

.page-title{
    position: relative;
    color: white;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 16px;
    margin-bottom: 0;
}
.page-title::before{
    content: "";
    position: absolute;
    left: 0;
    height: 24px;
    width: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
}

.page-title span{
    text-transform: none;
}


.vision-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vision-item{
    width: calc(50% - 10px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}
.vision-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.vision-img{
    width: 100%;
    height: 320px;
    margin-bottom: 0;
}
.vision-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.vision-label{
    position: absolute;
    z-index: 3;
    left: 20px;
    top: 20px;
    display: inline-block;
    font-weight: 600;
    color: white;
    background: var(--red-gradient);
    padding: 6px 16px;
    border-radius: 18px;
    text-transform: uppercase;
    font-size: 16px;
}
.vision-text{
    position: absolute;
    z-index: 4;
    margin-bottom: 0;
    left: 20px;
    right: 20px;
    bottom: 28px;
    color: white;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all .3s;
}

.vision-item:hover .vision-img img{
    transform: scale(1.1);
}
.vision-item:hover .vision-text{
    display: unset;
}
.vision-item:hover::before{
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, .3) 100%);

}

.core-value-wrap{
    background-color: var(--light);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
}

.core-value_header{
    margin-bottom: 28px;
}
.core-value_label{
    display: inline-block;
    font-weight: 600;
    color: white;
    background: var(--red-gradient);
    padding: 6px 16px;
    border-radius: 18px;
    text-transform: uppercase;
    font-size: 16px;
}

.core-value_list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.core-value_item{
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-value_img{
    display: inline-block;
    width: 72px;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
}
.core-value_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.core-value_title{
    text-transform: uppercase;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 4px;
}
.core-value_text{
    margin-bottom: 0;
    text-align: center;
}

.process-desk, .process-mobile{
    width: 100%;
    margin-bottom: 0;
}
.process-desk img, .process-mobile img{
    width: 100%;
}

.process-mobile{
    display: none;
}


.quality-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.quality-banner{
    width: calc(40% - 16px);
}

.quality-banner_img{
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
}
.quality-banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quality-content{
    width: calc(60% - 16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quality-cer{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.quality-cer li{
    width: fit-content;
    font-size: 20px;
    color: var(--ora);
    font-weight: 600;
    text-transform: uppercase;
}

.quality-content_text{
    margin: 0;
}

.quality-item{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}
.quality-item li{
    width: calc(50% - 8px);
    display: flex;
    gap: 10px;
    align-items: center;
}

.quality-item_icon{
    width: 64px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    margin-bottom: 0;
}
.quality-item_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.quality-item_text{
    flex: 1;
    margin-bottom: 0;
}

.bim-img{
    width: 100%;
    margin-top: 0;
}
.bim-img img{
    width: 100%;
}


.human-gallery{
    width: 100%;
    position: relative;
    z-index: 1;
}

.human-gallery_list{
    width: 100%;
}

.human-gallery_item{
    aspect-ratio: 5/3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0;
    cursor: pointer;
}
.human-gallery_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.human-paginate{
    display: flex;
    justify-content: center;
    padding-top: 12px;
}
.human-paginate .swiper-pagination-bullet-active{
    background-color: var(--red);
}

.human-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all .3s;
    z-index: 2;
}
.human-nav.prev{
    left: 12px;
}
.human-nav.next{
    right: 12px;
}

.human-nav:hover{
    color: var(--red);
}


.factory-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.factory-gallery, .factory-content{
    width: calc(50% - 16px);
}

.factory-gallery_view{
    width: 100%;
    position: relative;
    z-index: 1;
}

.factory-gallery_view_list{
    width: 100%;
}

.factory-gallery_view_item{
    aspect-ratio: 5/3;
    border-radius: 16px;
    margin-bottom: 0;
    overflow: hidden;
    cursor: pointer;
}
.factory-gallery_view_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.factory-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all .3s;
    z-index: 2;
}
.factory-nav:hover{
    color: var(--ora);
}
.factory-nav.next{
    right: 12px;
}
.factory-nav.prev{
    left: 12px;
}

.factory-gallery_thumb{
    width: 70%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-top: 12px;
}

.factory-gallery_thumb_list{
    width: 100%;
}

.factory-gallery_thumb_item{
    aspect-ratio: 2/1;
    border-radius: 8px;
    margin-bottom: 0;
    cursor: pointer;
    overflow: hidden;
}
.factory-gallery_thumb_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.factory-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.factory-tite{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: var(--ora);
}

.factory-info{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.factory-info li{
    width: 100%;
    display: flex;
    gap: 10px;
}
.factory-info_object{
    font-weight: 500;
}
.factory-info_attr{
    font-weight: 600;
    color: var(--black);
}

.factory-content_text{
    margin-bottom: 0;
}



.news-wrap{
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-news_item{
    width: calc(25% - 15px);
}

.new-item_pg .new-img{
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-paginate{
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.main-paginate span{
    display: inline-block;
    width: 24px;
    aspect-ratio: 1/1;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--ora);
    color: white;
    border-radius: 50%;
}
.main-paginate a{
    display: inline-block;
    width: 24px;
    aspect-ratio: 1/1;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    color: var(--black);
    background-color: var(--light);
    text-decoration: none;
    transition: all .3s;
    border-radius: 50%;
}
.main-paginate a:hover{
    color: white;
    background-color: var(--ora);
}


.contact-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.contact-wrap .section-title{
    margin-bottom: 16px;
}

.contact-content, .contact-map{
    width: calc(50% - 16px);
}

.page-contact_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.page-contact_list li{
    width: calc(50% - 10px);
    display: flex;
    gap: 8px;
    align-items: center;
}
.page-contact_list li.f-c{
    flex-direction: column;
    align-items: flex-start;
    width: calc(33.33% - 14px);
}
.page-contact_list li.f-c:last-child{
    width: 100%;
}
.page-contact_list li.f-c .page-contact_text{
    padding-left: 18px;
}

.page-contact_icon{
    display: inline-block;
    width: 28px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    background: var(--red-gradient);
    color: white;
    flex-shrink: 0;
}
.page-contact_text{
    flex: 1;
    font-weight: 500;
    line-height: 16px;
}
.page-contact_title{
    color: var(--red);
}

.contact-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-map_wrap{
    width: 100%;
    height: 400px;
}
.contact-map_wrap iframe{
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.project-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.project-item{
    display: inline-block;
    width: calc(33.33% - 16px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}
.project-item::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.project-item_img{
    width: 100%;
    aspect-ratio: 5/3;
    margin-bottom: 0;
    z-index: 1;
}
.project-item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.project-item_content{
    position: absolute;
    z-index: 3;
    color: white;
    left: 15px;
    right: 16px;
    bottom: 20px;
}

.project-title{
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-info{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.project-link{
    position: absolute;
    z-index: 4;
    inset: 0;
    opacity: 0;
}


.product-item{
    display: inline-block;
    width: calc(33.33% - 16px);
}

.product-item_img{
    width: 100%;
    aspect-ratio: 5/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.product-item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-item_label{
    position: absolute;
    display: inline-block;
    padding: 4px 10px;
    font-weight: 600;
    background: var(--ora-gradient);
    color: white;
    bottom: 12px;
    left: 12px;
    border-radius: 6px;
}

.product-title{
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    margin-bottom: 0;
    padding-left: 8px;
    position: relative;
}
.product-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background-color: var(--ora);
}



.single-page_spacing{
    height: 115px;
}

.single-wrap{
    display: flex;
}

.single-content_wrap{
    padding: 20px;
    flex: 1;
}

.single-post_thumb{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.single-post_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-post_title{
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-post_excerpt{
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
}

.single-post_content img{
    max-width: 100%;
}
.single-post_content p{
    text-align: justify;
    font-size: 16px;
}

.page-content p{
    font-size: 16px;
    text-align: justify;
}


.single-sidebar_wrap{
    padding: 20px;
    width: 400px;
    flex-shrink: 0;
}

.sidebar-box{
    margin-bottom: 24px;
}

.sidebar-title{
    margin-bottom: 16px;
}


.sidebar-post_list{
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sidebar-post_item{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sidebar-post_img{
    width: 120px;
    aspect-ratio: 5/3;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 0;
}

.sidebar-post_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sidebar-post_content{
    flex: 1;
    color: var(--black);
}
.sidebar-post_content .new-info{
    margin-bottom: 0;
    font-size: 13px;
}

.sidebar-post_title{
    font-weight: 500;
    line-height: 16px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}


.sidebar-project_item{
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}
.sidebar-project_item::before{
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
}

.sidebar-project_img{
    width: 100%;
    aspect-ratio: 2/1;
    z-index: 1;
    margin-bottom: 0;
}
.sidebar-project_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sidebar-project_title{
    position: absolute;
    z-index: 3;
    color: white;
    font-weight: 600;
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-transform: uppercase;
    line-height: 16px;
}

.sidebar-project_link{
    position: absolute;
    z-index: 4;
    inset: 0;
}

.sidebar-post_label{
    display: inline-block;
    padding: 3px 6px;
    color: white;
    font-weight: 500;
    border-radius: 4px;
    background-color: var(--ora);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
    width: 75px;
    text-align: center;
}

.single-commit{
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin-bottom: 16px;
}

.single-commit li{
    width: 100%;
    display: flex;
    gap: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 16px;
    align-items: center;
    font-weight: 500;
}
.single-commit li i{
    font-size: 20px;
}
.single-commit li a{
    font-size: 16px;
}

.single-hotline{
    display: block;
    padding: 8px 16px;
    background: var(--ora-gradient);
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
}









.single-project_title{
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.single-project_info{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.single-project_info li{
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid #777;
    border-radius: 6px;
}

.single-post_gallery{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.single-post_gallery_img{
    width: calc(33.33% - 12px);
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
    transition: all .3s;
    cursor: pointer;
}
.single-post_gallery_img.show{
    width: 100%;
}
.single-post_gallery_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.single-product_title{
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 10px;
}
.single-product_label{
    display: inline-block;
    font-size: 16px;
    padding: 8px 10px;
    background: var(--ora-gradient);
    color: white;
    border-radius: 8px;
}

.project-ship{
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}
.project-ship_item{
    display: inline-block;
    width: calc(25% - 9px);
}
.project-ship_item_img{
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}
.project-ship_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-ship_item_title{
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}


.notfound-wrap{
    width: 100%;
    max-width: 340px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.notfound-wrap h1{
    font-weight: 800;
    font-size: 120px;
    margin-bottom: 12px;
    line-height: 100px;
    background: var(--ora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.notfound-wrap h3{
    font-size: 20px;
    line-height: 22px;
}




@media only screen and (max-width: 992px){

    .site-wrap.resize{
        max-width: 700px;
    }

    .i-4, .i-5, .i-6{
        transform: translateY(-60px);
    }

    .home-intro_item_content p{
        font-size: 14px;
    }

    .home-product_content{
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .home-product_title{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .home-why_list{
        gap: 15px;
    }

    .home-why_item{
        width: calc(33.33% - 10px);
    }

    .cer-item{
        width: calc(33.33% - 10px);
    }

    .home-new_wrap{
        align-items: flex-start;
    }

    .home-new_list{
        gap: 12px;
    }

    .home-new_list .new-item{
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .home-new_list .new-item .new-img{
        width: 120px;
        flex-shrink: 0;
        margin-bottom: 0;
        aspect-ratio: 5/3;
    }
    .home-new_list .new-item .home-new_content{
        flex: 1;
    }  

    .news-wrap{
        width: 100%;
        display: flex;
        gap: 20px 18px;
        flex-wrap: wrap;
    }

    .main-news_item{
        width: calc(33.33% - 12px);
    }

    .contact-wrap{
        gap: 28px;
    }

    .contact-content, .contact-map{
        width: 100%;
    }

    .project-item{
        width: calc(50% - 12px);
    }

    .product-item{
        width: calc(50% - 12px);
    }

    .project-ship_item{
        display: inline-block;
        width: calc(50% - 6px);
    }

}

@media only screen and (max-width: 820px){

    .header-topbar{
        display: none;
    }

    .h-logo-w img, .h-logo img{
        width: 120px;
    }

    .header-menu_wrap{
        display: none;
    }

    .call-menu, .mobile-search_btn{
        display: inline-block;
        color: white;
        transition: all .3s;
    }
    .call-menu{
        font-size: 28px;
    }
    .mobile-search_btn{
        font-size: 22px;
    }


    .call-menu:hover, .mobile-search_btn:hover{
        color: var(--ora);
    }

    .search-wrap{
        height: 68px;
    }

    .hero-text{
        text-align: center;
    }
    .hero-text_md{
        font-size: 18px;
    }
    .hero-text_lg{
        font-size: 30px;
    }
    .hero-cta{
        justify-content: center;
        gap: 12px;
    }
    .hero-cta_btn{
        font-size: 14px;
        padding: 4px 12px;
    }

    .hero-label{
        left: 20px;
        bottom: -56px;
        display: flex;
        gap: 6px;
        align-items: flex-end;
    }
    .hero-label_top{
        flex-shrink: 0;
    }
    .hero-label_number{
        font-size: 75px;
    }
    .hero-label_text{
        font-size: 24px;
    }
    .hero-label_bottom{
        display: flex;
        justify-content: space-between;
        flex: 1;
        margin-top: 0;
        align-items: center;
    }
    .hero-label_bottom a{
        width: fit-content;
        gap: 6px;
    }
    .hero-label_bottom p{
        font-size: 24px;
        margin-bottom: 0;
        text-transform: lowercase;
    }

    .hero-total{
        margin-top: 72px;
        padding: 10px;
    }

    .footer-wrap{
        gap: 24px;
    }
    .footer-col{
        width: calc(33.33% - 16px);
    }
    .footer-col.logo{
        flex: unset;
        width: 100%;
    }

    .hero-total li{
        width: 33.33%;
        text-align: center;
        padding: 10px;
    }

    .about-total_wrap .hero-total{
        margin-top: 0;
    }

    .core-value_item{
        width: calc(50% - 10px);
    }

    .quality-wrap{
        gap: 20px;
    }

    .quality-banner, .quality-content{
        width: 100%;
    }

    .single-page_spacing{
        height: 75px;
    }

    .single-wrap{
        flex-wrap: wrap;
    }

    .single-content_wrap, .single-sidebar_wrap{
        width: 100%;
        flex: unset;
        flex-shrink: unset;
    }


}

@media only screen and (max-width: 768px){
    .site-wrap.resize{
        max-width: 500px;
    }

    .i-4, .i-5{
        transform: translateY(138px);
    }

    .i-6{
        transform: translateY(-328px);
    }

    .home-product_list{
        flex-wrap: wrap;
    }
    .home-product_item{
        width: 100%;
        height: 100px;
    }
    .home-product_item.show{
        flex: unset;
        height: 280px;
    }

    .home-why_list{
        gap: 16px;
    }
    .home-why_item{
        width: calc(50% - 8px);
    }

    .home-new_first, .home-new_list{
        width: 100%;
    }

    .footer-col{
        width: calc(50% - 12px);
    }

    .home-project_view_item{
        aspect-ratio: 1/1;

    }
    .home-project_content{
        left: 16px;
        right: 16px;
    }

    .home-project_thumb_wrap{
        position: unset;
        padding-top: 16px;
        gap: 8px;
    }

    .home-project_nav_prev, .home-project_nav_next{
        font-size: 18px;
        color: var(--ora);
    }

    .home-project_thumb_item{
        aspect-ratio: 16/9;
        border-radius: 4px;
    }

    .hero-total_number{
        font-size: 20px;
    }

    .hero-total_text{
        font-size: 12px;
    }

    .vision-label, .core-value_label{
        font-size: 14px;
        border-radius: 16px;
    }

    .core-value_img{
        width: 60px;
    }

    .quality-item_icon{
        width: 50px;
    }

    .factory-wrap{
        gap: 20px;
    }
    .factory-gallery, .factory-content{
        width: 100%;
    }

    .news-wrap{
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .main-news_item{
        width: calc(50% - 10px);
    }

    .project-wrap{
        gap: 20px;
    }

    .project-item{
        width: 100%;
    }

    .product-item{
        width: calc(100%);
    }

    .sidebar-box{
        margin-bottom: 12px;
        position: unset;
    }

}

@media only screen and (max-width: 480px){
    .hero-item{
        height: 540px;
    }

    .hero-content{
        padding-top: 50px;
    }

    .hero-label{
        padding: 16px;
        align-items: center;
        gap: 16px;
    }
    .hero-label_top{
        display: flex;
        flex-direction: column;
    }
    .hero-label_number{
        font-size: 54px;
        line-height: 36px;
    }
    .hero-label_bottom{
        flex-wrap: wrap;
    }
    .hero-label_bottom p{
        font-size: 20px;
        text-transform: unset;
        width: 100%;
    }
    .hero-label_bottom a{
        justify-content: space-between;
        width: 100%;
    }

    .title-md{
        font-size: 16px;
    }
    .title-lg{
        font-size: 22px;
        line-height: 16px;
    }

    .site-wrap.resize{
        max-width: 364px;
    }

    .p-s{
        padding: 6px;
    }

    .i-6{
        transform: translateY(-236px);
    }
    .i-4, .i-5{
        transform: translateY(98px);
    }

    .home-intro_item_content{
        padding: 12px;
    }

    .home-product_content{
        bottom: 12px;
    }
    .home-product_title_text{
        font-size: 14px;
    }

    .home-product_title_label{
        font-size: 12px;
        padding: 4px 10px;
    }

    .home-project_content{
        left: 12px;
        right: 12px;
        bottom: 16px;
        gap: 4px;
    }

    .home-project_name{
        font-size: 14px;
    }

    .home-project_desc{
        font-size: 12px;
        gap: 12px 18px;
    }
 
    .home-project_desc li{
        gap: 3px;
    }


    .space-lg{
        padding: 40px 0;
    }

    .home-why_item{
        width: 100%;
    }

    .cer-list{
        gap: 12px;
    }
    .cer-item{
        width: calc(50% - 6px);
    }

    .footer-col{
        width: 100%;
    }

    .footer-name{
        width: 300px;
    }

    .home-new_list .new-item .new-img{
        width: 80px;
        aspect-ratio: 4/3;
        border-radius: 4px;
    }

    .hero-total li{
        width: 50%;
    }

    .home-project_view_item{
        aspect-ratio: 1/1;
    }

    .about-total_wrap .hero-total{
        margin-top: 0;
    }

    .process-mobile{
        display: block;
    }
    .process-desk{
        display: none;
    }

    .vision-item{
        width: 100%;
        border-radius: 12px;
    }

    .vision-label{
        left: 12px;
        top: 12px;
    }
    .vision-text{
        left: 12px;
        right: 12px;
        bottom: 20px;
    }

    .core-value-wrap{
        border-radius: 12px;
        padding: 16px 12px;
    }
    .core-value_item{
        width: 100%;
    }

    .quality-item li{
        width: 100%;
    }
    .quality-banner_img{
        height: 240px;
        border-radius: 12px;
    }

    .page-banner_img {
        height: 240px;
    }

    .page-title{
        font-size: 18px;
        padding-left: 10px;
    }

    .page-title::before{
        height: 16px;
        width: 3px;
    }

    .hero-total li::before{
        opacity: 0;
    }

    .factory-gallery_thumb{
        width: 100%;
    }

    .factory-gallery_thumb_item{
        border-radius: 4px;
    }
    .factory-gallery_view_item, .human-gallery_item{
        border-radius: 12px;
    }

    .main-news_item{
        width: 100%;
    }

    .page-contact_list li{
        width: 100%;
    }
    .page-contact_list li.f-c{
        width: 100%;
    }

    .project-title{
        font-size: 14px;
        line-height: 16px;
    }

    .project-info{
        font-size: 12px;
    }

    .single-post_title{
        font-size: 18px;
        line-height: 22px;
    }

    .sidebar-post_img{
        width: 100px;
        aspect-ratio: 4/3;
    }

    .single-post_gallery{
        gap: 10px;
    }

    .single-post_gallery_img{
        width: calc(50% - 5px);
    }

    .single-project_info{
        gap: 10px;
    }
    .single-project_info li{
        width: fit-content;
    }
    .single-project_info li:last-child{
        width: 100%;
    }
    .single-project_info li:nth-child(2){
        flex: 1;
    }

    .single-project_title{
        font-size: 18px;
        line-height: 22px;
    }

    .project-ship_item{
        width: 100%;
    }

    .single-product_title{
        font-size: 18px;
    }
    .single-product_label{
        font-size: 14px;
    }

}