a {
    text-decoration: none !important;
}

#main_index {
    overflow: hidden !important;
    padding-bottom: 0px !important;
}

/*nav*/

.navbar_type8 {
    background-color: #000000;
}


.navbar_type8 {
    width: 100%;
    height: 110px;
    z-index: 100;
}

#main_index .navbar_type8{
    background-color: transparent;
}

.navbar_type8 .logo img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover !important;
}

.navbar_type8 .nav_tab {
    justify-content: flex-end;
    padding-right: 6.2vw;
}

.navbar_type8 .nav_tab .nav_item {
    color: #ffffff;
    padding: 15px 35px;
}

.navbar_type8 .nav_tab .nav_item::before {
    display: none;
}

.navbar_type8 .nav_tab .nav_item>a {
    position: relative;
    font-size: 1.15vw;
    font-weight: 300;
    color: #ffffff;
    /* letter-spacing: 2px; */
    padding: 0;
    transition: opacity .25s ease-in-out, color .5s ease-in-out;
    text-transform: capitalize;
}

.navbar_type8 .nav_tab .nav_item>a:hover {
    opacity: 0.8;
}

.navbar_type8 .nav_tab .nav_item>a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 150%;
    width: 100%;
    border-bottom: 3px solid #9c9e9e;
    transition: opacity .5s ease-in-out;
    opacity: 0;
}

.navbar_type8 .nav_tab .nav_item>a:hover::after {
    opacity: 1;
}

.navbar_type8.dark_nav {
    background-color: #151515 !important;
}

.navbar_mobile {
    background-color: #151515;
    height: auto;
}

.navbar_mobile .row_1 {
    margin-bottom: 0;
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
}

.navbar_mobile .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

@media screen and (max-width: 1200.5px){
    .navbar_type8 .nav_tab .nav_item>a {
        position: relative;
        font-size: 1.5vw;
        font-weight: 300;
        color: #ffffff;
        /* letter-spacing: 2px; */
        padding: 0;
        transition: opacity .25s ease-in-out, color .5s ease-in-out;
        text-transform: capitalize;
    }
    
    .navbar_type8 .nav_tab .nav_item {
        color: #ffffff;
        padding: 15px 30px;
    }
    
    .navbar_type8 .logo img {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0px;
        object-fit: contain !important;
    }
}

@media screen and (min-width: 992px) {
    #main_index .slider_banner {
        margin-top: -110px!important;
    }
}

@media screen and (max-width: 767.5px){
    #main_index .slider_banner {
        margin-top: 0px!important;
    }
}

/*Banner*/

.banner_content {
    overflow: hidden!important;
    display: flex; 
    justify-content: center;
    align-items: center; 
    height: 100%; 
}

.n_bannerContainer {
    position: relative;
    width: 100%;
    height: 100vh;
}

.n_bannerGroup {
    position: relative;
    width: 100%;
    height: 100%;
}

.n_bannerInnerGroup {
    position: absolute;
    top: 25.5vw;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.n_bannerTitle {
    position: relative;
    font-size: 3.1vw;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.n_bannerViewMore {
    font-size: 1vw;
    font-weight: 300;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 0.4vw 1.4vw;
    text-transform: uppercase;
    margin-top: 4%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.n_bannerViewMore::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #9c9e9e;
    transition: left 0.3s ease;
    z-index: 0;
}

.n_bannerViewMore:hover::after {
    left: 0;
}

.n_bannerViewMore:hover {
    color: #fff;
    border-color: #9c9e9e;
}

.n_bannerViewMore span {
    position: relative;
    z-index: 1;
}

.n_bannerViewMore:active {
    transform: scale(0.96);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 1200.5px){
    .n_bannerInnerGroup {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    }
}

@media screen and (max-width: 992.5px){
    #main_index .slider_banner {
        margin-top: 0px !important;
    }
}

@media screen and (max-width: 767.5px){
    #main_index .slider_banner {
        margin-top: 0px !important;
    }
    
    .n_bannerInnerGroup {
        position: absolute;
        top: 60vw;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        text-align: center;
    }
    
    .n_bannerTitle {
        position: relative;
        font-size: 5.5vw;
        font-weight: 700;
        line-height: 1.5;
        color: #fff;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .n_bannerViewMore {
        font-size: 3vw;
        font-weight: 300;
        color: #fff;
        background-color: transparent;
        border: 1px solid #fff;
        padding: 1.4vw 3.4vw;
        text-transform: uppercase;
        margin-top: 4%;
        display: inline-block;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }
}

