/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}

/* Btn */
.outlineBtn{
    color: #00ad68;
    border: 1px solid #00ad68;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: .75rem;
    font-size: 1.05rem !important;
    font-weight: 700;
    padding: .55rem 2rem;
    transition: all .3s linear;
}
.outlineBtn i{
    transition: all .3s linear;
}
.outlineBtn:hover{
    color: #fff;
    background: #00ad68;
}
.outlineBtn:hover i{
    transform: translateX(5px);
}


.main-btn{
    background: #00ad68;
    border-radius: 9999px;
    border: none;
    color: #fff;
    font-size: 1rem !important;
    font-weight: 700;
    padding: .65rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: all .3s linear;
}
.main-btn.solidBtn{
    background: #fff;
    color: #00ad68;
}
.main-btn:after{
    position: absolute;
    content: "";    
    background: #efdfc8;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    border-radius: 9999px;
    transition: all .3s linear;
    z-index: -1;
}
.main-btn:hover{
    background: transparent;
    color: #000;
}
.main-btn:hover:after{
    right: 0;
}


@media(max-width:1200px){
    .outlineBtn{
        font-size: .85rem !important;
    }
    .main-btn{
        font-size: .85rem !important;
        padding: .45rem 1.5rem
    }
}

@media(max-width:568px){
    .outlineBtn{
        padding: .55rem 1.75rem;
    }
}

/* Title */
.title-box{
    display: flex;
    align-items: center;
}
h2.title-style{
    color: #00ad68;
    font-size: 2.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
}
.title-box h2.title-style:after{
    display: inline-flex;
    content: "";
    background: #efdfc8;
    width: .35rem;
    height: 3rem;    
    margin: 0 1.75rem;
}
p.content,
h1.content{
    color: #666;    
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 0px;
}

@media(max-width:1200px){
    h2.title-style{
        font-size: 1.85rem;
    }
    p.content,
    h1.content{
        font-size: .9rem;
    }
}

@media(max-width:991px){
    .title-box{
        flex-direction: column;
        align-items: start;
    }
    h2.title-style{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .title-box h2.title-style:after{
        display: flex;
        width: 3.5rem;
        height: .25rem;
        margin: .5rem 0 .65rem;
    }
    h2.title-style{
        font-size: 1.85rem;
    }
    p.content,
    h1.content{
        font-size: .85rem;
    }
}

/*nav*/
.navbar_type8 {
    position: fixed;
    display: flex;
    background-color: rgba(255,255,255,0.9);
    box-shadow:2px 2px 15px rgba(0,0,0,0.4);
    width: 90%;
    height: 80px;
    z-index: 100;
    margin: 0 5%;
    border-radius: 10px;
    top: 5%;
    padding: 0.5rem 0;
}

.dark_nav{
    background-color: rgba(255,255,255,0.9) !important;
}

.navbar_type8 .nav_tab{
    flex: 0 1 90%;
}

.navbar_type8 .nav_tab .nav_item a {
    color: #6d6d6d;
    font-size: 1vw;
    padding: 15px 1vw;
    font-weight: 700;
    transition: all .3s linear;
}

.navbar_type8 .nav_tab .nav_item a:hover{
    color: #00ad68;   
}

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

.navbar_type8 .nav_tab .dropdown .dropdown-menu .dropdown-item a{
    color: #fff !important;
    font-weight: 400;
    text-align:left;
}

.navbar_type8 .nav_tab .dropdown .dropdown-menu .dropdown-item a:hover {
    color: #ccc !important;
}
.navbar_type8 .logo img {
    padding: 0px;
    width: 200px;
}

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

#top_spacing {
  height: 150px !important;
}
#main_index #top_spacing{
    height: 80px !important;
}

@media all and (max-width: 1300px){
    .navbar_type8 .logo {
      flex: 0 1 30%;
      overflow: hidden;
      position: relative;
      margin-left: 15px;
    }
}

