/* Overall */
#main_index{
    overflow: hidden;
    padding-bottom: 0px !important;
}
a:hover{
    text-decoration: unset;
}
:root{
    --red-color: #d23030;
    --green-color: #83b735;
}

/*Btn*/
.main-btn{
  background: #fff;
  color: #83b735 !important;
  font-size: .95rem !important;
  font-weight: 700;  
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all .3s linear;
  border-radius: 0;
  padding: clamp(.35rem, .4vw, .4vw) clamp(1.25rem, 3vw, 3vw);
}
.main-btn img{
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.main-btn.solidColor{
  background: #83b735;
  color: #fff !important;
  margin: auto;
  margin-top: 1.5rem;
}
.main-btn.solidColor .subtitle-icon{
  filter: brightness(0) invert(1);
}

.main-btn:hover .subtitle-icon{
    animation: swing 1s linear;
    transform-origin: bottom left;    
}
.main-btn:hover{
    padding-left: 1.35rem;
    padding-right: 1.35rem;
    background: #1a1a1a;
}

/*title*/

.hp_award .title-box h6,
.hp_brand .title-box h6{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.85rem;
    
    &:before{
        display: inline-flex;
        content: "";
        width: 30px;
        height: 1px;
        background: #a9cb75;
    }
    
    &:after{
        display: inline-flex;
        content: "";
        width: 30px;
        height: 1px;
        background: #a9cb75;
    }
}

p.content{
  font-size: .95rem;
}
.title-box h6{
  color: #1a1a1a;
  font-size: .95rem;  
  font-weight: 700;
}
.subtitle-icon{
  width: 1rem;    
}
@keyframes subtitle{
    0%{
        transform: translate(0px, 0px);        
    } 
    20%{
        transform: translate(-10px, 10px)
    }
    40%{
        transform: translate(-10px, 10px) rotateZ(30deg);
    }
    60%{
        transform: translate(-4px, 4px) rotateZ(-30deg);
    }
    80%{        
        transform: translate(-4px, 5px) rotateZ(40deg);        
    }    
}
.title-box h2{
  font-size: 2.35rem;
  font-weight: 700;
  margin-top: .35rem;
    
    span{
        color: var(--green-color);
    }
}

@media(max-width:768px){
    .title-box h6{
        font-size: .85rem;
    }
    .subtitle-icon{
        width: .85rem;
    }
    .title-box h2{
        font-size: 1.85rem;
        margin-top: .75rem;
    }
}

/*topspace*/
.industry_topContact {
    background-color: var(--green-color);
}
.ts-row{
    display: flex;
    justify-content: space-between;
    padding: .5rem calc(8% - 25px);
}

.industry_topContactContent a{
    color:#fff;
    text-decoration: none;
    font-weight: 700;
}
.industry_topContactContent a img{
    width: 15px;       
    margin-right: .65rem;
}

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

.industry_topContactText {
    font-size: .8rem;
    color: #fff;
    /*cursor: pointer;*/
}

.ts-row .socialList{
    display: flex;
    gap: .75rem;    
}
.ts-row .socialList img{
    width: 20px;
    background: #fff;
    border-radius: 50%;
    padding: .2rem;
}

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

/*nav*/
.navbar_type8 {
    background-color: #fff;
    position: absolute;
    height: fit-content;
    padding: 0.7rem 0;
}
.dark_nav{
    background-color: #fff !important;
    position: fixed;
}
.navbar_type8 .logo{
    flex: unset;
    min-width:25vw;
    margin-left: 7rem;
    
    img{
        width: 100%;
        padding: 0;
    }
}
.navbar_type8 .nav_tab {
    flex: unset;
    width: 100%;
    margin: auto;
    padding-right: 7rem;
    gap: 2.2rem;
}
.navbar_type8 .nav_tab .nav_item::before {
    top: 110%;
    border-bottom: 3px solid #4b4b4b;
    display: none;
}
.navbar_type8 .nav_tab .active {
    color: #000 !important;
}
.navbar_type8 .nav_tab .nav_item a{
    color: #000;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);
    font-weight: 700;
    padding: 15px 0px;
    
    &:hover{
        color: var(--red-color);
    }
}
.navbar_type8 .nav_tab .nav_item{
    text-transform: capitalize;
    
    &:nth-last-child(4){
        background: var(--red-color);
        
        a{
            color: #fff;
            padding: clamp(.35rem, .45vw, .45vw) clamp(.75rem, .85vw, .85vw);
        }
        
        &:hover{
            background: var(--green-color);
        }
    }
}
.navbar_type8 .nav_tab .dropdown .dropdown-menu .dropdown-item a:hover{
    color: var(--red-color) !important;
}

.editor {
    position: relative;
    z-index: 999;
    border-bottom: 1px solid;
}
.editor a:hover{
    text-decoration: none;
    color: #fff !important;
}
.topcontact{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.topicon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.topicon.scroll_menu {
    position: fixed;
    z-index: 9999;
    top: 14px;
    right: 20%;
    width: auto;
}
.topicon > div{
    margin-right: 25px;
}
.editor .login .dropdown-menu {
    z-index: 1;
    background-color: transparent;
    top: 20px;
    border: none;
    -webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    right: auto;
    left: 0;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: left;
    position: absolute;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    list-style: none;
    background-clip: padding-box;
    border-radius: .25rem;
}
.editor .login .dropdown-menu .dropdown-item a {
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: transparent;
    padding: 0.5rem 1rem !important;
    color: #fff;
    font-size: 14px;
}
.editor .login .dropdown-menu .dropdown-item a:hover{
    text-decoration: none;
    background: #454343;
}
.editor .login .dropdown-menu .dropdown-item {
    background-color: rgba(75, 75, 75, 0.9);
    display: flex;
    flex-direction: column;
    max-width: 350px;
    min-width: 150px;
    padding: 0;
}
.editor.login:focus .dropdown-menu, .editor .login:hover .dropdown-menu {
    display: block;
}
.editor .login {
    max-width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
    display: flex;
    position: relative;
}
.editor .shopping{
    margin-right: 0px;
    display: flex;
}
.editor .shopping > a {
    display: flex;
    padding: 0 !important;
}
.editor .shopping > a:hover{
    text-decoration: none;
}
.editor .shopping .fa-shopping-cart, .editor .fa-user, .editor .fa-search{
    font-size: 22px !important;
    color: #4b4b4b;
}
.editor .shopping .bi-cart3, .editor .bi-person-plus, .editor .bi-search{
    color: #4b4b4b;
}
.editor .shopping .bi-cart3{
    font-size: 18px;
}
.editor .bi-person-plus{
    font-size: 20px;
}
.editor .bi-search{
    font-size: 15px;
}
.editor .topicon.scroll_menu .shopping .fa-shopping-cart, .editor .topicon.scroll_menu .fa-user, .editor .topicon.scroll_menu .fa-search{
    font-size: 20px !important;
}
.editor .shopping .badge {
    font-size: 90%;
}
.nav_search {
    flex-grow: 1;
    display: flex;
    max-width: 100%;
    align-self: center;
    margin-bottom: -5px;
    border: 1px solid #e0dede;
    box-shadow: 0px 0px 7px rgb(191 191 191 / 65%);
}
.editor .scroll_menu .nav_search{
    border: none;
}
.nav_search input {
    background: rgba(240, 242, 245, 1);    
    height: 45px;
    border: 0;
    box-shadow: none;
    padding: 5px 25px 5px 25px;
    border-radius: 0;
    max-height: 45px;
}
.nav_search input::placeholder{
    color: #1a1a1a;
    position: relative;    
}
.nav_search .search_button {
    background-color: #fff;
    color: black;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 15px;
    max-height: 45px;
}
.boxSearch .fa-search{
    font-size: 18px !important;
}
.dark_nav.sticky-search{
    margin-top: 60px;
}
.btnSearch {
    position: relative;
    z-index: 999;
    cursor: pointer;
    transition: all .43s ease-in-out;
    color: #000;
}
.boxSearch {
    display: none;
    position: absolute;
    top: 70px;
    right: -15px;
}
.scroll_menu .boxSearch {
    display: none;
    position: absolute;
    top: 60px;
    left: -265px;
    width: 300px;
}
.btnClose .bi-search:before {
    content: "\f62a";
    font-size: 24px;
    vertical-align: bottom;
    margin-right: -5px;
}
.editor .scroll_menu .btnClose .fa-search:before{
    font-size: 20px;
}
.editor .scroll_menu .boxSearch .bi-search{
    transition: all .3s ease;
}
.editor .fa-search{
    line-height: 24px;
}
.nav_search .search_button:hover .bi-search{
    color: #b7b7b7;
}
.nav_search .search_button:focus{
    outline: none;
}
/* .dark_nav .nav_tab {    
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
    padding-right: 250px;
} */
.dark_nav .topicon.scroll_menu{
    top: 15px;
}
#main_index .m_editor{
    display: none;
}
.m_editor{
    display: none;
}


.navbar_type8 .nav_tab .dropdown .dropdown-menu .dropdown-item{
    background: rgba(255, 255, 255, .85)
}

@media(max-width:1260px){
    .navbar_type8 .logo{
        margin-left: 3rem;
    }
    .navbar_type8 .nav_tab{
        padding-right: 3rem;
    }   
}

@media(max-width:1088px){
    .navbar_type8 .logo{
        min-width: 15vw;
    }
}

@media(max-width:991px){
  #top_spacing{
    height: 80px !important;
  }  
}