@media screen and (max-width: 426px){
    .n_bannerInnerGroup {
        position: absolute;
        top: 70vw;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        text-align: center;
    }
}

/*hp_about*/

/*.index_wrapper_4 {*/
/*   padding: 4vw 0vw 4vw 0vw; */
/*}*/

.hp_about {
    position: relative;
    padding: 4vw 0vw 2vw 0vw;
}

.hp_about .title_big {
    font-size: 1.35vw;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}

.hp_about .title_big::before {
    position: absolute;
    content: '';
    display: inline-block;
    background: url(https://cdn1.npcdn.net/img/1750753933KUCHEMATE_HP-24.png) no-repeat center;
    background-size: contain;
    width: 8vw;
    height: 8vw;
    /* margin-right: 0.3em; */
    vertical-align: middle;
    margin-top: -3.2vw;
    margin-left: -4.5vw;
}

.hp_about .title_big::after {
    position: absolute;
    content: '';
    display: inline-block;
    background: url('https://cdn1.npcdn.net/img/1750753941KUCHEMATE_HP-25.png') no-repeat center;
    background-size: contain;
    width: 8vw;
    height: 8vw;
    /*margin-left: 0.3em;*/
    vertical-align: middle;
    margin-top: -5vw;
    margin-left: 3.6vw;
}

.hp_about .title_middle {
    font-size: 1.05vw;
    font-weight: 300;
    color: #000;
    margin-top: 1vw;
}

.hp_about .title_middle span{
    font-weight: 800;
}

.hp_about .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin-top: 0vw;
    padding: 3vw 22vw 2vw 22vw;
}

.rowAboutImage {
    margin-top: -1vw;
}

.aboutBorder {
    margin-top: 5vw;
    padding: 0px;
}

