/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --primary-color: #003466;
    --sec-padding-y: 5rem;
}

@media(min-width:576px) {
  .container,
  .container-sm {
    max-width:600px
  }
}
@media(min-width:768px) {
  .container,
  .container-md,
  .container-sm {
    max-width:850px
  }
}
@media(min-width:992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width:950px;
  }
}
@media(min-width:1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width:1200px
  }
}
@media(min-width:1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width:1300px
  }
}

/*Floating Button*/
.toggle_btn {
  top: 82vh;
}
.toggle_btn .whatsapp{
  left: 40px;
}

/* Button */
.main-btn{
    font-size: clamp(.85rem, 1vw, 1vw);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 13px 30px;
    border-radius: 50px;
    border-style: none;
    color: var(--primary-color);
    transition: all .3s linear;
    
    &:hover{
        gap: 1.5rem;
    }
}
.btn-icon{
    width: 14px;    
}

.main-btn.solid-white{
    background: #fff;
}
.main-btn.solid-blue{
    color: #fff;
    background: var(--primary-color);
}

@media(max-width:991px){
    .main-btn{
        padding: 10px 20px;
    }
}

/* Text */
.title-style{
    color: var(--primary-color);
    font-size: clamp(1.65rem, 2.1vw, 2.1vw);
    font-weight: 700;
    margin: 0;
}
.title-desc-style{
    color: #777;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.title-box .title-style{
    margin-bottom: 1rem;
}

/*Topspace*/
.industry_topContact {
    background-color: var(--primary-color);
    border-bottom: 1px solid #000;
}
.ts-row{
    display: flex;
    justify-content: space-between;
    padding: .7rem calc(8rem - 15px);
    gap: 1rem;
}

.industry_topContactContent i{
    color: #fff;
}
.industry_topContactContent a{
    font-size: clamp(.8rem, .97vw, .97vw);
    font-weight: 300;
    letter-spacing: 1px;
    color:#fff;
    text-decoration: none;
    line-height: 1.75;
/*     text-transform: uppercase;  */
    white-space: nowrap;
    
    &:hover{
        color: #ddd;
    }
}
.industry_topContactContent a img{
    width: 18px;       
    margin-right: 0.45rem;
}

.industry_topContactContent {
    display: flex;
    justify-content: flex-start;       
}

.industry_topContactText {
    font-size: clamp(1rem, 1.2vw, 1.2vw);
    color: #fff;
    /*cursor: pointer;*/
}

.ts-row .line{
    position: relative;
    width: 0%;    
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        border-top: 2.15px dashed #aaa;       
        top: 50%;
        left: 0;
    }
}

.ts-row .socialList{
    align-self: center;
}
.ts-row .s-list{
    display: flex;
    gap: 1rem;
    font-size: clamp(1rem, 1.1vw, 1.1vw);
}
.ts-row .social_btn{
    background: none !important;  
    color: #Fff;
    
    
    &:hover{
        opacity: .6
    }
}

@media(max-width:1300px){
    .ts-row{
        padding: .75rem 3rem;
    }
}

@media all and (max-width: 992px) { 
    .industry_topContact {
        display: none;
    }
}

/* navbar */
.ex_navbareCommerce{
    padding: 0 7rem;
}

.ex_navbareCommerce .row{
    align-items: center;
}
.ex_navbareCommerce .row:first-child{
    justify-content: space-between;
    padding: 0 15px;
    flex-wrap: nowrap;
}
.ex_navbareCommerce .row:first-child > div{
    all: unset;
}
.ex_navbareCommerce .row:first-child .col-md-2{
    min-width: 30%;
}
.ex_navbareCommerce .row:first-child .col-md-10{
    width: 100%;
}

.ex_navbareCommerce .nav_logo_wrapper{
    padding: 20px 0;
}
.ex_navbareCommerce .nav_logo_wrapper .nav_logo img{
    height: 75px;
    object-position: left;
}

.ex_navbareCommerce .nav_list{
    height: 100%;
    align-items: center;
    gap: 2.75vw;    
}
.ex_navbareCommerce .nav_list a{
    font-size: clamp(.8rem, 1vw, 1vw);
    font-weight: 400;
    position: relative;
    padding: 0;
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 1.5px;
        background: var(--primary-color);
        bottom: -2px;
        transform: scaleX(0);
        transition: all .3s linear;
    }
    
    &:hover:before{
        transform: scaleX(1.2);
    }
}

