/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
#main_index .col-12{
    padding: 0;
}
#main_index h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0;
}
a:hover{
    text-decoration: unset;
}
:root{
    --primary-color: #cca987;
    --sec-y: 7rem;
    --sec-x: 8%;
}

@media(max-width:991px){
    :root{
        --sec-y: 5rem;
    }
}

@media(max-width:768px){
    :root{
        --sec-x: 5%;
    }
}
/* Text */
.subtitle-style{
    color: #666;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-size: clamp(.9rem, .95vw, .95vw);
    font-weight: 400;
    
    &:after{
        display: inline-flex;
        content:"";
        width: 32px;
        height: 1.5px;
        background: #ccc;
        margin: 0
    }
}

.title-style{
    color: var(--primary-color);
    font-size: clamp(1.75rem, 2.15vw, 2.15vw);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.content{
    color: #666;
    font-weight: 300;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    line-height: 1.75;
    margin: 0
}

/*Button*/
#main_index a{
    width: fit-content;
}
.main-btn{    
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: clamp(.8rem, .85vw, .85vw);
    color: #fff;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 0;
    background: var(--primary-color);  
    border-style: none;
    overflow: hidden;      
    text-transform: uppercase;

    .b-icon img{
        max-width: 16px;
        height: auto;       
        transition: all .5s linear;
    }

    &:hover{
        color: #fff;        

        .b-icon{
            animation: zoomIn .6s linear forwards, swing 1s cubic-bezier(.79,.14,.15,.86);
        }
    }

    &.gallery{
        background: #000;
        transform: translateY(-50%);
    }
}


/* Nav */
.navbar_type8{
    height: 8vw;
    background: #fff;
    padding: 0;
}
#main_index .navbar_type8{
    background: transparent;
}
.navbar_type8 .logo{
    margin-left: 6rem;  
    flex: unset;
    min-width: 10%;
}
.navbar_type8 .logo img{
    padding: 0px;
    width: 100%;
}

.navbar_type8 .nav_tab{
    flex: unset;
    width: 100%;
    padding-right: 6rem;
    gap: 6.5vw;  
}
.navbar_type8 .nav_tab .nav_item:before{
    border-color: var(--primary-color);
    border-width: 2px;
    width: 0;
    transition: all .3s linear;
}
.navbar_type8 .nav_tab .nav_item a{
    color: #000;
    padding: 0;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    font-weight: 300;    
    letter-spacing: 1px;
}
#main_index .navbar_type8 .nav_tab .nav_item a{
    color: #eee;

    &:hover{
        color: var(--primary-color);
    }
}
#main_index .navbar_type8.dark_nav .nav_item a{
    color: #000;
}
.navbar_type8 .nav_tab .nav_item a:hover{
    color: var(--primary-color);
}
.navbar_type8 .nav_tab .nav_item:hover:before{
    width: 100%;
}

.dark_nav{
    background: rgba(255, 255, 255, 1) !important;
}

.navbar_mobile{
    background: #fff;
}
.navbar_mobile .row_1{
  height: 100%;
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
}
.navbar_mobile .logo_img{
    max-height: 75px;
}

@media(max-width:1200px){
    .navbar_type8 .logo{
        margin-left: 5%;
    }
    .navbar_type8 .nav_tab{
        gap: 5.5vw;
        padding-right: 5%;
    }    
}

/* Slider */

.hp_banner {
    position: relative;
    height: 100%;  
}

.b-content{
    position: absolute;
    width: 74.8%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: calc(8.2% + 110px);
    padding-left: 8%;
}
.b-content h2{
    color: #fff;
    font-size: clamp(1.3rem, 2.1vw, 2rem);
}
.b-content p{
    color: #fff;
    font-size: clamp(.78rem, 1vw, .85rem);
    margin: 1rem 0 1.5rem;
}