.about_image img {
    width: 83%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about_image2 img {
    width: 95%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about_image3 img {
    width: 118%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-top: 4.7vw;
    margin-left: -4.5vw;
}

.hp_about .button-group {
    display: flex;
    justify-content: center;
}

.n_aboutViewMore {
    font-size: 1vw;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    padding: 0.4vw 1.4vw;
    text-transform: uppercase;
    margin-top: 0vw;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.n_aboutViewMore::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #9c9e9e;
    transition: left 0.3s ease;
    z-index: 0;
}

.n_aboutViewMore:hover::after {
    left: 0;
}

.n_aboutViewMore:hover {
    color: #fff;
    border-color: #9c9e9e;
}

.n_aboutViewMore span {
    position: relative;
    z-index: 1;
}

.n_aboutViewMore:active {
    transform: scale(0.96);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 1200.5px){
    .hp_about .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #555;
        line-height: 1.6;
        margin-top: 0vw;
        padding: 3vw 22vw 2vw 22vw;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .hp_about {
        position: relative;
        padding: 7vw 8vw 7vw 8vw;
    }
    
    .hp_about br {
        display: none;
    }
    
    .hp_about .title_big {
        font-size: 4vw;
        font-weight: 400;
        color: #000;
        line-height: 1.5;
        position: relative;
        display: inline-block;
    }
    
    .hp_about .title_middle {
        font-size: 3.5vw;
        font-weight: 300;
        color: #000;
        margin-top: 1vw;
    }
    
    .hp_about .title_big::before {
        position: absolute;
        content: '';
        display: inline-block;
        background: url(https://cdn1.npcdn.net/img/1750753933KUCHEMATE_HP-24.png) no-repeat center;
        background-size: contain;
        width: 16vw;
        height: 16vw;
        /* margin-right: 0.3em; */
        vertical-align: middle;
        margin-top: -6vw;
        margin-left: -8.5vw;
    }
    
    .hp_about .title_big::after {
        position: absolute;
        content: '';
        display: inline-block;
        background: url(https://cdn1.npcdn.net/img/1750753941KUCHEMATE_HP-25.png) no-repeat center;
        background-size: contain;
        width: 16vw;
        height: 16vw;
        /* margin-left: 0.3em; */
        vertical-align: middle;
        margin-top: -11vw;
        margin-left: -2.4vw;
    }
    
    .about_image2 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    .about_image img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .about_image3 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        margin-top: 0vw;
        margin-left: 0vw;
    }
    
    .hp_about .title_small {
        font-size: 3.4vw;
        font-weight: 500;
        color: #555;
        line-height: 1.6;
        margin-top: 0vw;
        padding: 7vw 0vw 2vw 0vw;
    }
    
    .n_aboutViewMore {
        font-size: 3vw;
        font-weight: 400;
        color: #000;
        background-color: transparent;
        border: 1px solid #000;
        padding: 1.4vw 3.4vw;
        text-transform: uppercase;
        margin-top: 0vw;
        display: inline-block;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }
}

/*hp_products*/

.hp_products {
    position: relative;
    padding: 2vw 5vw 4vw 5vw;
}

.productBorder {
    padding: 0px 18px;
}

.hp_products .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #555;
    margin-top: 0vw;
}

.hp_products .title_big {
    font-size: 2vw;
    font-weight: 800;
    color: #000;
    margin-bottom: 3vw;
    display: inline-block; 
    position: relative;
    padding-right: 2vw; 
}

.hp_products .title_big::after {
    content: '';
    position: absolute;
    bottom: 24%;
    left: 23vw;
    transform: translateY(-50%);
    width: 70vw;
    height: 1px;
    background-color: #000;
}

html:lang(ms) .hp_products .title_big::after {
    content: '';
    position: absolute;
    bottom: 24%;
    left: 29vw;
    transform: translateY(-50%);
    width: 64vw;
    height: 1px;
    background-color: #000;
}

.hp_products .exclusive_img {
    position: relative;
}

.hp_products .content_text {
    color: #000;
    /*width: 21vw;*/
    /*height: 14%;*/
    position: relative;
    top: 0%;
    left: 0%;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hp_products .content_text a {
    color: #000;
    text-decoration: none;
}

.hp_products .menu-text {
    font-size: 1.6vw;
    font-weight: 500;
    text-align: center;
    /* letter-spacing: 0.1vw; */
    line-height: 0vw;
    /* text-transform: uppercase; */
    margin-top: 1vw;
}

.hp_products .exclusive_img{
    transition: transform 0.5s ease;
}

.hp_products .exclusive_img:hover{
    transform: scale(1.1); 
}

@media screen and (max-width: 1200.5px){
    .hp_products .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .hp_products .title_big {
        font-size: 5vw;
        font-weight: 800;
        color: #000;
        margin-bottom: 6vw;
        display: inline-block;
        position: relative;
        padding-right: 2vw;
    }
    
    .hp_products .title_small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    .hp_products .title_big::after {
        content: '';
        position: absolute;
        bottom: 24%;
        left: 54vw;
        transform: translateY(-50%);
        width: 40vw;
        height: 1px;
        background-color: #000;
    }
    
    .hp_products .menu-text {
        font-size: 4.6vw;
        font-weight: 500;
        text-align: center;
        /* letter-spacing: 0.1vw; */
        line-height: 0vw;
        /* text-transform: uppercase; */
        margin-top: 3vw;
        margin-bottom: 4vw;
    }
    
    html:lang(ms) .hp_products .title_big::after {
        content: '';
        position: absolute;
        bottom: 24%;
        left: 71vw;
        transform: translateY(-50%);
        width: 21vw;
        height: 1px;
        background-color: #000;
    }
}

/*hp_services*/

.hp_services {
    position: relative;
    padding: 5vw 2vw 6vw 2vw;
    background-image: url('https://cdn1.npcdn.net/img/1750756388KUCHEMATE_SEC05.jpg'); 
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat; 
}

.serviceBorder {
    padding: 0px 50px;
}

.hp_services .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    margin-top: 0vw;
}

.hp_services .title_big {
    font-size: 2vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3vw;
    display: inline-block; 
    position: relative;
    padding-right: 2vw; 
}

.hp_services .border1 {
    border: 1px solid #fff;
    padding: 2.5vw 1vw;
    transition: all 0.50s;
    background-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hp_services .border1:hover {
    background-color: #fff;
    border: 1px solid transparent;
}

.hp_services .border1 img {
    max-width: 30%;
    margin: 0 auto;
    transition: all 0.50s;
}

.hp_services .border1:hover img {
    filter: invert(1) brightness(10);
    transform: scale(0.95);
}

.hp_services .font-title {
    font-size: 1.6vw;
    font-weight: 600;
    color: #fff;
    transition: all 0.50s;
    margin-top: 1.5vw;
}

.hp_services .font-small {
    font-size: 0.95vw;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    padding: 0.5vw 2.5vw 0vw 2.5vw;
    text-align: center !important;
}

.hp_services .border1:hover .font-title {
    color: #000;
}

.hp_services .border1:hover .font-small {
    color: #000;
}

.hp_services .border1 .font-small {
    text-align: center;
}

@media screen and (max-width: 1200.5px){
    .serviceBorder {
        padding: 0px 20px;
    }
    
    .hp_services .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #fff;
        margin-top: 0vw;
    }
    
    .hp_services .font-small {
        font-size: 1.2vw;
        font-weight: 300;
        color: #fff;
        line-height: 1.6;
        padding: 0.5vw 2.5vw 0vw 2.5vw;
        text-align: center !important;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .hp_services {
        position: relative;
        padding: 7vw 5vw 7vw 5vw;
        background-image: url('https://cdn1.npcdn.net/img/1750756388KUCHEMATE_SEC05.jpg'); 
        background-size: cover;      
        background-position: center;
        background-repeat: no-repeat; 
    }
    
    .serviceBorder {
        padding: 15px 15px;
    }
    
    .hp_services .title_small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #fff;
        margin-top: 0vw;
    }
    
    .hp_services .border1 img {
        max-width: 35%;
        margin: 0 auto;
        transition: all 0.50s;
    }
    
    .hp_services .title_big {
        font-size: 5vw;
        font-weight: 800;
        color: #fff;
        margin-bottom: 3vw;
        display: inline-block; 
        position: relative;
        padding-right: 2vw; 
    }
    
    .hp_services .font-title {
        font-size: 4.3vw;
        font-weight: 600;
        color: #fff;
        transition: all 0.50s;
        margin-top: 1.5vw;
    }
    
    .hp_services .font-small {
        font-size: 3.7vw;
        font-weight: 300;
        color: #fff;
        line-height: 1.6;
        padding: 1vw 2.5vw 4.5vw 2.5vw;
        text-align: center !important;
    }
}

/*hp_skills*/

.hp_skills {
    position: relative;
    padding: 5vw 5vw 5vw 5vw;
    background-image: url('https://cdn1.npcdn.net/img/1750760125KUCHEMATE_SEC07.jpg'); 
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat; 
    z-index: 0;
}

.skillsBorder {
    padding: 0px 18px;
}

.hp_skills .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #555;
    margin-top: 0vw;
}

.hp_skills .title_big {
    font-size: 2vw;
    font-weight: 800;
    color: #000;
    margin-bottom: 1vw;
    display: inline-block; 
    position: relative;
    padding-right: 2vw; 
}

.hp_skills .title_big::after {
    content: '';
    position: absolute;
    bottom: 24%;
    left: 31vw;
    transform: translateY(-50%);
    width: 65vw;
    height: 1px;
    background-color: #000;
}

.hp_skills .font-small {
    font-size: 1vw;
    font-weight: 500;
    color: #555;
    margin-top: 0vw;
}

.skills_box {
    padding:20px;
    margin-top:30px;
}

.skills_box h3 {
    color: #000;
    font-size: 1.6vw;
    font-weight: 500;
    padding-bottom: 10px;
}

.skills_box2 {
    padding:20px;
    margin-top:30px;
}

.skills_box2 h3 {
    color: #000;
    font-size: 1.6vw;
    font-weight: 500;
    padding-bottom: 10px;
    /* position: absolute; */
    margin-left: -4vw;
    transform: translate(11.5vw, 0vw);
}

.rowSkill {
    padding: 0vw 12vw 2vw 12vw;
}

.skills_box {
    position: relative;
    margin: 40px 0;
    z-index: 1; 
}

.skills_box2 {
    position: relative;
    margin: 40px 0;
    z-index: 1; 
}

.skills_img {
    position: relative;
    z-index: 3; 
}

.skills_img img {
    max-width: 150%;
    width: 78%;
    margin-left: 5vw;
    position: relative;
    z-index: 2;
}

.skills_box.with-line-left {
    position: relative;
    margin: 20px 0;
    z-index: 0;
}

.skills_box2.with-line-right {
    position: relative;
    margin: 0px 0;
    z-index: 0;
}

.line-img-left {
    /* position: absolute; */
    top: 40%;
    left: 11%;
    transform: translateY(-50%);
    width: 160%;
    height: auto;
    position: relative;
    z-index: 0;
    bottom: -0.5vw;
}

.line-img-right {
    /* position: absolute; */
    top: 54%;
    right: 69%;
    transform: translateY(-50%);
    width: 144%;
    height: auto;
    position: relative;
    z-index: 0;
    bottom: -0.5vw;
}

.lineBorder {
    margin-top: 7vw;
}

.lineBorder2 {
    margin-top: 5.5vw;
}

@media screen and (max-width: 1200.5px){
    .hp_skills .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    .hp_skills .font-small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    .rowSkill {
        padding: 0vw 6vw 2vw 6vw;
    }
    
    .skills_img img {
        max-width: 150%;
        width: 85%;
        margin-left: 4.5vw;
        position: relative;
        z-index: 2;
    }
    
    .line-img-left {
        /* position: absolute; */
        top: 40%;
        left: 11%;
        transform: translateY(-50%);
        width: 168%;
        height: auto;
        position: relative;
        z-index: 0;
        bottom: -0.5vw;
    }
    
    .line-img-right {
        /* position: absolute; */
        top: 54%;
        right: 80%;
        transform: translateY(-50%);
        width: 157%;
        height: auto;
        position: relative;
        z-index: 0;
        bottom: -0.5vw;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .hp_skills {
        position: relative;
        padding: 7vw 5vw 7vw 5vw;
        background-image: url('https://cdn1.npcdn.net/img/1750760125KUCHEMATE_SEC07.jpg'); 
        background-size: cover;      
        background-position: center;
        background-repeat: no-repeat; 
        z-index: 0;
    }

    .hp_skills .title_small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    .hp_skills .title_big {
        font-size: 5vw;
        font-weight: 800;
        color: #000;
        margin-bottom: 1vw;
        display: inline-block; 
        position: relative;
        padding-right: 2vw; 
    }
    
    .hp_skills .title_big::after {
        content: '';
        position: absolute;
        bottom: 24%;
        left: 77vw;
        transform: translateY(-50%);
        width: 18vw;
        height: 1px;
        background-color: #000;
    }
    
    .hp_skills .font-small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #555;
        line-height: 1.7;
        margin-top: 0vw;
    }
    
    .hp_skills br {
        display: none;
    }
    
    .skills_img img {
        max-width: 150%;
        width: 100%;
        margin-left: 0vw;
        position: relative;
        z-index: 2;
    }
    
    .line-img-left {
        /* position: absolute; */
        top: 40%;
        left: 11%;
        transform: translateY(-50%);
        width: 168%;
        height: auto;
        position: relative;
        z-index: 0;
        bottom: -0.5vw;
        display: none;
    }
    
    .line-img-right {
        /* position: absolute; */
        top: 54%;
        right: 80%;
        transform: translateY(-50%);
        width: 157%;
        height: auto;
        position: relative;
        z-index: 0;
        bottom: -0.5vw;
        display: none;
    }
    
    .skills_box.with-line-left {
        position: relative;
        margin: 0px 0;
        z-index: 0;
    }
    
    .skills_box h3 {
        color: #000;
        font-size: 4.6vw;
        font-weight: 500;
        padding-bottom: 3px;
    }
    
    .skills_box2 h3 {
        color: #000;
        font-size: 4.6vw;
        font-weight: 500;
        padding-bottom: 3px;
        /* position: absolute; */
        margin-left: 0vw;
        transform: translate(0vw, 0vw);
    }
    
    .skills_box {
        padding: 0px;
        margin-top: 30px;
    }
    
    .skills_box2 {
        padding: 0px;
        margin-top: 0px;
    }
    
    .lineBorder2 {
        margin-top: 0vw;
    }
    
    .rowSkill {
        padding: 0vw 0vw 2vw 0vw;
    }
}

/*hp_testimonials*/

.index_wrapper_7 {
    padding: 0vw 0vw 2vw 0vw;
}

.hp_testimonials {
    position: relative;
    padding: 1vw 5vw 0vw 5vw;
}

.hp_testimonials .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #555;
    margin-top: 0vw;
}

