body > br {
    display: none;
}

body {
    font-size: 14px !important;
}

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

#main_index a:hover {
    text-decoration: none;
}

#main_index button:focus {
    outline: none;
}


/*navigation bar*/
.navbar_type8 {
    height: 100px;
    background-color: #fff;
    padding: 0 7%;
    border-bottom: .8px solid #ccc;
    transition: all 0.2s ease-in-out;
}

#main_index .navbar_type8 {
    border-bottom: none;
}

.dark_nav {
    height: 80px;
    background-color: rgb(255,255,255,0.9) !important;
    border-bottom: .8px solid #ccc !important;
}

.navbar_type8 .logo {
    margin-left: 0;
}

.navbar_type8 .logo img {
    width: 100%;
    padding: 7px 0;
    object-position: left;
}

.navbar_type8 .nav_tab {
    padding: 0;
    gap: .25vw;
}

.navbar_type8 .nav_tab .nav_item {
    text-transform: unset;
    transition: all 0.2s ease-in-out;
}

.navbar_type8 .nav_tab .nav_item:hover {
    transform: translateY(-5px);
}

.navbar_type8 .nav_tab .nav_item a {
    font-size: 1vw;
    color: #000;
    padding: 1vw;
    transition: all 0.2s ease-in-out;
}

.navbar_type8 .nav_tab .nav_item a:hover {
    color: #0f3966;
    font-weight: 700;
}

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

/*footer*/
.footer {
    background-color: #edeef2;
    color: #000;
    padding: 2rem 0;
    overflow: hidden;
}

.footer a {
    color: #000;
}

.footer p {
    margin-bottom: 0;
}

.footer .left_line {
    border-right: .8px solid #0f3966;
}

.footer h5 {
    color: #063587;
    font-weight: 700;
    font-size: 19px;
}

/*homepage banner*/


/*homepage about*/
.hp_about {
    position: relative;
    padding: 6rem 17%;
}

.hp_about::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 190%;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/B-ABOUT-BG.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: #edeef2;
    z-index: -1;
}

.hp_small_title {
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #000;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto 15px;
    padding: 7px 20px;
}

.hp_small_title span {
    display: block;
    width: 11px;
    height: 11px;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/6-TITLE-ELEMENT.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.hp_big_title {
    font-size: 2.4vw;
    font-weight: 600;
    color: #0f3966;
    margin-bottom: 0;
}

.hp_big_title span {
    color: #111;
}

.hp_about .hp_big_title {
    margin-bottom: 20px;
}

.hp_keyword {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

.hp_about_button {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.hp_button {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding: 11px 30px;
    background-color: #0f3966;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 15.5px;
    cursor: pointer;
    font-weight: 500;
}

.hp_button:hover {
    transform: scale(1.05);
}

.hp_button:active {
    transform: scale(0.75);
}

.hp_button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.hp_button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/*homepage why*/
.hp_why {
    width: 92%;
    margin: 0 auto;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/C_WHY-BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 15px;
    padding: 6rem 3vw;
}

.hp_why .hp_small_title {
    background-color: #ffe600;
    color: #000;
    margin-left: 0;
}

.hp_why .hp_small_title span {
    filter: brightness(0);
}

.hp_why_bottom_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 49%;
    margin-top: 1.5rem;
}

.hp_why_point {
    display: flex;
    gap: 20px;
    padding: 20px 15px;
    background-image: linear-gradient(35deg, transparent, transparent, rgb(255,255,255,.3), transparent, transparent);
    border: .8px solid #999;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.hp_why_point:hover {
    transform: translateY(-10px);
}

.hp_why_icon {
    height: min-content;
    padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.hp_why_point:hover .hp_why_icon {
    animation: 1s jello;
    background-color: #ffe600;
}

.hp_why_icon img {
    max-width: 35px;
    min-width: 35px;
    transition: all 0.3s ease-in-out;
}

.hp_why_point:hover .hp_why_icon img {
    filter: brightness(0);
}

.hp_why_title {
    font-size: 18px;
    font-weight: 700;
    color: #f7c407;
    margin-bottom: 5px;
}

.hp_why_keyword {
    font-size: 13.5px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
}

/*homepage services*/
#main_index .index_wrapper_5 {
    padding: 6rem 6.5%;
    background-image: linear-gradient(to bottom, #fff 65%, #edeef2 65%);
}

.hp_services_top_box {
    margin-bottom: 1rem;
}

#main_index .ex_hpservice_slide {
    margin-block: 0;
    background-color: transparent;
    padding: 0;
}

#main_index .ex_hpservice_slide .container {
    max-width: 100%;
}

#main_index .ex_hpservice_slide .item {
    margin: 10px;
    transition: all 0.3s ease-in-out;
}