.ex_navbareCommerce .xs-vartical-menu .cd-dropdown-trigger{
    padding: 0px 30px;
    height: 45px;
    display: flex;
    align-items: center;
}
.ex_navbareCommerce .xs-vartical-menu .cd-dropdown-trigger{
    border-radius: 50px;
}
.ex_navbareCommerce .xs-navbar-search{
    border-radius: 50px;    
    overflow: hidden;
    width: 98%;
    margin-left: auto;
    height: 45px;
}
.ex_navbareCommerce .xs-navbar-search .btn i{
    font-size: 15px;
}

@media(min-width:1400px){
    .ex_navbareCommerce .xs-vartical-menu{
        width: 90%;
    }
}

@media(max-width:1300px){
    .ex_navbareCommerce{
        padding: 0 3rem;
    }
    .ex_navbareCommerce .row:first-child .col-md-2{
        min-width: 15%;
        margin-right: 15px;
    }
    .ex_navbareCommerce .xs-vartical-menu .cd-dropdown-trigger::before {
      right: 25px;
    }
    .ex_navbareCommerce .xs-vartical-menu .cd-dropdown-trigger::after {
      right: 20px;
    }
}

@media(max-width:991px){
    .ex_navbareCommerce{
        display: none;
    }
}

/* Footer */
.footer_type10{
    background: #f2f2f2;
    color: #555;
    font-size: clamp(.8rem, .87vw, .87vw);
}
.footer_type10 .sub_title p{
    color: var(--primary-color);
    font-weight: 600 !important;
    border-bottom: 2px solid #aaa;
}
.footer_type10 a{
    color: #555;
    
    &:hover{
        color: var(--primary-color);
    }
}
.footer_type10 .text{
    color: #555 !important;
    font-size: clamp(.8rem, .87vw, .87vw);
}
.footer_type10 .container .col-12:first-child .text{
    font-size: clamp(.85rem, 1vw, 1vw);
}
.footer_type10 i{
    color: var(--primary-color) !important;
}
.footer_type10 .logo img {
  object-fit: contain;
    object-position:left;
  width: 100%;
}

.footer_type10 .line_top{
    color: #555;
    border-top: 1px solid #aaa;
}
.footer_type10 .line_top a{
    color: #555 !important;
}

@media(max-width:576px){
    .footer_type10 .logo img {
      object-fit: contain;
      width: 80%;
    }
}

/* Banner */
.slider_banner .banner_content{
    overflow: hidden;
    opacity: 1 !important;
}

.hp_banner{
    height: 100%;
    padding: 0 10rem;
}
.b-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}

.b-box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b-content{
    color: #fff;
}
.b-content h3{
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    font-weight: 300;
}
.b-content h2{
    font-size: clamp(2.15rem, 4vw, 4vw);
    font-weight: 800;
    margin: 1rem 0;
}
.b-content p{
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
}

.b-prod{
    width: 60%;
    margin-left: auto;    
}

.b-frame{
    width: 435px;
    animation: pulse 3s linear infinite;
}
.b-frame img{
    min-height: 100%;
    object-fit: cover;
}