/*Banner*/
.hp_banner{
  height: 100%;
  display: flex;
  align-items: end;  
}
.b_content{
  padding: 0 0 6rem 6rem;
  width: 40%;
}
.b_content h2{
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
.b_group{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.b_line_group{
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 14%;  
}
.b_line_group .line{
  display: block;
  content: "";  
  width: 100%;
  height: 7px;
  background: #11a87c;
}
.b_content h5{
  background: #000;
  color: #fff;
  margin: 0;
  padding: .2rem 1rem;
  font-weight: 700;
  font-size: 1.5rem;
}

@media(max-width:1250px){
    .b_content h2{
        font-size: 2.25rem;
    }
    .b_content{
        width: 50vw;
    }
}

@media(max-width:991px){
    .b_content{
        padding: 0 0 10vw 10vw;
    }
    .b_content h2{
        font-size: 4vw;
    }
    .b_content h5{
        font-size: 2vw;
        padding: .3vw 1vw;
    }
    .b_line_group{
        width: 5vw;        
    }
    .b_line_group .line{
        height: 5px;
    }
}

@media(max-width:768px){
    .slider_banner .item > img{
        min-height: 300px;
        object-fit: cover;
    }
    .b_content{
        width: 60vw;
    }
    .b_content h2{
        font-size: 5.5vw;
    }
    .b_content h5{
        font-size: 3vw;
        padding: .3vw 1vw;
    }
    .b_line_group{
        width: 5vw;        
    }
    .b_line_group .line{
        height: 4px;
    }
}

@media(max-width:468px){
    .b_content{
        width: 90vw;
        margin: 0 auto;
        margin-bottom: 1rem;
    }
    .b_content h2{
        font-size: 8vw;
    }
    .b_content h5{
        font-size: 4vw;
        padding: .3vw 1vw;
    }
    .b_line_group{
        width: 10vw;        
        gap: .25rem;
    }
}

/*Why*/
.hp_why{
  background: #83b735;
  padding: 4rem 0;
}
.why-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 90vw;
    margin: auto;
}
.why-box{
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;    
  cursor: default;
}
.why-box h3{
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;    
}
.why-icon{
  width: 2rem;
}
.why-box:hover .why-icon{
    animation: rubberBand .6s linear;
}

@media(min-width:991px) and (max-width:1200px){
    .why-box h3{
        font-size: 1rem;
    }
}

@media(max-width:768px){   
    .hp_why{
        padding: 3rem 0;
    }
    .why-list{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 90%;
        margin: auto;
    }
    .why-box{
        justify-content: left;
    }
    .why-box h3{
        font-size: 1rem;
    }
}

/* Brand */
.hp_brand:hover .title-box .subtitle-icon{
    animation: subtitle 4s cubic-bezier(.45,.05,.55,.95) infinite;
}
.product-box{
    position: relative;
}
.product-bg {
  width: 80%;
  margin: auto;
  transition: all .3s linear;
  
  &:hover{
      transform: scale(1.05);
  }
}
.product-bg img{
    width: 100%;
}
.product-title{
/*     position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #000;
    font-size: clamp(1rem, 1.65vw, 1.65vw);
    font-weight: 700;
    margin-bottom: 1vw;
    transition: all .3s linear;
    text-transform: uppercase;
}
.product-box:hover h3{
    transform: translateY(-10px);
}

@media(max-width:1200px){
    .product-title{
        font-size: 1rem;
    }
}

@media(max-width:991px){
    .hp_brand{
        padding: 0 15px;
    }
}

@media(max-width:768px){
    .product-title{
        font-size: 1.5rem;
        margin-bottom: 4vw;
    }
    .product-outer:nth-child(2){
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media(max-width:468px){
    .product-title{
        font-size: 1.15rem;        
    }
}

/*Product*/
.hp_product_brands {  
  padding: 5rem 0;
}
.index_wrapper_5:hover .title-box .subtitle-icon{
    animation: subtitle 4s cubic-bezier(.45,.05,.55,.95) infinite;
}
.productSlider-4 .product_img .product_box{
  padding: 2rem !important;
}
.productSlider-4 .product_img .product_box:hover{
    transform: translateY(10px);
}
.productSlider-4 .product_img .product_box .content_button{
    width: 100% !important;
}
.productSlider-4 .product_img .product_box .content{
  text-align: center !important;
}

.brands-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 92%;
  margin: auto;
  padding-top: 2rem;
}
.brands-logo{
  padding: 0 2.5rem;
}

.vm-box {
  text-align: center;
  width: 80%;
  margin: auto;
}
.vm-box h3{
    color: var(--green-color);
    font-weight: 700;        
}
.vm-box p{
    color: #777
}

@media(max-width:991px){
    .productSlider-4 .product_img .product_box{
      padding: 1.5rem !important;
    }
    
    .vm-outerbox:first-child{
        margin-bottom: 1rem;
    }
    
    .brands-logo{
      padding: 0 1.15rem;
    }
}

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

@media(max-width:468px){
    .brands-logo{
        padding: 0 1rem;
    }
}

/*Awards*/
.hp_award .title-box {
    margin-bottom: 2rem;                    
}
.index_wrapper_6 {
  padding: 5rem 0;
    background: linear-gradient(to bottom, #f3f3f3 82%, #fff 82%)
}
.index_wrapper_6:hover .subtitle-icon{
    animation: subtitle 4s cubic-bezier(.45,.05,.55,.95) infinite;
}

.award-logo{
    width: 18rem;
    margin: auto;
    margin-bottom: 2rem;
}

.hp_photoGallerySlider_type3 .photo-gallery3,
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box,
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box img{
  padding: 0;  
}
.hp_photoGallerySlider_type3{
  background: unset;
}
.hp_photoGallerySlider_type3 .slick-track{  
  margin: 0px;
  gap: 1rem;
  display: flex;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .outline_box .gallery_box{
    padding-top: 130%;
    background: transparent;
}

.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev{
  left: 0;
  width: 25px;
  height: 25px;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next{
  right: 5px;
  width: 25px;
  height: 25px;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-prev::before {
  background-image: url(https://cdn1.npcdn.net/images/ARROW_LEFT_it73f0_1758774091.png?md5id=b34caaa41c545122c9b31631174b7015&new_width=145&new_height=145&type=4);  
  opacity: 1;
  width: 100%;
  height: 100%;
}
.hp_photoGallerySlider_type3 .photo-gallery3 .slick-next::before {
  background-image: url(https://cdn1.npcdn.net/images/ARROW_RIGHT_xnudpz_1758774091.png?md5id=b34caaa41c545122c9b31631174b7015&new_width=145&new_height=145&type=4);
  opacity: 1;
  width: 100%;
  height: 100%;
  filter: unset;
}

@media(min-width:600px){
    .index_wrapper_6 .container{
        max-width: 100%;
        padding: 0 2.5rem;
    }
}
@media(max-width:600px){
    .award-logo{
        width: 14rem;
    }
}

/* News */
.row.outerRow_7:hover .hp_news .title-box .subtitle-icon{
    animation: subtitle 4s cubic-bezier(.45,.05,.55,.95) infinite;
}

.hp_news .news-content{
    padding-right: 1rem;
}
.hp_news .title-box{
  color: #fff;
  padding-top: 2.5rem;
}
.hp_news .title-box h6{
  color: #fff;
  background: #90be4a;
  border: none;
}
.hp_news .title-box .subtitle-icon{
  filter: brightness(0) invert(1);
}
.hp_news p.content{
  color: #fff;
}

#main_index .latest_new_type4{
    margin-bottom: 0;
}
#main_index .latestnewsAjax .col-lg-4.col-md-6.col-12{
  flex: 0 1 50%;
  max-width: 50%;
  margin-bottom: 0 !important;
}

#main_index .latest_new_type4 .news_box{
  background: transparent;
}
#main_index .latest_new_type4 .news_box .img_frame{
    height: 260px;
}
#main_index .latest_new_type4 .news_box p{
  color: #fff;
  font-weight: bold;
}
#main_index .latest_new_type4 .news_box p:nth-child(3){
    margin-bottom: 0;
}
#main_index .latest_new_type4 .news_box .badge-primary{
  background: #fff;
  color: #83b735;
}
#main_index .latest_new_type4 .news_box .date{
  color: #fff;
}