.b-logo-wrapper{
    position: absolute;
    width: 25.2%;
    height: 85%;
    right: 0;
    top: 0;
    padding-top: 8.2%;  
    display: grid;
    place-content: center;
}
.b-logo-wrapper .b-logo{    
    padding-left: .5%;
    max-width: 65%;  
    margin: auto;
    
    .img-fluid{
        padding: 4rem 0 5rem !important;
    }
    
    &:before{
        display: block;
        content: "";
        width: 100%;
        height: 3px;
        background: var(--primary-color);    
    }
    
    &:after{
        display: block;
        content: "";
        width: 100%;
        height: 3px;
        background: var(--primary-color);    
    }
}

@media(min-width:991px){
    .slider_banner{
        margin-top: -8vw;
    }
}

@media(max-width:1200px){
    .b-content{
        padding-top: calc(8.2% + 5%);
        padding-left: 7%;
        padding-right: 14%;
    }
    
    .b-logo-wrapper .b-logo{
        max-width: 70%;
    }
    .b-logo-wrapper .b-logo .img-fluid{
        padding: 2rem 0 3rem !important;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 75vw;
        object-fit: cover;
        object-position: left;
        margin-top: -10vh;
    }
    
    .b-logo-wrapper{
        display: none;
    }
    
    .b-content{
        padding-top: 11%;
        padding-left: 10%;
    }
}

@media(max-width:576px){
    .slider_banner .item > img{
        min-height: 130vw;
        margin-top: -15vh;
    }
    .b-content{
        padding-right: 10%;
        padding-top: 0%;
        width: 100%;
        height: 91%;
        display: grid;
        place-content: center;
    }
}

/* About */
.hp_about{
    padding: var(--sec-y) var(--sec-x);
}
.abt-wrapper {
  display: flex;
}

.abt-content{
    display: grid;
    place-content: center;
    padding-left: 5%;    
        
    padding-right: 7%;
}
.abt-info{
    padding: 0;    
    padding-left: 5rem;
    position: relative;        
}
.abt-content .main-btn{
    margin-left: 5rem;
    margin-top: 3rem;
}

.abt-frame {
  position: relative;
  z-index: 1;
}

.abt-content .content{
    font-size: clamp(.85rem, 1vw, 1vw);
}

@media(min-width:991px){
    .abt-frame{
        min-width: 50%;
    }    
}

@media(max-width:1200px){
    .abt-content{
        padding: 0%;
    }
}  

@media(max-width:991px){
    .abt-wrapper{
        flex-wrap: wrap;
        align-items: center;
    }
    .abt-frame{      
        position: relative;  
        margin-bottom: 5rem;
    }
    .abt-content{
        margin: 0;
        position: relative;
    }    
    .abt-content .main-btn{
        transform: unset;
        margin-left: 0;
    }
    .abt-info{        
        padding: 0;
    }
}

@media(max-width:768px){
    .abt-wrapper{
        flex-direction: column-reverse;        
    }    
    .abt-frame{
        width: 100%;        
        z-index: -1;
        position: relative;
        margin-top: 5rem;
      
        margin-bottom: 0;
    }
}

/* Service */
.serviceCategoryList{
    background: transparent !important;
    padding-top: 2.5rem !important;
    padding-bottom: calc(var(--sec-y) - 1rem) !important;
}
.serviceCategoryList .container{
    max-width: 100%;
    padding: 0;
}
.serviceCategoryList .service_catbox{
    margin: 0;
    padding: 1rem;    
}

.serviceCategoryList .service_catbox:last-child{
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 70%;
        height: 70%;
        background: url(https://cdn1.npcdn.net/images/gold_logo_xqrgyk_1781487624.png?md5id=a90ab441fabcbbac21aaf1360076bd8d&new_width=610&new_height=603&type=4);
        background-size: cover;
        background-repeat: no-repeat;
        right: -120%;
        top: 50%;
        z-index: 1;
        padding: 1rem;
        transform: translateX(-50%) translateY(-50%);
    }
    
    &:after{
        position: absolute;
        content: "";
        width: 75%;
        height: 3.5px;
        background: var(--primary-color);
        bottom: 7%;
        right: -125%;                
        transform: translateX(-50%);
        
    }
}