.hp_testimonials .title_big {
    font-size: 2vw;
    font-weight: 800;
    color: #000;
    margin-bottom: 1vw;
    display: inline-block; 
    position: relative;
    padding-right: 2vw; 
}

/*testimonials*/

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .img {
    position: absolute;
    top: -45px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    display: none;
}

#main_index .hp_testimonial_type3 .slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: none !important;
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card {
    align-self: center;
    border-radius: 20px;
    max-width: 100%;
    min-height: 200px;
    margin: 0 auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    margin-top: -6vw;
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card i {
    color: #282828;
    display: none;
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .text_area .text {
    font-size: 1vw;
    line-height: 1.8;
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .name {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

#main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .name h6 {
    font-size: 0.95vw !important;
    font-weight: 600;
    color: #444;
    order: 2;
}

#main_index .hp_testimonial_type3 .all_font_sm {
    font-size: 1vw !important;
    font-weight: 700;
    order: 1;
    margin-bottom: 0.3vw;
}

#main_index .hp_testimonial_type3 i.fas.fa-chevron-left.slick-arrow {
    font-size: 2vw !important;
    left: -2vw !important;
}

#main_index .hp_testimonial_type3 i.fas.fa-chevron-right.slick-arrow {
    font-size: 2vw !important;
    right: -2vw !important;
}