#main_index .latest_new_type4 .container-fluid > div {
  display: none;
}
#main_index .latest_new_type4 .container-fluid > div.latestnewsAjax {
  display: flex;
}

@media(max-width:991px){
    .outerContainer_7 {
        padding: 0;
    }
}

@media(max-width:768px){
    .hp_news{
        margin-bottom: 2rem;
    }
    .hp_news .title-box{
        padding-top: 0;
    }
    .hp_news .news-content{
        padding: 0;
    }
    
    #main_index .latest_new_type4 .news_box .img_frame{
        height: 200px;
    }
    #main_index #index_8{
        padding: 0 15px !important;
    }
}

@media(max-width:468px){
    #main_index .latestnewsAjax .col-lg-4.col-md-6.col-12{
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/*About*/
.hp_about{  
  padding: 5rem 0;
}
.hp_about:hover .abt-content .title-box .subtitle-icon{
    animation: subtitle 4s cubic-bezier(.45,.05,.55,.95) infinite;
}

.abt-content h1{
  color: #777;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  width: 85%;
  margin: auto;
}
.abt-content .title-box{
  margin-bottom: 1rem;
}


.cert-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 82%;
  margin: 3.5rem auto; 
}
.cert-logo{
  padding: 0 3.35rem;
}

@media(max-width:1200px){
  .cert-logo{
    padding: 0 2rem;
  }
}
@media(max-width:991px){
    .cert-list{
        width: 100%;
    }
  .cert-logo{
    padding: 0 0.2rem;
  }
}
@media(max-width:600px){
  .cert-list{
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }  
}

