/* 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 {
    --title-font: "Russo One", sans-serif;
    --primary-color: #003575;
    --sec-x: 10%;
    --sec-y: 5rem;
}

@media(max-width:576px){
    :root{
        --sec-x: 5%;
    }
}

/* Text */
.subtitle-style{
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 600;
}
.title-style{
    color: var(--primary-color);
    font-family: var(--title-font);    
    font-size: clamp(1.65rem, 2.15vw, 2.15vw);
    font-weight: 500;
}
.abt-title-style{
    font-family: var(--title-font);
    font-size: clamp(1.65rem, 1.75vw, 1.75vw);
    letter-spacing: .5px;
}
.content{
    color: #555;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    line-height: 1.75;
}

/* Btn */
.btn-group {
    gap: 1rem;
}

.main-btn {    
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 50px;
    border-style: none;
    padding: 10px 12px 10px 30px;
    transition: all .2s linear;
    font-size: clamp(.85rem, .9vw, .9vw);
    font-weight: 600;
    color: #fff;
    position: relative;
    overflow: hidden;

    &:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        top: 0;
        left: -100%;
        transition: all .3s linear;
        z-index: -1;
        border-radius: 50px;
    }

    &.solid-style {
        color: #fff;
        background: var(--primary-color);                

        &:before {
            background: var(--primary-color);
        }

        &:hover {
            background: transparent;
            transition:1s linear;

            &:before {
                left: 0;
            }
        }
    }

    &.outline-style {        
        border: 1px solid #fff;
        background: transparent;

        &:hover {
            color: #000;
            background: #fff;
            border-color: #424242;

            &:before {
                left: 0;
                background: #424242;
            }            
        }
    }

    &:hover {          
        .btn-icon{
            opacity: 0;
            margin-left: -25px;
            pointer-events: none;
        }
    }
}

.main-btn.solid-style.black{
    background: #000;
}

.btn-icon {
    width: 25px;
    height: 25px;
    transition: all .3s linear;
    will-change: opacity, width, height;
}

@media(max-width:1200px){
    .main-btn{
        padding: 7px 6px 7px 20px;
    }
}

/* Topspace */
.wp-ts {
    background: var(--primary-color);
}

.ts-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 1rem calc(var(--sec-x) + 2%);
    width: 92%;
}

.ts-box {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.ts-box i {
    color: #fff;
    font-size: 18px;
}

.ts-box p {
    color: #fff;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 300;
}

.ts-box a {
    color: #fff;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 300;

    &:hover {
        opacity: .75;
    }
}

.ts-wrapper .ts-box:last-child li:not(:first-child){
    display: none;
}

@media(max-width:1300px){
    .ts-wrapper{
        width: 100%;
    }
}

@media(max-width:1200px) {
    .ts-wrapper {
        padding: .75rem calc(var(--sec-x) - 5%);
    }

    .ts-box {
        gap: 1rem;
    }

    .ts-box:first-child {
        width: 50%;
    }

    .ts-box p {
        line-height: 1.25;
    }
}

/* Nav */
.ex_navbareCommerce{
    padding: 0 calc(var(--sec-x) + 2%);
    margin: 0 -20px 20px;
}
.ex_navbareCommerce .nav_list{
    justify-content: end !important;
    gap: 3.5vw;
}
.ex_navbareCommerce .nav_list a{
    color: #000;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 600;
    text-transform: uppercase;
    padding: 40px 0px;
}

.ex_navbareCommerce .link_btn strong{
    color: #000;
    font-size: 130%;
    font-weight: 800;
}

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


@media(max-width:1300px){
    .ex_navbareCommerce{
        padding: 0 calc(var(--sec-x) - 5%)
    }
    
    .ex_navbareCommerce .row:nth-child(2) .col-md-6{
        flex: 0 1 40%;
        max-width: 40%;
    }
    .ex_navbareCommerce .row:nth-child(2) .col-md-3{
        flex: 0 1 calc((100% - 40%) / 2);
        max-width: calc((100% - 40%) / 2)
    }
}    

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

/* banner */
.hp_banner{
    height: 65%;
}
.banner-content{
    color: #fff;    
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--sec-x);
    padding-top: 8%;
}