#main_index .ex_hpservice_slide .item:hover {
    transform: translateY(-10px);
}

#main_index .ex_hpservice_slide .services-content .overlay {
    background-color: transparent;
    background-image: linear-gradient(to top, rgb(0,0,0,1), rgb(0,0,0,.7), transparent, transparent);
}

#main_index .ex_hpservice_slide .services-content {
    height: 0;
    padding-top: 105%;
    border-radius: 15px;
    border: .8px solid #edeef2;
}

#main_index .ex_hpservice_slide .services-content .services-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#main_index .ex_hpservice_slide .services-text {
    -webkit-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    transform: unset;
    top: unset;
    bottom: 0;
    padding: 2vw;
    text-align: left;
}

#main_index .ex_hpservice_slide .services-text p {
    display: none;
}

#main_index .ex_hpservice_slide .service_btn {
    background-color: transparent;
    color: #ffe600;
    padding: 0;
    font-size: 15px;
    letter-spacing: .5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

#main_index .ex_hpservice_slide .item .service_btn i {
    display: block;
    transition: all 0.3s ease-in-out;
}

#main_index .ex_hpservice_slide .item:hover .service_btn i {
    margin-left: 15px;
}

#main_index .ex_hpservice_slide .service_btn .fa-chevron-right::before {
    content: "\f061";
}

#main_index .ex_hpservice_slide .services-text h3.title::after {
    margin: 15px auto;
    width: 100%;
    height: .8px;
}

#main_index .ex_hpservice_slide .services-text h3.title {
    text-transform: unset;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

#main_index .ex_hpservice_slide .slick-dots li,
#main_index .ex_hpservice_slide .slick-dots li button,
#main_index .ex_hpservice_slide .slick-dots li button::before {
    width: 10px;
    height: 10px;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

#main_index .ex_hpservice_slide .slick-dots li {
    margin: 0 6px;
}

#main_index .ex_hpservice_slide .slick-dots li button::before {
    color: transparent;
    font-size: 0;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 30px;
    opacity: 1;
}

#main_index .ex_hpservice_slide .slick-dots li.slick-active,
#main_index .ex_hpservice_slide .slick-dots li.slick-active button,
#main_index .ex_hpservice_slide .slick-dots li.slick-active button::before {
    width: 10.5vw;
}

#main_index .ex_hpservice_slide .slick-dots {
    position: relative;
    bottom: 0;
    padding: 15px 7vw;
    background-color: #0f3966;
    width: fit-content;
    margin: .5rem auto 0;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

#main_index .ex_hpservice_slide .slick-slider {
    margin-bottom: 0 !important;
}

/*homepage product*/
#main_index .index_wrapper_6 {
    padding: 0 4% 6rem;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/E_TAG-BG.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-color: #edeef2;
}

#main_index .innerRow_6 {
    padding: 6rem 3vw;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgb(0,0,0,0.1);
}

.hp_product_top_box {
    margin-bottom: 1rem;
}

#main_index .productSlider-1 .slick-track .slick-slide {
    margin: 10px 15px;
    height: auto;
    flex: 1;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

#main_index .productSlider-1 .slick-track .slick-slide:hover {
    transform: translateY(-10px);
}

#main_index .productSlider-1 .product_img .product_box {
    margin: 0;
    border: none;
    background-color: transparent;
}

#main_index .productSlider-1 .product_img .product_box .product_img_frame {
    border: .8px solid #0f3966;
    border-radius: 10px;
}