@media(max-width:468px){
    .abt-content h1{
        width: 95%;
    }
}

/*Video*/
.video-wrapper{
    display: flex;
    gap: 1.5rem;
}
.video-frame {
  position: relative;  
  width: 100%;
  padding-top: 27.65%;
  overflow: hidden;
  margin: auto;
}
.video-frame iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:468px){
    .video-frame {
      width: 100%;
        padding-top: 60%;
    }
}

/* Contact */
.contact-bg{
    width: 100vw;
    height: 500px;
    position: relative;
    top: 0;
    left: 0;
    background: url(https://cdn1.npcdn.net/images/CONTACT_BG_ny03os_1765347180.jpg?md5id=b34caaa41c545122c9b31631174b7015&new_width=1600&new_height=506&type=4);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;    
}
.contact-box{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
    display: grid;
    place-content: center;
    padding: 0 8rem 0 5rem;
    
    ul{
        margin-bottom: 0;
    }
}
.contact-box li:not(:last-child){
    margin-bottom: 1.25rem;
}
.contact-box .title-box{
    color: #fff;
    
    margin-bottom: .5rem;
    h6{
        color: #fff;        
        display: flex;
        align-items: center;
        gap: .5rem;
        
        margin-bottom: 0;
            &:after{            
            content: "";
            display: inline-flex;
            background:#fff;
            width: 1.75rem;
            height: .75px;            
        }
}
}
.c-icon{
    width: 35px;
    height: 35px;
    padding: 6px;
    border: 1px solid #fff;
    border-radius: 50%;    
    display: grid;
    place-content: center;
    aspect-ratio: 1/1;
}
.c-group{
    display: flex;  
    gap: 1rem;
    font-size: clamp(.85rem, 1.05vw, 1.05vw);        
}
.c-info{
    display: flex;
    flex-direction: column;
}
.c-group p,
.c-group b,
.c-group a{
    color: #fff;
    margin-bottom: 0;
}

.c-group a:hover{
    color: var(--green-color);
}

@media(max-width:1200px){    
    .contact-box{
        padding: 0 3rem;
    }
}

@media(max-width:991px){
    .contact-bg{
        background-attachment: unset;
    }    
}

@media(max-width:768px){
    .contact-bg{
        height: 350px;
    }
    .contact-box{
        position: unset;
        width: 100%;
        background: #1a1a1a;
        padding: 3rem 30px;
    }
}

/*Footer*/
.footer_type6{
    background: #373839;
    color: rgba(255, 255, 255, .6);
}
.footer_type6 a{
    color: rgba(255, 255, 255, .6);
    
    &:hover{
        color: rgba(255, 255, 255, .8);
    }
}
.footer_type6 .logo{
    padding-top: 80px;
    
    img{
        min-height: 80px;
        background: #fff;
        padding: 0.7rem;
        border-radius: 1rem;
    }
}

.footer_type6 .input-container input{
    border-color: rgba(255, 255, 255, .6);
    color: rgba(255, 255, 255, .6);
}
.footer_type6 .input-container label{
    color: rgba(255, 255, 255, .6);
    
    &.moveUp{
        opacity: 0;
    }
}
.footer_type6 .input-container .submit{
    color: rgba(255, 255, 255, .6); 
}

.footer_type6 .title h5{
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 700;
}

@media(max-width:568px){
    .footer_type6 .logo{
        padding-top: 60px;

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

/*product*/
.product_list_9 .product_box .wrapper_product_img:hover .img-second {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform .8s linear, opacity .3s linear;
  background: #fff;
}