.slider_banner .slick-prev{
  left: 40px;
  width: 60px;
  height: 60px;  
  
  &:before{
    background-image: url(https://cdn1.npcdn.net/images/A_Button1_o3fk2d_1779264484.png?md5id=60fbbc1c544a895285294af287c36db8&new_width=180&new_height=180&type=4);
    filter: unset;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}
.slider_banner .slick-next{
  right: 40px;
  width: 60px;
  height: 60px;
  
  &:before{
    background-image: url(https://cdn1.npcdn.net/images/A_Button2_ji40rv_1779264484.png?md5id=60fbbc1c544a895285294af287c36db8&new_width=180&new_height=180&type=4);
    filter: unset;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@media(max-width:1200px){
    .hp_banner{
        padding: 0 5rem;
    }
    
    .slider_banner .slick-prev{
        left: unset;
        right: 8rem;
        top: unset;
        bottom: 3rem;
        transform: unset;
        width: 40px;
        height: 40px;
      }
      .slider_banner .slick-next{
        left: unset;
        right: 8rem;
        bottom: 3rem;
        top: unset;
        transform: translateX(150%);
        width: 40px;
        height: 40px;
      }
}

@media(max-width:991px){
    .b-prod{
        margin-top: 1rem;
        margin-left: 0;
    }
    .b-frame{
        width: 550px;
    }
}

@media(max-width:768px){
    .hp_banner{
        padding: 0 3rem;
    }
    .slider_banner .item > img{
        min-height: 70vw;
        object-fit: cover;
    }
    .b-prod{
        width: 100%;
    }
    .b-frame{
        width: 800px;
    }
}

@media(max-width:576px){
    .slider_banner .item > img{
        min-height: 130vw;        
    }
    .hp_banner{
        padding: 0 2rem;
    }
    .b-wrapper{
        flex-direction: column;
    }
    .b-box{
        height: 100%;
        justify-content: center;
    }
    
    .b-content{
        text-align: center;
    }
    .b-content h2 br{
        display: none;
    }
    .b-content .main-btn{
        margin: auto;
    }       
    
    .b-prod{
        margin-top: 2rem;
    }
    .b-frame{
        display: none;
    }
    
    .slider_banner .slick-prev,
    .slider_banner .slick-next{
        display: none !important;
    }
}

/* Product */
.index_wrapper_3{
    padding: var(--sec-padding-y) 0 calc(var(--sec-padding-y) - 1rem - 15px);
}
.product_cat-7 .col-12{
    padding: 15px;
}
.product_cat-7 .cat_outter_box .content .content_box{
    padding: 1rem 0;
    text-align: left;
}
.product_cat-7 .cat_outter_box .content .title::after{
    display: none;
}
.product_cat-7 .cat_outter_box .content .title{
    color: var(--primary-color);
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 700;
    margin-bottom: .5rem !important;
}
.product_cat-7 .cat_outter_box .content .sub_title{
    font-size: clamp(.85rem, .85vw, .85vw);
    line-height: 1.55;
}

@media(max-width:768px){
    .product_cat-7 .cat_outter_box .content .title{
        font-size: 16px;
    }
}

@media(max-width:576px){
    .product_cat-7 .col-12{
        padding: 15px 0;
    }
}

/* Best */
.index_wrapper_4{
    padding: var(--sec-padding-y) 0;
    background: linear-gradient(to bottom, var(--primary-color) 60%, #fff 60%)
}
.hp_best .title-box h2,
.hp_best .title-box h3{
    color: #fff;
}
.product_box .text-left{
    text-align: center !important;
}
.product_box .content p{
    display: none;
}
.productSlider-1 .product_img .product_box h6{
    color: #444;
    font-size: clamp(.85rem, 1vw, 1vw);
}
.productSlider-1 .product_img .product_box .align-top{
    font-size: clamp(.82rem, .9vw, .9vw);
    a{
        font-weight: 500;   
    }
}
.productSlider-1 .slick-track .slick-slide{
    margin: 0 15px;
    box-shadow: none;
    border-radius: 5px;
    transition: box-shadow .1s linear, transform .3s linear;
    
    &:hover{
        transform: translateY(10px);
        box-shadow: 0px 0px 10px 2px rgba(0,0,0,.12)
    }
}
.productSlider-1 .slick-list{
    overflow: visible;
    overflow-x: clip;
}
.productSlider-1 .slick-arrow{
    display: none !important;
}
.productSlider-1 .product_img .product_box{
    padding: 8px;
    border: 0;    
}
.productSlider-1 .product_img .product_box .product_img_frame img{
    border-radius: 0;
}

@media(min-width:1200px){
    .productSlider-1{
        padding: 0 3%;
    }
}

@media(max-width:1200px){
    .productSlider-1 .slick-track .slick-slide{
        margin: 0 5px;
    }
}

@media(max-width:991px){
    .index_wrapper_4{
        padding: var(--sec-padding-y) 0 0;
        background: linear-gradient(to bottom, var(--primary-color) 60%, #fff 60%)
    }
    .productSlider-1 .slick-list{
        padding: 0 !important;
    }
}

@media(max-width:576px){
    .productSlider-1 .product_img .product_box h6{
        font-size: 16px;
    }
    .productSlider-1 .product_img .product_box .align-top{
        font-size: 14px;
    }
}

/* Quality */
.hp_quality{
    padding: var(--sec-padding-y) 0;
}

.quality-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quality-grid .title-box{
    padding: 0 15px;
}

.btn-box{
    display: grid;
    place-content: end right;
    padding: 0 15px;
}

.quality-frame{
    border-radius: 30px;
    overflow: hidden;
    
    img{
        height: 100%;
        object-fit: cover;
    }
}

.quality-grid .content-box{
    background: #f2f2f2;
    border-radius: 30px;
    display: grid;
    place-content: center;
    padding: 3rem 3rem;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 16vw;
        height: 11vw;
        background: urL(https://cdn1.npcdn.net/images/D_Element_tr8seg_1779259440.png?md5id=60fbbc1c544a895285294af287c36db8&new_width=708&new_height=490&type=4);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: -9vw;
        left: 2vw;
        z-index: -1;
        animation: swing 3s linear infinite;
        transform-origin: bottom;
    }
    
    .content{
        color: #666;
        font-size: clamp(.9rem, 1.12vw, 1.12vw);
        font-weight: 300;
        line-height: 1.75;
        margin: 0;
    }
}

@media(min-width:1200px){
    .quality-grid{
        padding: 0 3%;
    }    
}

@media(max-width:1200px){
    .quality-grid .content-box:before{
        width: 20vw;
        height: 15vw;
        top: -12vw;
    }
}

@media(max-width:991px){
    .hp_quality{
        padding: var(--sec-padding-y) 0 0;
    }
}

@media(max-width:768px){
    .quality-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .quality-grid .title-box{
        text-align: center;
    }
    .quality-grid .btn-box{
        place-content: center;
        margin-bottom: 1rem;
    }
    .quality-grid .content-box:before{
        display: none;
    }
}

@media(max-width:768px){
    .quality-grid .content-box{
        padding: 2rem;
    }
    .quality-frame img{
        height: 50vw;
        width: 100%;
    }
}

/* Arrival */
.index_wrapper_6{
    padding: var(--sec-padding-y) 0 var(--sec-padding-y);
}

/* Cta */
.hp_cta{
    background: url(https://cdn1.npcdn.net/images/F_Background_lu2hjp_1779261907.jpg?md5id=60fbbc1c544a895285294af287c36db8&new_width=1900&new_height=767&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
}
.hp_cta .main-btn{
    margin: auto;
}

@media(min-width:991px){
    .hp_cta{
        background-attachment: fixed;
    }
}

/* Brand */
.hp_brand{
    padding: var(--sec-padding-y) 0;
}
.brand-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 85%;
    margin: auto;
}
.brand{
    width: 100%;
    padding: 2rem 1rem;
    
    &:hover{
        box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.1);
    }
}

@media(min-width:991px){
    .hp_brand{
        padding: calc(var(--sec-padding-y) * 1.2) 0;
    }
}

@media(max-width:991px){
    .brand-list{
        width: 100%;
    }
}

@media(max-width:768px){
    .brand-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gallery */
.index_wrapper_9{
    padding: var(--sec-padding-y) 0;
    background: linear-gradient(to bottom, var(--primary-color) 60%, #fff 60%)
}
.hp_gallery .title-box .title-style,
.hp_gallery .title-box .title-desc-style{
    color: #fff;
}
.hp_gallery .title-box{
    margin-bottom: 3rem !important;
}

.hp_photoGallerySlider_type3{
    background: none;
}
.hp_photoGallerySlider_type3 .photo-gallery3{
    padding: 0 2rem;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img{
    padding: 0;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box{
    padding: 0 .75rem;    
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
    border-radius: 30px;
    background: none;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-slide .outline_box{
    transform: scale(.92);
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-current .outline_box{
    transform: scale(1.07);
}
.hp_photoGallerySlider_type3 .slick-list{
    overflow: visible;
    overflow-x: clip;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev{
    left: 0px;
    width: 60px;
    height: 60px;    
    box-shadow: 0px 0px 8px 3px rgba(0,0,0,.1);
    border-radius: 50%;
    
    &:before{
        background: url(https://cdn1.npcdn.net/images/A_Button1_o3fk2d_1779264484.png?md5id=60fbbc1c544a895285294af287c36db8&new_width=180&new_height=180&type=4);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        opacity: 1;
    }
}

.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
    right: 0px;
    width: 60px;
    height: 60px;    
    box-shadow: 0px 0px 8px 3px rgba(0,0,0,.1);
    border-radius: 50%;
    
    &:before{
        background: url(https://cdn1.npcdn.net/images/A_Button2_ji40rv_1779264484.png?md5id=60fbbc1c544a895285294af287c36db8&new_width=180&new_height=180&type=4);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        opacity: 1;
        filter: unset;
    }
}

@media(max-width:991px){
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev,
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
        width: 40px;
        height: 40px;
    }
}

@media(max-width:576px){
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev,
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
        display: none !important;
    }
    .hp_photoGallerySlider_type3 .photo-gallery3{
        padding: 0;
    }
}