#main_index .productSlider-1 .product_img .product_box .product_img_frame img {
    object-fit: contain !important;
    border-radius: 0;
}

#main_index .productSlider-1 .product_img .product_box h6 {
    color: #000;
    font-weight: 600 !important;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    line-height: 1.3;
} 

#main_index .productSlider-1 .product_img .product_box p {
    display: none;
}

#main_index .productSlider-1 .product_img .product_box h6.align-top {
    background-color: #0f3966;
    border-radius: 5px;
    margin-bottom: 0;
    color: #fff;
    padding: 11px 5px;
    font-weight: 500 !important;
    font-size: 15px;
}

#main_index .productSlider-1 .product_img .product_box h6.align-top a,
#main_index .productSlider-1 .product_img .product_box h6.align-top a:hover {
    color: #fff;
}

#main_index .productSlider-1 .product_img .slick-prev::before,
#main_index .productSlider-1 .product_img .slick-next::before {
    text-shadow: none;
    color: #ccc;
    opacity: 1;
    font-size: 25px;
}

#main_index .productSlider-1 .product_img .slick-next {
    right: -20px;
}

#main_index .productSlider-1 .product_img .slick-prev {
    left: -20px;
}

/*homepage news*/
#main_index .index_wrapper_7 {
    padding: 5rem 7%;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/F_NEWS-BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#main_index .outerRow_7 {
    align-items: center;
}

.hp_news_box {
    padding-right: 5vw;
}

.hp_news .hp_small_title {
    margin-left: 0;
}

.hp_news .hp_big_title {
    margin-bottom: 15px;
}

.hp_news .hp_keyword {
    font-size: 15px;
}

.hp_news_button {
    display: flex;
    margin-top: 1.5rem;
}

#main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4 {
    margin: 15px 0 !important;
}

#main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4:nth-child(n+3),
#main_index .hp_latest_new_8 .news_box .content {
    display: none;
}

#main_index .hp_latest_new_8 .news_box {
    padding: 0;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

#main_index .hp_latest_new_8 .news_box:hover {
    transform: translateY(-10px);
    background-color: #0f3966;
}

#main_index .hp_latest_new_8 .news_box .justify-content-between.d-flex.flex-column.w-100.h-100 {
    padding: 20px 30px;
}

#main_index .hp_latest_new_8 .news_box .img_frame {
    padding-top: 60%;
    border-radius: 0 0 15px 15px;
}

#main_index .hp_latest_new_8 .news_box .title {
    font-size: 19px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

#main_index .hp_latest_new_8 .news_box:hover .title {
    color: #fff;
}

#main_index .hp_latest_new_8 .news_box .title b {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    font-weight: 700;
}

#main_index .hp_latest_new_8 .news_box .title span {
    display: none;
}

#main_index .hp_latest_new_8 .news_box .date {
    opacity: 1;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
}

#main_index .hp_latest_new_8 .news_box:hover .date {
    color: #fff;
}

#main_index .hp_latest_new_8 .news_box .read_more {
    text-decoration: underline;
    color: #0f3966;
    transition: all 0.3s ease-in-out;
}

#main_index .hp_latest_new_8 .news_box:hover .read_more {
    color: #fff;
}