.banner-content h3{
    font-family: var(--title-font);
    font-size: clamp(1rem, 1.15vw, 1.15vw);
}
.banner-content h2{
    font-family: var(--title-font);
    font-size: clamp(1.75rem, 3vw, 3vw);
    line-height: 1;
    margin: .75rem 0 2.25rem;
}
.banner-content .line{
    display: block;
    content: "";
    width: 70px;
    height: 4px;
    background: #fff;
    margin-bottom: 2.25rem;
}
.banner_content a{
    width: fit-content;
}

@media(max-width:991px){
    .banner-content{
        padding-top: 0;
    }
    .banner-content h2{        
        margin-bottom: 1.5rem;
        line-height: 1.25;
    }
    .banner-content .line{
        margin-bottom: 1.5rem;
    }
}   

@media(max-width:768px){
    .hp_banner{
        height: 100%;
    }
    
    .banner_content{
        background: linear-gradient(50deg, rgb(2, 35, 76), rgba(0, 53, 117, 0.33));
    }
    .slider_banner .item > img{
        min-height: 70vw;
        object-fit: cover;
        object-position: right;
    }
        
    .banner-content{
        text-align: center;
        padding: 0;
    }
    .banner-content h2 br{
        display: none;
    }
    .banner-content .line,
    .banner-content a{
        margin-left: auto;
        margin-right: auto;
    }    
}

@media(max-width:576px){
    .slider_banner .item > img{
        min-height: 130vw;
        object-position: 60%;
    }
    
    .banner-content{
        padding: 0 2rem;
    }
}

/* About */
.index_wrapper_3 {
  position: relative;
  z-index: 2;
}
.hp_about{
    padding: calc(var(--sec-y) - 1.5rem) 0;
    padding-right: var(--sec-x);
    position: relative;
    
    &:after{
        position: absolute;
        content: "";
        width: 30vw;
        height: 30vw;
        background: url(https://cdn1.npcdn.net/images/side_images_zoh01e_1781233875.png?md5id=ececf8310d5c47ae7dbdf1cda6163c72&new_width=960&new_height=583&type=4);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        right: -8%;
        bottom: -24%;
    }    
}
.abt-wrapper{
    display: flex;
    align-items: center;
}

.abt-frame{
    min-width: 55%;    
}

.abt-content{    
    padding: 0 4rem 0 6rem;
}
.abt-content .subtitle-style{
    margin-bottom: 0.85rem;
}
.abt-content .content{
    color: #777;
    margin-bottom: 2rem;
}
.abt-title-style:after{
    display: block;
    content: "";
    width: 70px;
    height: 3px;
    background: #000;
    margin: 1.35rem 0;
}

@media(max-width:1200px){
    .abt-content{
        padding-right: 0rem;
        padding-lefT: 4rem;
    }
}

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

@media(max-width:768px){
    .hp_about:after{
        width: clamp(15rem, 50vw, 50vw);
        height: clamp(15rem, 50vw, 50vw);
        bottom: -14%;
    }
    
    .abt-wrapper{
        flex-direction: column;
    }
    .abt-frame{
        margin-bottom: 3rem;
    }
    .abt-content{
        padding-left: var(--sec-x);
    }
}

/* VS */
.hp_vs{
    padding: calc(var(--sec-y) + 2rem) var(--sec-x);
}

.vs-wrapper{
    display: flex; 
    align-items: center;
    position: relative;
    
    &:before{
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary-color);
        z-index: -1;
        transform: scaleX(1.1) scaleY(1.3);
        border-radius: 20px;
    }
}

.vs-frame{
    min-width: 12%;
}