@media all and (max-width: 992px){ 
    .navbar_type8{
        display:none;
    }   
    #top_spacing{
        height: 100px !important;
    }
}

/* Slider */
.b_box{
  height: 100%;
}
.b_inner{
  height: 100%;
}
.b-image-wrapper{
  position: relative;
  width: 50%;
  height: 100%;      
  margin-left: 8%;
}
.b-textBehind{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-content: center;
}
.b_phoneProduct{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-content: center;
  width: 65%;
  margin: auto;
    animation: rotating 30s 1s linear infinite;
}

@keyframes rotating{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}
.b_info{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 0 10%;
}
.b_info h2{
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.35;
}
.b_info p{
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2.25rem;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.slick-slider .slick-dots{
    bottom: 10px;
    position: absolute;
}

.slick-dots li{
    margin: 0 8px;
}
.slick-dots li button:before {
  font-family:slick;
  font-size:6px;
  line-height:20px;
  position:absolute;
  top:0;
  left:0;
  width:25px;
  height:8px;
  border-radius: 9999px;
  content:'';
  background: #bcbec0;
  text-align:center;
  opacity:.25;
  color:#000;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale
}
.slick-dots li.slick-active button:before {  
  background: #fff;
}

@media(min-width:991px){
    .slider_banner{
        margin-top: -80px;
    }
}

@media(max-width:1200px){
    .b_info p{
        font-size: .85rem;
    }
}

@media(max-width:991px){
    .b-image-wrapper{
        width: 50%;
        margin-left: 2%;
    }
    .b_info{
        width: 50%;
        padding: 0 5% 0 5%;
    }
    .b_info h2{
        margin-bottom: .5rem;
    }
    .b_info p{
        margin-bottom: 1rem;
    }
}

@media(max-width:600px){
    .slider_banner .item > img{
        min-height: 450px;
        object-fit: cover;
    }
    .b_info h2{
        font-size: 1rem;
    }
    .b_info p{
        font-size: .75rem;
    }
    .b_info .main-btn{
        font-size: .75rem !important;        
    }
    
    .b-image-wrapper{
        width: 70%;
        height: 60%;
        margin: auto;
        z-index:5;
    }
    .b_info{
        width: 100%;
        height: 55%;
        margin-top: auto;      
        text-align: center;
    }    
}

/* About */
.hp_about{
    padding: 6rem 0;
    background: url(https://cdn1.npcdn.net/images/B_about_us_background_image_r306j7_1756187482.png?md5id=b91f9ae1efafed4d85107226536195f3&new_width=1000&new_height=960&type=4);
    background-repeat: no-repeat;
    
}
.abt-content{
    text-align: center;
}
.abt-content h2.title-style{
    justify-content: center;
}
.abt-content h1.content{
    line-height: 1.5;
    padding: 2rem 0 2.5rem;
}

.abt-frame{
    width: 103%;    
    margin-left: 10%;
}

@media(max-width:1200px){
    .abt-content h1.content{
        padding: 1.25rem 0 1.5rem;
    }
}

@media(max-width:991px){
    .hp_about{
        background-size: cover;
        background-position: center;
        padding: 5rem 0;
    }
    .abt-content h2.title-style{     
        align-items: center;        
    }
    .abt-content h1.content{
        line-height: 1.75;
    }
    .abt-content{        
        padding-bottom: 3rem;
    }
    .abt-frame{
        width: 100%;
        margin: 0;
    }
}

/* Services */
.hp_services{
    background: #f5f5f7;
    padding: 6rem 0;
}
.hp_services h2.title-style{
    justify-content: center;
    margin-bottom: 1rem;
}
.service-box{
    text-align: center;
    background: linear-gradient(to top, #e3e5e2, #f5f5f5);
    border-radius: 1.5rem;
    padding: 1.25rem 2rem;
}
.service-icon{
    width: 85%;
    margin: auto;
    margin-bottom: .5rem;
    transition: all .3s linear;
}
.service-box h3{
    color: #6d6d6d;
    font-size: 1.35rem;
    font-weight: 700;    
}
.service-box:hover h3{
    color: #00ad68;
}
.service-box:hover .service-icon{
    transform: translateY(-10px);
}

.service-moreBtn{
    color: #00ad68;
    text-decoration: underline;
    text-underline-offset: .5rem;
    font-size: 1.15rem;  
    font-weight: 700;    
    margin: auto;
    margin-top: 3.5rem;    
}
.service-moreBtn:hover{
    color: #00ad68
}

@media(max-width:1200px){
    .service-box h3{
        font-size: 1.25rem;
    }
}

@media(max-width:991px){
    .hp_services{
        padding: 5rem 0;
    }
    .service-box{
        padding: 1rem 0;
    }
    .service-icon{
        width: 75%;
    }
    .hp_services h2.title-style{
        align-items: center;
    }
    .service-box h3{
        font-size: 1rem;
    }
}

@media(max-width:768px){
    .service-outerbox:not(:last-child){
        padding-bottom: 2rem;
    }
    .service-icon{
        width: 50%;
    }
    .service-box h3{
        font-size: 1.2rem;
    }
}

@media(max-width:468px){
    .service-box h3{
        font-size: 1.1rem;
    }
    .service-moreBtn{
        margin-top: 2rem;
        font-size: 1rem;
    }
}

/* Why */
.hp_why{
    position: relative;
    background: #f5f5f7;
    padding: 5rem 0 5rem;
}
.why-list{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80%;
    height: 50%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    gap: 4rem;
}
.why-box{
    text-align: center;
}
.why-icon{
    width: 5rem;
    margin: auto;
    margin-bottom: 1.5rem;
}
.why-box:hover .why-title{
    animation: rubberBand 1s linear;
}
.why-title{
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

.why-title-locate{
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
}
.why-slogan-locate{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33.5%;
}
.sloganText{
    background: #23977e;
    color: #fff;
    font-size: 1.2vw;
    padding: .85rem 1rem;
    border-radius: .85rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 700;
}

.why-content{
    position: relative;
}
.why-content:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 112%;
    background: url(https://cdn1.npcdn.net/images/D_why_choose_us_logo_xj9ueh_1756191284.png?md5id=b91f9ae1efafed4d85107226536195f3&new_width=610&new_height=810&type=4);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    top: -6%;
    left: -15.5%;
}

@media(min-width:768px){
    .why-wrapper{
        width: 82%;
        margin: auto;
        position: relative;
    }
}

@media(max-width:1400px){
    .why-title-locate h2.title-style{
        font-size: 1.75rem;
    }
}

@media(max-width:1200px){
    .sloganText{
        padding: .65rem 1rem;
        border-radius: .65rem;
    }
    .why-list{
        height: 70%;
        gap: 2rem;
    }
    .why-icon{
        width: 4rem;
    }
    .why-title{
        font-size: .85rem;
    }
}

@media(min-width:768px) and (max-width:991px){
    .why-bg{
        width: 108%;
        margin-left: -4%;
    }
    .why-slogan-locate{
        right: -4%;
        width: 36.4%;
    }
    .sloganText{
        padding: .6rem 1rem;
    }
    .why-title-locate{
        left: -4%;
        width: 100%;
    }
    .why-title-locate h2.title-style{
        font-size: 1.35rem;
    }
    
    .why-list{
        width: 100%;
        gap: 1rem;
    }
    .why-icon{
        width: 3.5rem;
    }
    
    .why-content:before{
        left: -28%;
    }
}

@media(max-width:768px){
    .hp_why{
        padding: 0;
    }
    .why-wrapper{
        display: flex;
        flex-direction: column;
        background: linear-gradient(to right, #00ad68, #23977e);
        padding: 5rem 0;
    }
    .why-bg{        
/*         opacity: 0;         */
        display: none;
    }        
    
    .why-content{
        order: 2;
        padding: 1rem 0;
        height: 400px;
    }
    .why-content:before{
        height: 100%;
        top: 0;        
    }
    .why-list{
        height: 100%;
    }
    
    .why-title-locate{
        width: 100%;     
        position: unset;
        order: 1;
    }
    .why-title-locate h2.title-style{
        color: #fff;
        align-items: center;
    }   
    
    .why-slogan-locate{
        position: unset;
        order: 3;
        width: 80%;
        margin: auto;
    }
    .sloganText{
        color: #00ad68;
        background: #fff;
        font-size: 1.25rem;
        padding: 1rem;
    }
}

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

@media(max-width:468px){
    .why-content{
        height: 550px;
    }
    .sloganText{
        font-size: 1rem;
    }
}

/* Photo */
.index_wrapper_6{
    padding: 5rem 0;
}
.hp_photo .title-box{
    margin-bottom: 4rem;
}
.hp_photoGallerySlider_type3 {
  background-color: transparent;
}

#main_index .index_wrapper_6{
    position: relative;
    padding-bottom:100px;
}

#main_index .index_wrapper_6:before{
    content:'';
    position:absolute;
    z-index:-1;
    bottom:0;
    left:0;
    width:100%;
    height:50%;
    background-image:url(https://cdn1.npcdn.net/images/E_photos_background_image_6ecakv_1756196969.jpg?md5id=b91f9ae1efafed4d85107226536195f3&new_width=2000&new_height=493&type=4);
    background-size:cover;
    background-repeat:no-repeat;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img {
    position: absolute;
    object-fit: cover;
    padding: 0 !important;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box {
    padding: 5px;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
    background: unset;
}

.hp_photo_btn{
    text-align: center;
    margin-top: 2rem;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev{
    left: 5px;
    background: rgba(255, 255, 255, .3);    
    width:30px;
    height: 30px;    
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev::before,
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next::before{
    width: 12px;
    height: 12px;
    opacity: 1;
    filter: invert(1);
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
    right: 5px;
    background: rgba(255, 255, 255, .3);    
    width:30px;
    height: 30px;        
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-dots{
    display: none !important;
}

@media(min-width:768px){
    .hp_photo .title-box{
        width: 95%;
    }
}

@media all and (max-width: 992px){
    
    .hp_photoGallerySlider_type3 .photo-gallery3 {
        padding: 0;
    }
    
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev {
        left: -25px;
    }
    
    .hp_photoGallerySlider_type3 .photo-gallery3 .slick-next {
        right: -25px;
    }   

}

@media all and (max-width: 768px){
    .hp_photoGallerySlider_type3 .container{
        max-width:100%;
    }
    .hp_photo_btn{
        margin-top: 1rem;
    }
    #main_index .index_wrapper_6{
        padding-bottom: 60px;
    }
    #main_index .index_wrapper_6::before{
        height: 42.5%;
    }
}

/* Cta */
.cta-wrapper{
    border-bottom: 2px solid #b0b0b0;    
    width: 88%;
    margin: auto;
}
.cta-box{
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;    
}
.cta-box .col-left{
    width: 65%;
}

@media(max-width:991px){
    .cta-box .col-left{
        width: 50%;
    }
}

@media(max-width:768px){    
    .cta-box{
        padding: 5rem 0;
        flex-direction: column;
        align-items: start;
        gap: 2rem;
    }
    .cta-box .col-left{
        width: 100%;
    }
}

/* Footer */
.footer_type7{
    background: #ffffff;
    color: #555;
}
.footer_type7 a{
    color: #555;    
}
.footer_type7 .navList a{
    text-transform: uppercase;
}
.footer_type7 .title{
    min-height: min-content;
}
.footer_type7 .logo-title{
    min-height: 110px;
}
.footer_type7 .title h5{
    color: #00ad68;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
}
.footer_type7 .logo img{
    max-height: 110px;
}
.footer_type7 .copy_right strong{
    font-size: 100% !important;
}

@media(min-width:768px){
    .footer_type7 .company_des{
        width: 75%;
    }
}