@media (min-width: 992px) {
    #main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*homepage contact*/
.hp_contact {
    padding: 3.5rem 7%;
    background-image: url('https://cdn1.npcdn.net/userfiles/21524/image/G_CTA-BG.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.hp_contact .hp_big_title {
    margin-bottom: 15px;
}

.hp_contact .hp_keyword {
    font-size: 15.5px;
    font-weight: 300;
}

.hp_contact_right_box {
    display: flex;
    justify-content: flex-end;
}

.hp_contact .hp_button {
    background-color: #ffe600;
    color: #000;
}

/*other pages*/


/*homepage responsive*/

@media (max-width: 1200.5px) {
    /*navigation bar*/
    .navbar_type8 {
        padding: 0 15px;
    }
    .navbar_type8 .nav_tab .nav_item a {
        font-size: 1.3vw;
    }
    
    /*footer*/
    
    
    /*homepage banner*/
    
    
    /*homepage about*/
    .hp_about {
        padding: 4rem 10%;
    }
    .hp_big_title {
        font-size: 26px;
    }
    .hp_about .hp_big_title {
        margin-bottom: 15px;
    }
    .hp_keyword {
        font-size: 15px;
    }
    .hp_button {
        font-size: 14px;
        padding: 9px 20px;
    }
    
    /*homepage why*/
    .hp_why {
        padding: 4rem 3vw;
        width: 95%;
    }
    .hp_why_bottom_box {
        width: 65%;
    }
    
    /*homepage services*/
    #main_index .index_wrapper_5 {
        padding: 4rem 15px;
    }
    #main_index .ex_hpservice_slide .service_btn {
        font-size: 14px;
    }
    
    /*homepage product*/
    #main_index .index_wrapper_6 {
        padding: 0 15px 4rem;
    }
    #main_index .innerRow_6 {
        padding: 4rem 3vw;
        border-radius: 15px;
    }
    
    /*homepage news*/
    #main_index .index_wrapper_7 {
        padding: 4rem 15px;
    }
    .hp_news_box {
        padding-right: 0;
    }
    #main_index .hp_latest_new_8 .news_box .justify-content-between.d-flex.flex-column.w-100.h-100 {
        padding: 20px;
    }
    #main_index .hp_latest_new_8 .news_box .title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /*homepage contact*/
    .hp_contact {
        padding: 4rem 15px;
    }
    .hp_contact .hp_keyword {
        font-size: 15px;
    }

}

.side_menu {
    background-color: #0f3966;
}

.side_menu .list-group .list-group-item a {
    color: #fff;
}

@media (max-width: 991.5px) {
    /*footer*/
    
    
    /*homepage banner*/
    
    
    /*homepage about*/
    
    
    /*homepage why*/
    .hp_why_bottom_box {
        width: 100%;
    }
    
    /*homepage services*/
    #main_index .ex_hpservice_slide .services-text {
        padding: 25px;
    }
    
    /*homepage product*/
    
    
    /*homepage news*/
    
    
    /*homepage contact*/
    

}

@media (max-width: 767.5px) {
    /*footer*/
    .footer {
        padding: 1rem 0 4rem;
    }
    .footer .col-md-3,
    .footer .col-md-6 {
        padding: 20px 30px !important;
        margin: 0;
    }
    
    /*homepage banner*/
    
    
    /*homepage about*/
    .hp_about {
        padding: 4rem 15px;
    }
    .hp_about::before {
        height: 100%;
        background-size: cover;
        background-position: 20% 50%;
    }
    
    /*homepage why*/
    .hp_why {
        padding: 4rem 15px;
        width: 100%;
        border-radius: 0;
    }
    .hp_why_bottom_box {
        grid-template-columns: 1fr;
    }
    
    /*homepage services*/
    #main_index .ex_hpservice_slide .slick-slider {
        padding: 0 5px;
    }
    #main_index .ex_hpservice_slide .services-content {
        padding-top: 85%;
    }
    #main_index .ex_hpservice_slide .slick-dots li {
        margin: 0 4px;
    }
    #main_index .ex_hpservice_slide .slick-dots {
        padding: 10px 7vw;
    }
    
    /*homepage product*/
    #main_index .innerRow_6 {
        padding: 4rem 5px;
    }
    #main_index .productSlider-1 {
        padding: 0 5px;
    }
    #main_index .productSlider-1 .slick-track .slick-slide {
        margin: 10px;
    }
    #main_index .productSlider-1 .product_img .slick-next {
        right: -10px;
    }
    #main_index .productSlider-1 .product_img .slick-prev {
        left: -10px;
    }
    #main_index .productSlider-1 .product_img .product_box h6 {
        -webkit-line-clamp: 2;
        min-height: 41.5px;
    }
    #main_index .productSlider-1 .product_img .product_box h6.align-top {
        padding: 8px 5px;
        font-size: 14px;
        min-height: auto;
    }
    
    /*homepage news*/
    .hp_news_box {
        margin-bottom: 2rem;
    }
    
    /*homepage contact*/
    .hp_contact_right_box {
        justify-content: flex-start;
        margin-top: 1.5rem;
    }

}