.vs-title-box{
    padding: 0 4rem 0 3rem;
}
.vs-title-style{
    color: #fff;
    font-family: var(--title-font);
    font-size: clamp(1.1rem, 1.35vw, 1.35vw);
    
    span{
        color: #fecc00;
        font-size: 153%;
    }
    
    &:after{
        display: block;
        content: "";
        width: 100%;       
        height: 1px;
        background: #fff;
        margin: 1rem 0;
    }
}
.vs-content{
    color: #eee;
    font-size: clamp(.85rem, .9vw, .9vw);
    line-height: 1.5;
}

.vs-compare-box{
    min-width: 50%;
    display: flex;    
    justify-content: space-between;
    align-items: center;
}
.compare-item{    
    border-radius: 20px;
    overflow: hidden;
    width: 40%;
}

.compare-item h3{
    color: #fff;
    font-size: clamp(.85rem, .92vw, .92vw);
    font-weight: 800;
    padding: 1rem 2rem;    
}
.compare-item.original-part h3{
    background: #0274f9;
}
.compare-item.replacement-part h3{
    background: #5b5b5b;
}

.compare-item ul{
    margin-bottom: 0;
    padding: .8rem 1.25rem .8rem 2rem;
    background: #fff;
}
.compare-item ul li{
    display: flex;
    
    &:not(:last-child){
        margin-bottom: 3px;
    }
}
.compare-item ul li p{
    color: #333;
    font-weight: 600;
}
.compare-icon{
    min-width: 17px;
    margin-right: .85rem;
    max-width: 17px;
}

.vs-title{
    color: #fff;
    font-size: clamp(2rem, 2.65vw, 2.65vw);
    font-weight: 900;
}

@media(max-width:1200px){   
    .hp_vs{
        padding: var(--sec-y) var(--sec-x);
    }

    .vs-wrapper{
        flex-wrap: wrap;
        justify-content: start;
        background: var(--primary-color);
        padding: 2rem 3rem;
        border-radius: 30px;
        
        &:before{
            display: none;
        }
    }
    
    .vs-frame{
        width: 20%;        
    }
    
    .vs-title-box{
        width: 70%;
        padding: 0 4rem;
    }
    
    .vs-compare-box{
        min-width: 100%;
        margin-top: 1.5rem;
    }
}