#main_index .hp_testimonial_type3 {
    overflow: visible !important;
    padding: 0px !important;
}

@media screen and (max-width: 1200.5px){
    #main_index .hp_testimonial_type3 i.fas.fa-chevron-left.slick-arrow {
        font-size: 2vw !important;
        left: 3vw !important;
    }
    
    #main_index .hp_testimonial_type3 i.fas.fa-chevron-right.slick-arrow {
        font-size: 2vw !important;
        right: 3vw !important;
    }
    
    .hp_testimonials .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    #main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .text_area .text {
        font-size: 1.3vw;
        line-height: 1.8;
        white-space: pre-wrap;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    #main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .name h6 {
        font-size: 1.2vw !important;
        font-weight: 600;
        color: #444;
        order: 2;
    }
    
    #main_index .hp_testimonial_type3 .all_font_sm {
        font-size: 1.2vw !important;
        font-weight: 700;
        order: 1;
        margin-bottom: 0.3vw;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .hp_testimonials .title_small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #555;
        margin-top: 0vw;
    }
    
    .hp_testimonials .title_big {
        font-size: 5vw;
        font-weight: 800;
        color: #000;
        margin-bottom: 1vw;
        display: inline-block; 
        position: relative;
        padding-right: 2vw; 
    }
    
    #main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .text_area .text {
        font-size: 4vw;
        line-height: 1.8;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    #main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .text_area {
        margin-top: -3vw;
        margin-bottom: 30px !important;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .index_wrapper_7 {
        padding: 0vw 7vw 2vw 7vw;
    }
    
    #main_index .hp_testimonial_type3 i.fas.fa-chevron-left.slick-arrow {
        font-size: 4vw !important;
        left: -2vw !important;
    }
    
    #main_index .hp_testimonial_type3 i.fas.fa-chevron-right.slick-arrow {
        font-size: 4vw !important;
        right: -2vw !important;
    }
    
    #main_index .hp_testimonial_type3 .testimonial_box .testimonial_card .name h6 {
        font-size: 3.5vw !important;
        font-weight: 600;
        color: #444;
        order: 2;
    }
    
    #main_index .hp_testimonial_type3 .all_font_sm {
        font-size: 3.5vw !important;
        font-weight: 700;
        order: 1;
        margin-bottom: 0.3vw;
    }
}