.serviceCategoryList .img_frame{
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    
    &:after{
        position: absolute;
        content:"";
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.15);
        top: 0;
        left: 0;
    }
    
    img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.serviceCategoryList .content-box{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 3rem;
}
.serviceCategoryList .service_title{
    color: #fff;
    font-weight: 300;
    font-size: clamp(1rem, 1.35vw, 1.35vw);
    margin-bottom: 1.75rem;
}
.serviceCategoryList .general_btn{
    color: #fff;
    border-color: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff;
    text-transform: uppercase;
    font-weight: 200;
    font-size: clamp(.75rem, .82vw, .82vw) !important;
    padding: .15rem .5rem;    
}

.hp_service{
    padding-top: calc(var(--sec-y) - 3rem);
}


#main_index .innerRow_4{
    padding: 0 var(--sec-x);
    position: relative;        
}
.index_wrapper_4{
    position: relative;    
    
    &:after{
        position: absolute;
        content: "";
        width: 50%;
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/our_service_bg_45u2gn_1781494262.jpg?md5id=a90ab441fabcbbac21aaf1360076bd8d&new_width=784&new_height=1124&type=4);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        right: 0;
        top: 0;
        z-index: -1;
    }
}

.hp_service .title-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.slogan{
    color: var(--primary-color);
    font-size: clamp(.85rem, 1.25vw, 1.25vw);
    font-weight: 300;    
    margin-bottom: 0;
    cursor: default;
    letter-spacing: 1px;
    width: 41%;
}

@media(max-width:991px){
    .hp_service{
        padding-top: calc(var(--sec-y) - 1rem);
    }
    .serviceCategoryList .content-box{
        padding: 2rem;
    }
    .serviceCategoryList .service_title{
        margin-bottom: 1rem;
    }
    .hp_service .title-wrapper{
        padding-right: 4%;
    }    
}