@media(max-width:768px){
    .vs-frame{
        margin: auto;
        margin-bottom: 1rem;
    }
    .vs-title-box{
        width: 100%;
        text-align: center;
        padding: 0 3rem;
    }
    
    .compare-item h3{
        padding: .85rem 1rem;
    }
    .compare-item ul{
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media(max-width:576px){
    .vs-wrapper{
        padding: 3rem 1rem;
    }
    
    .vs-frame{
        width: 25%;
    }
    
    .vs-title-box{
        padding: 0 5%;        
        
        .vs-content{
            padding: 0 3%;
        }
    }
    
    .vs-compare-box{
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    .compare-item{
        width: 80%;        
    }
    .compare-item h3{
        padding: 1rem 2rem;
    }
    .compare-item ul{
        padding: 1rem 2rem;
    }
}

/* Why */
.hp_why{
    padding: 0 var(--sec-x) var(--sec-y);
}
.hp_why .title-style{
    margin-bottom: 3rem;
}
.why-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-item{
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #dbdbdb;
    border-radius: 9999px;
    padding: 0.65rem .75rem;
}
.why-icon{
    min-width: 100px;
    max-width: 100px;
}
.why-title{
    font-size: clamp(1rem, 1.55vw, 1.55vw);
    font-weight: 800;
    text-transform: uppercase;
}

@media(max-width:1200px){
    .why-item{
        gap: 1rem;
    }
    .why-icon{
        min-width: 80px;
        max-width: 80px;
    }
}

@media(min-width:576px) and (max-width:91px){
    .why-item:last-child{
        grid-column: span 2;
        margin: auto;
    }
}

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

@media(max-width:576px){
    .why-list{
        grid-template-columns:repeat(1, 1fr);
        gap: 1rem;
    }    
    .why-item{
        width: 90%;
        margin: auto;
    }
}

/* product */
.hp_product{
    background: url(https://cdn1.npcdn.net/images/our_prd_bg_big_5pkgot_1781244808.jpg?md5id=ececf8310d5c47ae7dbdf1cda6163c72&new_width=1600&new_height=681&type=4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding-top: var(--sec-y);
    padding-left: var(--sec-x);
}
.product-wrapper{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}

.product-left-box{
    width: 50%;    
}
.product-left-box .title-style{
    margin-left: 5%;
    margin-bottom: 2%;
}
.product-img-frame{    
    margin-right: -10%;    
    position: relative;
    z-index: 1;
}

.product-right-box{
    width: 50%;    
    position: relative;
}
.product-right-box .main-btn{
    position: absolute;
    bottom: 10%;
    left: 0;
}

.product-bottom-box{
    flex: 0 1 100%;
    max-width: 100%;
    display: flex;    
    gap: 2rem;
    padding-top: 3rem;
    padding-right: var(--sec-x);
}
.product-bottom-box .line{
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    margin-top: 4px
}
.product-title-style{
    color: #fff;    
    white-space: nowrap;
    font-size: clamp(2.5rem, 3.2vw, 3.2vw);
    font-family: var(--title-font);
    font-weight: 400;
    opacity: .6;
    line-height: .72;
    
    span{
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-stroke: 1px #fff;
        opacity: .6;
    }
}

@media(max-width:991px){
    .hp_product{
        background-attachment: none;
    }
}

@media(max-width:768px){
    .product-left-box{
        width: 100%;
        padding-right: var(--sec-x);
/*         margin-bottom: 2rem; */
    }
    .product-img-frame{
        margin-right: 0;
    }
    
    .product-right-box{
        width: 97%;
        margin-top: -14%;
        margin-left: auto;
    }
}

@media(max-width:576px){
    .product-title-style{
        font-size: 2.25rem;
    }
}

/* Brand */
.hp_brand{
    padding: var(--sec-y) calc(var(--sec-x) - 7%);
}
.brand-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .7rem;
}
.brand-item{
    border: 1px solid rgba(0,0,0,.5);
    transition: all .3s linear;
}
.hp_brand .title-style{
    margin-bottom: 3rem;
}

.brand-item:hover{
    border-color: transparent;
    transform: scale(.9);
}

@media(Max-width:991px){
    .brand-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(Max-width:768px){
    .hp_brand{
        padding: var(--sec-y) var(--sec-x);
    }
    .brand-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* News */
.index_wrapper_8{
    padding: 0 var(--sec-x) var(--sec-y)
}
.hp_news{
    margin-bottom: 3rem;
}

.latest_new_type2 .news_box .date{
    background: #666;
}
.latest_new_type2 .news_box .date .date_frame .date_content{
    margin-top: .15rem;
}
.latest_new_type2 .news_box .content h6{
    color: #333;
    font-size: clamp(.85rem, 1vw, 1vw);
}

.latest_new_type2 .slick-arrow{
    display: none !important;
}

.latest_new_type2 .news_box{
    padding: 0 1rem !important;
}

/* Faq */
.hp_faq{
    padding-right: var(--sec-x);
    padding-bottom: calc(var(--sec-y) + 70px);
}
.faq-wrapper{
    display: flex;
    align-items: center;
}
.faq-content{
    min-width: 25%;
    margin-left: 6rem;
}
.faq-content .content{
    margin-bottom: 3rem;
}
.faq-content .title-style:after{
    display: block;
    content: "";
    width: 30%;
    height: 3px;
    background: #000;
    margin: 1.5rem 0;
}

@media(max-width:1200px){
    .faq-content{
        min-width: 30%;
        margin-left: 4rem;
    }
}

@media(max-width:991px){
    .faq-content .title-style:after{
        margin: 1rem 0;
    }    
    .faq-content .content{
        margin-bottom: 2rem;
    }
}

@media(max-width:768px){
    .faq-wrapper{
        flex-direction: column;
    }
    .faq-content{
        margin-left: 0;
    }
    .faq-content .title-style:after{
        width: 50px;
    }    
    .faq-frame{
        margin-bottom: 3rem;
    }
}

@media(Max-width:576px){
    .faq-content{
        margin: 0 var(--sec-x);
    }
}

/*Contact*/

.index_wrapper_10 {
  background: url(https://cdn1.npcdn.net/images/cta_bg1_b08mxf_1781248349.png?md5id=ececf8310d5c47ae7dbdf1cda6163c72&new_width=1470&new_height=521&type=4);  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; 
  width: 90%;
  margin: auto;
  border-radius: 60px;  
  position: relative;
  z-index: 1;
}
.row.outerRow_10{
  padding: 0 calc(var(--sec-x) - 5% + 9px);
}
#main_index .ex_hpcontact_formonly .subtitle{
  display: none;
}
#main_index .ex_hpcontact_formonly{
  margin: 0;
}
#main_index .ex_hpcontact_formonly .form-control{
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding: .35rem 0
}
#main_index .ex_hpcontact_formonly .form-control:placeholder{
  color: #000;
  opacity: 1;
}
#main_index .ex_hpcontact_formonly .btn-primary{
  background: transparent !important;
  color: #000;
  border-radius: 0;
  border-width: 2px;
  font-size: clamp(.7rem, 1vw, 1vw) !important;
  padding: 10px !important;
  
  i{
    margin-right: .25rem;
  }
}

#index_10{
  background: #e5e5e5;
  padding: 2rem 3rem !important;
  border-radius: 2rem;
  margin-top: -70px;
  margin-bottom: 70px;
  flex: 0 0 45%;
  max-width: 45%;
}