/*hp_news*/

.index_wrapper_8 {
    position: relative;
    padding: 0vw 0vw 6vw 0vw;
    background-image: url('https://cdn1.npcdn.net/img/1750758993KUCHEMATE_SEC07.jpg'); 
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat; 
}

.hp_news {
    position: relative;
    padding: 5vw 5vw 2vw 5vw;
}

.hp_news .title_small {
    font-size: 1vw;
    font-weight: 500;
    color: #fff;
    margin-top: 0vw;
}

.hp_news .title_big {
    font-size: 2vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1vw;
    display: inline-block; 
    position: relative;
    padding-right: 2vw; 
}

#main_index .latest_new_type6 {
    margin-bottom: 10px;
    padding-top: 20px;
    padding: 0vw 9vw 0vw 9vw;
}

#main_index .latest_new_type6 .news_box {
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    background-color: transparent;
    position: relative;
    visibility: visible;
}

@media screen and (max-width: 1200.5px){
    .hp_news .title_small {
        font-size: 1.3vw;
        font-weight: 500;
        color: #fff;
        margin-top: 0vw;
    }
}

@media screen and (max-width: 992.5px){
}

@media screen and (max-width: 767.5px){
    .index_wrapper_8 {
        position: relative;
        padding: 0vw 0vw 6vw 0vw;
        background-image: url('https://cdn1.npcdn.net/img/1750758993KUCHEMATE_SEC07.jpg'); 
        background-size: cover;      
        background-position: center;
        background-repeat: no-repeat; 
    }
    
    .hp_news {
        position: relative;
        padding: 7vw 5vw 3vw 5vw;
    }
    
    .hp_news .title_small {
        font-size: 3.5vw;
        font-weight: 500;
        color: #fff;
        margin-top: 0vw;
    }
    
    .hp_news .title_big {
        font-size: 5vw;
        font-weight: 800;
        color: #fff;
        margin-bottom: 1vw;
        display: inline-block; 
        position: relative;
        padding-right: 2vw; 
    }
}

/*footer*/

.footer_type10 {
    color: white;
    background-color: #151515;
    padding-top: 1rem;
    overflow-x: hidden;
}

.footer_type10 .footerNP2 {
    text-align: center;
}

.footer_type10 .footerNP {
    margin-bottom: .25rem !important;
    text-align: right;
}

.footer_type10 .logo img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-23%, -50%);
    width: 100%;
    max-height: 80px;
}

@media screen and (max-width: 992.5px){
    .footer_type10 .footerNP2 {
        text-align: left;
    }

    .footer_type10 .footerNP {
        margin-bottom: .25rem !important;
        text-align: left;
    }
}

@media screen and (max-width: 500.5px){
    .index_wrapper_2 .item>img{
    	min-height:22rem!important;
    	object-fit:cover;
    	object-position: 50% 50%;
    }
}


@media screen and (max-width: 426px){
    .index_wrapper_2 .item>img{
    	min-height:18rem!important;
    	object-fit:cover;
    	object-position: 50% 50%;
    }
}