@media(max-width:768px){
    .index_wrapper_4{
        background: url(https://cdn1.npcdn.net/images/our_service_bg_45u2gn_1781494262.jpg?md5id=a90ab441fabcbbac21aaf1360076bd8d&new_width=784&new_height=1124&type=4);
        background-size: cover;
        background-position: center;
    }
    .hp_service .title-wrapper{
        align-items: end;
    }    
    
    .hp_service-more .main-btn{
        background: #fff;
        color: #000;
        
        .b-icon{
            filter: brightness(0);
        }
    }
    .hp_service .subtitle-style{
        color: #fff;
    }
    
    .serviceCategoryList .service_catbox{
        flex: 0 1 50%;
        max-width: 50%;
    }
}

@media(max-width:576px){
    #main_index .innerRow_4:before{
        left: calc(-9% - 16px);
    }
    .hp_service .title-wrapper{
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
    .hp_service .slogan{
        width: 100%;
        letter-spacing: 0;
    }    
    .serviceCategoryList .service_catbox{
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Why */
.hp_why{
    padding: var(--sec-y) 0 var(--sec-y) var(--sec-x);
}
.hp_why .title-box{
    margin-bottom: 2.5rem;
}

.why-list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.why-box{
    background: var(--primary-color);
    border-bottom-left-radius: 35px;
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    padding: 3rem;
    padding-top: 2.25rem;
    animation-composition: add;
}
.why-box:nth-child(odd){
    background: #000;
}
.why-icon{
    width: 65%;
    margin: auto;
    margin-bottom: .6rem;
}
.why-title{
    color: #fff;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    font-weight: 300;
    text-align: center;
}

.why-box:hover{
    transform: translateY(10px) !important;
    transition: all .3s linear !important;
    
    .why-icon{
        animation: bounce 1s linear, pulse 1.5s linear;
        animation-composition: add;
    }
}

@media(max-width:1200px){
    .why-box{
        padding: 2rem;
        padding-top: 1.25rem;
    }
    .why-icon{
        margin-bottom: .35rem;
    }
}

@media(max-width:991px){
    .why-list{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:576px){
    .why-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .why-box:nth-child(odd){
        background: var(--primary-color);
    }
    .why-box:nth-child(2), 
    .why-box:nth-child(3){
        background: #000;
    }
}

/* Gallery */
.index_wrapper_6{
    padding: 0 var(--sec-x) var(--sec-y);
    padding-bottom: calc(var(--sec-y) - 2rem);
}

.hp_gallery .content{
    font-size: clamp(.85rem, 1.15vw, 1.15vw);
    letter-spacing: 1px;
}

.gallerycategory{
    margin: 0 -1rem;
}
.gallerycategory .col-lg-3{
    flex: 0 1 33.33%;
    max-width: 33.33%;
    padding: 0 1rem !important;
}

.gallerycategory .img_frame{
    height: 480px;
}

.gallerycategory .img_frame .more p{
    display: none;
}

.gallerycategory .col-lg-3 .text-center{
    text-align: left !important; 
    padding: 0 !important;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(.85rem, 1vw, 1vw);
    position: relative;         
    cursor: default;
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 1.5px;
        background: #fff;
        bottom: -20px;
        left: 0;
    }
    
    &:after{
        display: inline-flex;
        content: "";
        width: 50px;
        height: 50px;        
        background: url(https://cdn1.npcdn.net/images/arrow_small_10cyq3_1776676184.png?md5id=9e020ebb181dfd3fb1229c6ceb076a60&new_width=105&new_height=43&type=4);        
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        cursor: default;
    }
}

#index_6_2{
    padding-bottom: 5.8rem !important;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 112%;
        height: 64%;
        bottom: 0;
        left: calc(-12% / 2);
        background: var(--primary-color);
        z-index: -1;
    }
}

@media(max-width:1200px){
    .gallerycategory .img_frame{
        height: 320px;
    }
}

@media(max-width:991px){
    .gallerycategory .img_frame{
        height: 280px;
    }
    .hp_gallery .content{
        width: 50%;
        text-align: right;
    }
}

@media(max-width:768px){
    .hp_gallery .title-box{
        margin-bottom: 1rem;
    }
    .hp_gallery .subtitle-style{
        justify-content: center;
        
        &:after{
            display: none;
        }
    }
    .hp_gallery .content{
        width: 80%;
        text-align: center;
    }        
}

@media(max-width:576px){
        .hp_gallery .content{
            width: 100%;
        }
        .gallerycategory .col-lg-3{
            flex: 0 1 100%;
            max-width: 100%;
            padding: 1rem !important;
        }
        .gallerycategory .img_frame{
            height: 300px;
        }
        #index_6_2{
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }
        #index_6_2:before{
            height: 100%;
        }
        .gallerycategory .col-lg-3 .text-center:before{
            bottom: 0;
    }
}

