body{
    background-image:linear-gradient(#1e2a3d,#233853);
    font-family: "Manrope", sans-serif;
    line-height:1.6;
    color:#fff;
}
#toTop{
    color:#000;
    background:#ffce00;
}

/*banner*/
.topspace{
    display:flex;
    justify-content:center;
    justify-content:end;
    background-image:linear-gradient(to right,#1e2a3d,#233853);
    padding:5px 10%;
}
.topspace_contactgroup{
    display:flex;
    align-items: center;
}
.topspace_contacticon{
    display:flex;
    justify-content:center; 
    align-items: center;
    margin-left:4vw;
    margin-right:10px;
}
.topspace_contactgroup img {
    max-width: 20px;
    margin-right: 10px;
}
.topspace_contacticon p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
.topspace_contacticon a{
    color:#fff;
}
.topspace_contacticon a:hover{
    text-decoration: none;
    color:#ffce00;
}

/*nav*/
.navbar_type8{
    height:90px;
    background:#fff;
}
.np_language_btn {
    right: 1rem;
}
.dark_nav{
    background:#fff !important;
}
.navbar_type8 .logo img {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}
.navbar_type8 .nav_tab {
    padding-right: 10%;
}
.navbar_type8 .nav_tab .nav_item {
    text-transform: capitalize;
}
.navbar_type8 .nav_tab .nav_item a{
    color:#000;
    font-weight:600;
    font-size:15px;
    padding: 15px 1.3vw;
}
.navbar_type8 .nav_tab .nav_item:last-child {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffce00;
    border: 1px solid #ffce00;
    border-radius: 5px;
    margin-left: 20px;
    transition: linear .2s;
}
.navbar_type8 .nav_tab .nav_item:last-child:hover{
    background:#233853;
    border-color:#233853;
    color:#fff;
}
.navbar_type8 .nav_tab .nav_item:last-child a {
    padding: 5px 15px;
}
.navbar_type8 .nav_tab .nav_item:last-child:hover a{
    color:#fff;
}
.navbar_type8 .nav_tab .nav_item:last-child a::after {
    content: '';
    position: relative;
    display: inline-block;
    z-index: 5;
    background-image: url(https://cdn1.npcdn.net/images/button_icon_ualpy0_1759995581.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=50&new_height=50&type=4);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top:4px;
    margin-left: 8px;
    transition: linear.3s;
    animation: 3s .1s swing infinite;
}
.navbar_type8 .nav_tab .nav_item:last-child:hover a::after {
    filter:invert(1);
}
.navbar_type8 .nav_tab .nav_item:last-child::before{
    display:none;
}

/*home*/
.big_title{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size:2.2vw;
    font-weight:700;
    color:#fff;
}
.content_text {
    font-size:0.95vw;
    color:#ffffff;
}
.btn_more{
    font-size:0.95vw;  
    color:#ffffff;
    font-weight:700;
    background:transparent;
    border:none;
    margin-top:25px;
    transition: linear.3s
}
.btn_more:hover{    
    background:transparent;
    border:none;
    color:#ffce00;
}
.btn_more::after{
    content:'';
    position: relative;
    display:inline-block;
    z-index:5;
    background-image: url(https://cdn1.npcdn.net/images/button_icon_ualpy0_1759995581.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=50&new_height=50&type=4);
    background-size: contain;
    background-repeat: no-repeat;
    filter:invert(1);
    width:20px;
    height:20px;
    margin-left:10px;
}
.btn_more:hover::after{
    animation: 2s .1s fadeInLeft infinite;
}
/*hp_service*/
.hp_service{
    padding-top:80px;
    padding-bottom:35px;
}
.service_3 .container {
    max-width: 100%;
}
.service_3 .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    grid-template-areas:
        "item1 item2 item3 item4" 
        "item1 item2 item5 item6";
}
.service_3 .service_box{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 300px;
    border-radius:15px;
    overflow:hidden;
}
.service_3 .service_box:nth-child(1){
    grid-area: item1;
}
.service_3 .service_box:nth-child(2){
    grid-area: item2;
}
.service_3 .service_box:nth-child(3){
    grid-area: item3;
}
.service_3 .service_box:nth-child(4){
    grid-area: item4;
}
.service_3 .service_box:nth-child(5){
    grid-area: item5;
}
.service_3 .service_box:nth-child(6){
    grid-area: item6;
}
.service_3 .service_box img {
    height: 100%;
}
.service_3 .service_box .content {
    height:101%;
    top:49%;
    opacity: 1;
    background-color:transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0));
}
.service_3 .service_box .content:hover{
    background-color:rgba(0,0,0,0.3);
}
.service_3 .service_box .content h3 {
    color: white;
    text-align: left;
    position: absolute;
    top: 35px;
    left: 35px;
    transform: none;
    font-size: 20px;
    width: 70%;
    font-weight: 700;
    transition: linear .3s;
}
.service_3 .service_box .content:hover h3{
    color:#ffce00;
}
.service_3 .service_box .content h3::after {
    content: '';
    position: relative;
    display: inline-block;
    z-index: 5;
    background-image: url(https://cdn1.npcdn.net/images/button_icon_ualpy0_1759995581.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=50&new_height=50&type=4);
    background-size: contain;
    background-repeat: no-repeat;
    filter:invert(1);
    width: 20px;
    height: 20px;
    top:4px;
    margin-left: 8px;
    transition: linear.3s;
}
.service_3 .service_box .content:hover h3::after{
    animation: 2s .1s fadeInLeft infinite;
}
/*hp_about*/
.hp_about{
    padding-top:100px;
    background-image: linear-gradient(#1f2a3d,#000000);
}
.hp_about::after{
    content:'';
    position:absolute;
    z-index:2;
    right:0;
    bottom:0;
    background-image: url(https://cdn1.npcdn.net/images/about_bg_m5opvf_1760070649.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=1132&new_height=385&type=4);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position:right bottom;
    width:60%;
    height:400px;
}
.about_content .big_title{
    margin-bottom:25px;
}
.about_content {
    position: relative;
    z-index:5;
    background-image: linear-gradient( #9c9c9c, #808080);
    width: 60%;
    padding: 5% 20% 5% 6%;
    margin-left: 10%;
    border-radius: 50px 0;
}
.about_content::after{
    content:'';
    position:absolute;
    z-index:-1;
    top:0;
    right:0;
    width:25%;
    height:80%;
    background-image:url(https://cdn1.npcdn.net/images/about_paragraph_bg_vmpg83_1760069222.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=606&new_height=528&type=4);
    background-size:contain;
    background-repeat: no-repeat;
}
.about_content .btn_more{
    margin-top:15px;
}
.about_imgbg{
    position: absolute;
    z-index: 5;
    width: 53%;
    bottom: -20%;
    left: 0;
    overflow: hidden;
}
.about_imgGroup {
    position: absolute;
    z-index:5;
    width: 48%;
    top:0;
    right: 0;
    overflow: hidden;
    max-width: 680px;
}
.about_imgx2{
    max-width: 45%;
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 45%;
}

/*hp_why*/
.hp_why{
    background:#000;
    padding:100px 5% ;
}
.why_content .big_title{
    text-align:center;
    margin-bottom:30px;
}
.why_box{
    padding:35px 32px;
    border: 2px solid transparent;
    transition: linear .3s;
    border-radius: 0 25px;
    height:100%;
}
.why_box:hover{
    border: 2px solid #e5a300;
}
.why_icon{
    width:55px;
    transition: linear .3s;
    animation:2s .0s pulse infinite;
    filter:brightness(0) invert(1);
}
.hp_why .why_box:hover .why_icon{
    filter:brightness(1) invert(0);
}
.hp_why .col-lg-3:nth-child(2) .why_box{
    border: 2px solid #e5a300;
}
.hp_why .col-lg-3:nth-child(2) .why_icon{
    filter:brightness(1) invert(0);
}
.why_boxtitle {
    font-size: 1.2vw;
    font-weight: 700;
    margin:10px 0;
}
.why_box .content_text{
    margin-top:10px;
    font-size:.95vw;
    margin-bottom:0;
}

/*hp_gallery*/
.index_wrapper_6{
    background-image:url(https://cdn1.npcdn.net/images/gallery_bg_isra2z_1760077696.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=1278&new_height=745&type=4);
    background-size:60%;
    background-repeat: no-repeat;
    background-position:top left;
    padding-top:100px;
    padding-bottom:100px;
}
.outerRow_6{
    align-items:center;
}
#index_6_1{
    padding-left:15% !important;
}
.hp_photoGallerySlider_type3 {
    background-color: transparent;
    overflow:hidden;
    padding-left:40px;
}
.hp_photoGallerySlider_type3 .container-fluid,
.hp_photoGallerySlider_type3 .col-12,
.hp_photoGallerySlider_type3 .container,
.hp_photoGallerySlider_type3 .photo-gallery3{
    padding:0 !important;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
    border-radius:25px;
    padding-top: 75%;
    overflow:hidden;
    background:#000000;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img {
    object-fit: cover;
    padding: 0;
}
.hp_photoGallerySlider_type3 .slick-arrow{
    z-index:99 !important;
}

.hp_photoGallerySlider_type3 .slick-prev {
    left: -15px !important;
    top: calc(38% + 45px); 
}
.hp_photoGallerySlider_type3 .slick-next{
    left: -15px;
    top: 38%;    
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev::before {
    content:'';
    position:absolute;
    background-image:url(https://cdn1.npcdn.net/images/icon_left_6zs24k_1759995581.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=158&new_height=158&type=4);
    background-size:contain;
    background-position:center;
    height:45px;
    width:45px;
    filter: brightness(1) !important;
    opacity: 1;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next::before {
    content:'';
    position:absolute;
    background-image:url(https://cdn1.npcdn.net/images/icon_right_dob268_1759995581.png?md5id=086c98cd8fcd5da4d44864f9b3c7c2fa&new_width=158&new_height=158&type=4);
    background-size:contain;
    background-position:center;
    height:45px;
    width:45px;
    filter: brightness(1) !important;
    opacity: 1;
}
.hp_photoGallerySlider_type3  .slick-dots{
    display:none !important;
}

/*hp_review*/
.index_wrapper_8{
    padding-left:5% !important;
}
.review_img{
    overflow:hidden;
}
.review_img img{
    width:110%;
}

/*footer*/
.footerListServices {
    padding-top:50px;
    background-color: #000;
    border-bottom:20px solid #1b2435;
}
.npfooter_languagebar .text-muted{
    color:#fff !important;
}
.footerListServices .title h5 {
  font-weight: 800;
}
.footerListServices a:hover{
  color: #ffce00;
}
.footerListServices .logo {
    min-height: 80px;
}
.footerListServices .logo img {
    max-height: 80px;
    filter: brightness(0) invert(1);
}
.footerListServices .input-container{
    background:#fff;
}
.footerListServices .input-container{
    border-radius:15px;
}
.footerListServices .input-container input, .footerListServices .input-container label {
    color: #000;
    padding-left: 15px;
}
.footerListServices .input-container .submit{
    color:#000;
}
.footerListServices .line{
    margin-top:40px;
    height:0;
}

@media (min-width:1200px){
    .service_3 .service_box .content h3{
        width:50%;
    }
    :lang(zh-Hans).service_3 .service_box .content h3{
        width:75%;
    }
    .service_3 .service_box:nth-child(4) .content h3{
        width:85%;
    }
    .footerListServices .col-md-3:nth-child(1){
        -ms-flex: 0 0 35%;
        flex: 0 0 35%;
        max-width: 35%;
        padding-right:5% !important;
    }
    .footerListServices .col-md-3:nth-child(2),
    .footerListServices .col-md-3:nth-child(3){
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width:1200px){
    .navbar_type8 .nav_tab .nav_item:last-child{
        margin-left:1vw;
    }
    .navbar_type8 .nav_tab .nav_item a {
      font-size: 13px;
      padding: 15px 1vw;
    }
    .about_content{
        margin-left:5% !important;
    }
}

@media (max-width:991px){
    .navbar_mobile .row_1 {
      margin-bottom: 5px !important;
      padding-top: 10px !important;
    }
    .navbar_mobile .logo_img {
        max-height: 60px;
    }
    .big_title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 22px;
    }
    .content_text {
        font-size: 15px;
    }
    .btn_more {
        font-size: 12.5px;
    }
    .btn_more::after {
        height:15px;
        width:15px;
    }
    .service_3 .row {
        grid-template-columns: 1fr 1fr 1fr ;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "item1 item2 item3" 
            "item4 item5 item6";
    }
    .about_content{
        width:90%;
        padding: 5% 20% 10% 6%;
    }
    .about_imgGroup {
        position: relative;
        z-index: 5;
        width: 80%;
        top: 0;
        right: 0;
        overflow: hidden;
        max-width: 400px;
        margin: -25px auto 0 auto;
    }
    .why_box {
        margin-bottom:15px;
    }
    .why_boxtitle {
        font-size: 18px;
    }
    .why_box .content_text {
        font-size: 15px;
    }
    .footerListServices .title h5 {
      font-weight: 800;
      font-size: 18px;
    }
    .footerListServices .input-container input, .footerListServices .input-container label {
      font-size: 10px;
    }
}

@media (max-width:768.5px){
    .service_3{
        max-width:90%;
        margin:0 auto;
    }
    .service_3 .row {
        grid-template-columns: 1fr 1fr ;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:
            "item1 item2" 
            "item3 item4"
            "item5 item6";
    }
    .service_3 .service_box{
        min-height:200px;
    }
    .service_3 .service_box .content h3 {
        color: white;
        text-align: left;
        position: absolute;
        top: 15px;
        left: 15px;
        transform: none;
        font-size: 18px;
        width: auto;
        font-weight: 700;
    }
    .about_content {
        width: 95%;
        padding: 10% 10% 20% 10%;
        margin: 0 auto !important;
        border-radius: 25px 0;
    }
    .why_box {
        height:unset;
    }
    .index_wrapper_6{
        background-size:100%;
    }
    #index_6_1 {
      padding-left: 0 !important;
    }
    .hp_gallery{
        padding:0 5% 30px 5%;
    }
    .hp_photoGallerySlider_type3 {
      padding-left: 0;
      width: 90%;
      margin: 0 auto;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next {
      right: 55px;
      left: inherit;
      top: 45%;
    }
    .hp_photoGallerySlider_type3 .slick-prev {
      left: 20px !important;
      top: 45%;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev::before,
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next::before{
      height: 35px;
      width: 35px;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box {
      border-radius: 25px 0;
      padding-top: 75%;
      overflow: hidden;
      background: #000000;
      width: 90%;
      margin: 0 auto;
    }
    .index_wrapper_8 {
      padding-left: 0 !important;
    }
    .review_content .big_title{
        text-align:center;
    }
    .review_img img {
      width: 100%;
    }

}


/*black theme*/
.page_title b{
    color:#ffce00;
}

/*service page*/
.breadcrumb_b ol li:last-child a {
  color: #fff;
  cursor: unset;
}
.breadcrumb_b ol li a {
  color: #ccc;
}
.breadcrumb_b ol li a:hover {
  color: #eaeaea;
}
.booking_form .background {
  background-color: transparent;
}
.ws_service .viewmore_services_item {
  background-color: #252525 !important;
}
.booking_form {
    padding:0;
    background-color: transparent;
}
#service_appointment_form{
    color:#111;
}
.ws_service .viewmore_services_title {
  font-weight: 600;
  color: #fff;
}

/*photoalbum*/
.ws_gallery-2 .img_frame {
  border: none;
}

/*news*/
.latest_new_type4 .news_box {
  background-color: transparent;
}
.latest_new_type4 .news_box a {
  color: #fff;
  text-decoration: none;
}
.latest_new_type4 .news_box .badge-primary{
    background:#ffce00;
}
.latest_new_detail .content {
  color: #fff;
}
/*contact page*/
.ws_contact .text-muted{
    color:#efefef !important;
}
.ws_contact h6 strong, .ws_contact p, .ws_contact a {
  color:#ffffff;
}
#main_ourproducts .ai_image_search .search-container{
    background-color: #fff;
}

#main_ourproducts .category_menu_3 .main_title{
    color: #fff;
}
#main_ourproducts .recent_view_product .recent_view_product_item a{
    color: #fff;
}
#main_ourproducts .product_list_5 .product_box .product_des .price a, .product_list_5 .product_box .product_des .title a{
    color: #fff;
}
#main_ourproducts .product_list_5 .product_box .whatsapp_wrapper a{
    color: #fff;
}
#main_showproducts .product_detail .product_description_link a{
    color: #fff;
}
#main_showproducts .product_detail .title{
    color: #fff;
}
#main_showproducts .pl-3, .px-3{
    color: #000;
}
#main_showproducts h1{
    color:#fff;
}