#index_11{
  display: grid;
  place-content: center;  
  flex: 0 0 55%;
  max-width: 55%;
}
.contact-wrapper{
  padding-left: 7rem;
  padding-right: 4rem;
}
.contact-wrapper .title-style:after{
  display: block;
  content: "";
  width: 80px;
  height: 2px;
  background: #fff;
  margin: 1rem 0 1.5rem;
}
.contact-wrapper .content{
  margin-bottom: 2rem;
}

@media(max-width:1200px){
    #index_10{
        flex: 0 0 50%;
        max-width: 50%;
    }
    #index_11{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .contact-wrapper{
        padding-left: 4rem;
        padding-right: 0rem;
    }
}

@media(max-width:768px){    
    .row.outerRow_10{
        flex-direction: column-reverse;
        padding: 3rem var(--sec-x);
    }
    #index_10,
    #index_11{
        flex: 0 0 100%;
        max-width: 100%;
    }    
    #index_10{
        margin: 0;
    }
    .contact-wrapper{
        width: 85%;
        margin: auto;
        margin-bottom: 3rem;
        padding: 0;
        text-align: center;
    }
    .contact-wrapper .title-style::after{
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:576px){
    .index_wrapper_10{
        width: 100%;
        border-radius: 0;
    }
}

/*Footer*/
.footer_type10 .logo{
  padding-top: 50px;
  min-height: 50px;
}
.footer_type10 .logo img{
  width: 90%;
  filter: invert(1);
}
.footer_type10 .text{
  color: #ddd !important;
  font-size: clamp(.82rem, .9vw, .9vw);
  font-weight: 300;
}
.footer_type10 a{
  color: #ddd;
  font-size: clamp(.82rem, .9vw, .9vw);
  
  &:hover{
    color: #fff !important;
  }
}
.footer_type10 .sub_title p{
  font-size: clamp(1rem, 1.4vw, 1.4vw);
}
.footer_type10 .social_media{
  margin-top: 0 !important;    
}

@media(max-width:1200px){
    .footer_type10 .logo{
      padding-top: 60px;
      min-height: 60px;
        
        img{
            width: 60%;
        }
    }
}