/* Contact */
.index_wrapper_7{
    padding-bottom: calc(var(--sec-y) - 3rem);
}
.hp_contact{
    padding: calc(var(--sec-y) - 2rem) 0;
    padding-left: var(--sec-x);        
    
    &:After{
        position: absolute;
        content: "";
        width: 67%;
        height: 100%;
        background: url(https://cdn1.npcdn.net/images/contact_us_images_luzq2p_1781506966.png?md5id=a90ab441fabcbbac21aaf1360076bd8d&new_width=2278&new_height=1404&type=4);background-size: cover;
        background-repeat: no-repeat;
        background-position: center;        
        right: 0;
        top: 0;
        z-index: -1;                
    }
}
.contact-wrapper{
    display: flex;    
    width: 100%;
}

.contact-content{
    display: flex;
    background: #000;
    padding: 0 7rem 0 4rem;
    min-width: 62%;
}
.contact-logo{
    width: 30%;
    display: flex;    
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    
    &:before{
        display: block;
        content: "";
        width: 2px;
        height: 100%;
        background: var(--primary-color);        
    }
    
    &:after{
        display: block;
        content: "";
        width: 2px;
        height: 100%;
        background: var(--primary-color);        
    }
}
.contact-info{
    padding: 5rem 0 5rem 3rem;   
}

.c-list{
    margin-top: 2rem;
}
.c-list li{
    display: flex;
    color: #eee;       
}
.c-list > li:not(:last-child){
    margin-bottom: 1.75rem;
}
.c-list li a{
    color: #eee;
    
    &:hover{
        color: var(--primary-color);
    }
}


.c-icon{
    min-width: 28px;
    max-width: 28px;
    height: 18px;    
    position: relative;
    margin-right: 1rem;
    
    &:after{
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: #fff;
        top: 50%;
        right: -.5rem;
        transform: translateY(-25%);        
    }
}
.c-text{
    font-size: clamp(1.1rem, 1.4vw, 1.4vw);
    font-weight: 300;
    line-height: 1.15;
    
    span{
        font-size: 90%;
    }
}
.c-list p{
    font-size: clamp(.95rem, 1.3vw, 1.3vw);
    font-weight: 300;
}
.c-list a{
    font-size: clamp(.95rem, 1.3vw, 1.3vw);
    font-weight: 300;
}

.contact-title-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-title-wrapper .text-enlarged{
    font-size: clamp(2rem, 3vw, 3vw);
    text-decoration: underline;
    text-underline-offset: 20px;
    text-decoration-thickness: 3px;
}

@media(max-width:1200px){
    .contact-content{
        padding: 0 3rem;
    }
    .contact-logo{
        width: 45%;
    }
}

@media(max-width:991px){
    .contact-content{
        min-width: 67%;
    }
}

@media(max-width:768px){
    .index_wrapper_7{
        padding: 0;
    }
    .hp_contact{
        padding: 0;
    }
    .hp_contact:After{
        display: none;        
    }
    .contact-wrapper{
        flex-direction: column-reverse;
    }
    .contact-title-wrapper{        
        background: url(https://cdn1.npcdn.net/images/contact_us_images_luzq2p_1781506966.png?md5id=a90ab441fabcbbac21aaf1360076bd8d&new_width=2278&new_height=1404&type=4);
        padding: 8rem 0 9rem;
        background-color: rgba(0,0,0,.55);
        background-blend-mode: overlay;
    }
}   

@media(max-width:576px){
    .contact-content{
        flex-direction: column-reverse;
    }
    
    .contact-logo{
        width: 100%;    
        flex-direction: row;
        justify-content: space-between;
        align-items:  center;        

        
        .img-fluid{
            max-width: 150px;
        }
        
        &:before{                        
            width: 100%;
            height: 2px;            
        }

        &:after{            
            width: 100%;
            height: 2px;            
        }
    }
    
    .contact-info{
        padding: 5rem 2rem 5rem 2rem;   
    }
}

/* Footer */
.footer_type4{
    background: #000;
}
.footer_type4 h6{
    color: #ddd;
    font-size: clamp(.85rem, 1vw, 1vw) !important;
    font-weight: 300;
}
.footer_type4 p{
    color: #ddd;
    font-size: clamp(.8rem, .85vw, .85vw);
    font-weight: 300;
    line-height: 1.75;
}
.footer_type4 a{
    color: #ddd;

    &:hover{
        color: var(--primary-color);
    }
}
.footer_type4 .btn-primary{
    background: transparent !important;
    border-color: #fff !important;
    border-radius: 0;
}

/*Contact*/
#v-pills-hq h5 {
  font-size: 18px;
}