/* Overall */
#main_index{
  overflow: hidden;
  padding-bottom: 0px !important;
}
a:hover{
  text-decoration: unset;
}
:root{
  --primary-color: #4eb749;
  --bcolor: #603814;
  --side-padding: 7rem;
  --bIcon-lineWidth: 22vw;
  --sec-padding: 6rem;
}

@media(max-width:991px){
  :root{
    --side-padding: 3.5rem;
  }
}

@media(max-width:768px){
  :root{
    --bIcon-lineWidth: 25vw;
  }
}

@media(max-width:576px){
  :root{
    --bIcon-lineWidth: 40vw;
    --side-padding: 1rem;
    --sec-padding: 4rem;
  }
}

/* Text */
.title-box{
  display: flex;
  align-items: last baseline;
  font-size: clamp(1.65rem, 2.25vw, 2.25vw);
  gap: 1rem;
}
.big-title-style{
  display: flex;
  gap: .25rem;
  color: var(--bcolor);  
  font-size: 235%;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  
  padding-top: 35px;
  span{
    margin-top: -25%;
  }
}
.title-style{
  color: var(--bcolor);
  font-size: 100%;
  font-weight: 600;
  letter-spacing: 6px;
  margin: 0;
}
.content{
  color: #444;
  font-size: clamp(.87rem, 1.05vw, 1.05vw);
  line-height: 1.75;
  margin: 0;
}

@media(max-width:1200px){
  .big-title-style{
    font-size: 210%;
  }
  .title-style{
    font-size: 90%;
    letter-spacing: 4px;
  }
}

@media(max-width:991px){
  .title-box{
    gap: .75rem;
  }
  .big-title-style{
    font-size: 190%;
  }
  .title-style{
    font-size: 82%;
    letter-spacing: 3px;
  }
}

/* Btn */
.main-btn{
  position: relative;
  display: block;
  color: #fff;
  background: transparent;
  border: none;    
  width: 230px;  
  overflow: clip;
  
  &:focus{
    outline: none;
  }
}
.main-btn .b-wording{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.main-btn .b-wording span{
  transform: translateY(50%);
  transition: all .3s linear;
  font-size: clamp(.95rem, 1.35vw, 1.35vw);
  font-weight: 500;
  letter-spacing: 2px;
  white-space: nowrap;  
  color: #f1f1f1;
  
  &:nth-child(2){
    opacity: 0;
    transform: scaleY(.1);
  }
}
.main-btn:hover .b-wording span{
  transform: translateY(-50%);  
  
  &:nth-child(1){
    opacity: 0;
    letter-spacing: 3px;
    font-weight: 700; 
    transform: scaleY(.1) translateY(-50%);
  }
  &:nth-child(2){
    opacity: 1;
  }
}

@media(max-width:991px){
  .main-btn{
    width: 200px;
  }
  .main-btn .b-wording span{
    font-size: 108%;
  }
}

/*nav*/
.navbar_type10{
  padding: 0;  
  height: 120px;
  background: #f1ebdd;
}
.navbar_type10 .container{
  max-width: 100%;
  padding: 0 var(--side-padding);
}
.navbar_type10 .nav_logo img{
  max-height: 100px;
}
.nav_bottom .container {
  max-width: 100%;
  padding: 0 var(--side-padding) !important;
  background: #f1ebdd;
}
.nav_contact{
  align-self: center;
}
.nav_contact .contact-box{
  display: flex;
  gap: .5rem;
  align-items: center;
}
.nav_contact .contact-details a{
  color: #1a1a1a;
  font-size: clamp(.85rem, 1vw, 1vw);
  font-weight: 400;
  white-space: nowrap;
  font-family: "poppins";
}
.nav_contact .c-icon{
  font-size: clamp(.85rem, 1vw, 1vw);
  color: var(--primary-color);
}
.nav_contact .contact-details a:hover{
  color: #009f81;
}
.navbar_type10 .nav_search{
  max-width: 47vw;  
}
.navbar_type10 .nav_search input{
  padding: 1rem 0 1rem 1rem;
  border-radius: 50px 0 0 50px;
  background: #f5f5f5;
}
.navbar_type10 .nav_search input::placeholder{
  color: #000;
  font-size: .9rem;
}
.navbar_type10 .nav_search .search_button{
  padding: 0 20px;
  border-radius: 0 50px 50px 0;
  background: var(--primary-color);
}
.navbar_type10 .nav_search .search_button i{
  color: #fff;
}
.nav_bottom .menu .nav_item{
  padding: 1rem 0;
}
.nav_bottom .menu .nav_item .dropdown a{
  color: #555;
  font-size: clamp(.85rem, 1.05vw, 1.05vw);
  font-weight: 400;
  padding: 0 .45rem .05rem .45rem;
}
.nav_bottom .menu .nav_item .dropdown a{    
  border-bottom: 2px solid transparent;
  transition: all .3s linear;
  
  &:hover{
    border-color: var(--primary-color);
  }
}
.nav_bottom .menu .nav_item:hover{
  background: transparent;
}
.nav_bottom .menu{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 45%;
}

.social_media {
  align-self: center;
}
.social_media a{
  font-size: 1.25rem;
  color: #fff;
}
.social_media a:hover{
  color: #f18009;
}

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

.email-group {
  width: max-content;
}

.navbar_mobile{
  background: #f1ebdd;
}

/* Banner */
.hp_banner{
  position: relative;
  height: 100%;
}
.banner-content{
  display: grid;  
  place-content: center;
  height: 100%;
}
.banner-content .title-box{
  display: flex;
  align-items: last baseline;
  justify-content: center;
  gap: 3rem;
}
.banner-content .title-box h2{
  color: var(--bcolor);
  font-size: clamp(5.5rem, 11vw, 11vw);
  font-weight: 700;  
  display: flex;
  line-height: 1;
  
  span{
    margin-top: -15%;
  }
}
.banner-content .title-box h3{
  color: var(--bcolor);
  letter-spacing: 4px;
  font-size: clamp(1rem, 1.85vw, 1.85vw);
  font-weight: 600;
  margin: 0;
}
.b-icon{  
  margin: 2rem auto 2.5rem;
  display: flex;  
  align-items: center;
  gap: 1rem;  
    
  &:before{
    display: inline-flex;
    content: "";
    width: calc(var(--bIcon-lineWidth) - (50px/2) - 1rem);
    height: 1.5px;
    background: var(--bcolor);    
    opacity: .5;
  }
  
  &:after{
    display: inline-flex;
    content: "";
    width: calc(var(--bIcon-lineWidth) - (50px/2) - 1rem);
    height: 1.5px;    
    background: var(--bcolor);    
    opacity: .5;
  }
}
.item .b-icon img{
  width: 50px !important;
  animation: iconRotatingAnim 30s linear infinite;
}

@keyframes iconRotatingAnim{
  0%{
    transform: rotateZ(0);
  }
  100%{
    transform: rotateZ(360deg);
  }
}

.banner-pic{
  position: absolute;
  bottom: -7%;
  right: 0%;
  width: 39%;
}

@media(min-width:576px) and (max-width:768px){
  .banner-content{
    place-content: center left;
    padding-left: 7rem;
  }
}

@media(max-width:991px){
  .banner-content .title-box{
    gap: 1.5rem;
  }
  .item .b-icon img{
    width: 40px !important;
  }
}

@media(max-width:768px){
  .slider_banner .item > img{
    min-height: 70vw;
    object-fit: cover;
  }  
  .banner-content .b-icon{
    margin: 2rem auto 1.5rem;        
  }
    
  .banner-pic{
    width: 50%;
  }
}

@media(max-width:576px){
  .hp_banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
  }
  
  .banner-content{
    height: fit-content;
    padding-top: 5%;
  }
  
  .banner-pic{
    position: unset;
    width: 60%;
  }
}

/* About */
.hp_about{
  background: url(https://cdn1.npcdn.net/images/B_Background_inx1oa_1775704102.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1744&new_height=994&type=4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: calc(var(--sec-padding) * 1) calc(var(--side-padding) / 2) calc(var(--sec-padding) * 2) var(--side-padding);
  position: relative;
  
  &:after{
    position: absolute;
    content: "";
    width: calc(100% - (var(--side-padding) * 2));
    height: 1.5px;
    background: var(--bcolor);
    opacity: .25;
    bottom: var(--sec-padding);
    left: var(--side-padding);    
  }
}

.abt-frame{
  animation: iconRotatingAnim 180s linear infinite;
}

@media(min-width:768px){
    .hp_about .row .col-12:nth-child(1){
      flex: 0 1 55%;
      max-width: 55%;
      padding-right: 30px;
    }
    .hp_about .row .col-12:nth-child(2){
      flex: 0 1 45%;
      max-width: 45%;
    }
}

@media(max-width:991px){
  .hp_about{
    padding: var(--sec-padding) var(--side-padding);        
    
    &:after{
      bottom: 0;
    }
  }  
}

@media(max-width:768px){
  .abt-content{
    margin-bottom: 3rem;
  }  
}

@media(min-width:576px) and (max-width:768px){
  .abt-frame{
    width: 75%;
    margin: auto;
  }
}

/* Service */
.index_wrapper_4{
  background: url(https://cdn1.npcdn.net/images/C_Background_a4z78d_1775706158.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=836&type=4);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 0 var(--side-padding) calc(var(--sec-padding) * .8);
}
.productSlider-4 .product_img .product_box{
  background: none;
  transition: all .3s linear;
  
  &:hover{
    transform: translateY(10px);
  }
}
.productSlider-4 .product_img .product_box .product_img_frame img:nth-child(2){
/*   display: none; */
}
.productSlider-4 .product_img .product_box .content_button{
  width: 100% !important;  
}
.productSlider-4 .product_img .product_box .content{
  text-align: center !important;
}
.productSlider-4 .product_img .product_box .product_title{
  color: var(--bcolor);
  font-size: clamp(1.2rem, 1.45vw, 1.45vw);  
  font-weight: 700;
  margin-bottom: 5px;
}
.productSlider-4 .product_img .product_box .product_price a{   
  font-size: clamp(.97rem, 1.1vw, 1.1vw);
  font-weight: 500;
  color: var(--primary-color);
}

@media(max-width:991px){
  .index_wrapper_4{
    padding-top: var(--sec-padding);
  }
}

/*Faq*/
.hp_faq{
  background: url(https://cdn1.npcdn.net/images/D_Background_lydj2u_1775707232.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=1050&type=4);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: var(--sec-padding) var(--side-padding) var(--sec-padding);
}
.hp_faq .title-box{
  margin-bottom: 4rem;
}
.accordion-wrapper {
    overflow: hidden;
}
.accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 5px;
}
.accordion input{ 
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion:last-child{
    margin-bottom: 0;
}
.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0px 0px;    
    padding-right: 80px;
    font-weight: bold;
    cursor: pointer;
    color: var(--bcolor);        
    font-size: clamp(1.25rem, 1.55vw, 1.55vw);
    line-height: 1.25;
    align-items: center;
    /*! border-bottom: 1px solid #000; */
    
    span{
        font-weight: 800;
        font-size: 160%;
        width: 60px;
        margin-right: 2rem;
    }
}
.label-head{
    display: flex;
    width: 100%;
    align-items: last baseline;
}
.accordion-label:hover {
    background: transparent;   
    
    span{
        color: var(--primary-color);
    }
}
.accordion-label::after {
    content: "\f078";
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-style: normal;
    font-family: "Font Awesome 5 Free";
    font-size: 1.15rem;
    margin-top: 10px;
}
.accordion-content {
    max-height: 0;
    padding: 0 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--bcolor);
}
.accordion-content p{
    margin-left: 5rem;
    color: var(--bcolor);
}
input:checked + .accordion-label {
    border-bottom: unset;
    color: var(--bcolor);
}
input:checked + .accordion-label::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center;
    /*! margin-top: 8px; */    
}
input:checked ~ .accordion-content {
    max-height: fit-content;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--bcolor);
}
input:checked + .accordion-label .label-head{
    width: 100%;
}

.ac-content p{
  font-size: clamp(.9rem, 1.2vw, 1.2vw);
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 0;
  padding-right: 80px;
}

@media(max-width:1200px){
  .accordion-label{
    padding-right: 50px;
  }
  .accordion-label span{
    margin-right: 0;
  }
  .accordion-content p{
    margin-left: 60px;
    padding-right: 50px;
  }
}

@media(max-width:991px){
  .faq-main{
    width: 75%;
  }
    input:checked + .accordion-label{
        padding-bottom: 0rem;
    }
    .accordion-label{
        padding: .75rem 0;
    }
    .label-head{
        width: 90%;
        align-items: center;
    }
}

@media(max-width:768px){
  .hp_faq .title-box{
    margin-bottom: 3rem;
  }
  
  .faq-main{
    width: 100%;
  }
  
  .accordion-label{
  }  
}

@media(max-width:576px){
    .accordion-label{                
  padding-left: 10px;
            span{
            min-width: 70px;
            max-width: 70px;
        }
}
  .accordion-content p{
    margin-left: 30px;
    padding-right: 30px;
  }
}

@media(max-width:468px){
  .accordion-label{
    padding: 20px 15px 20px;
    font-size: 1rem;
  }
}

/* Why */
.hp_why{
  background: url(https://cdn1.npcdn.net/images/E_Background_m3gbws_1775716264.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=974&type=4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: var(--sec-padding) var(--side-padding);
}
.hp_why .title-box{
  margin-bottom: 4rem;
}

.why-ebox{
  padding: .5rem;
}

.why-icon{
  position: relative;  
  width: 40%;
  margin: auto;  
  margin-bottom: -20%;
  z-index: 1;
  
  img.hover-state{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s linear;
  }
}

.why-content{
  position: relative;  
  
  img.hover-state{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s linear;
  }
  
  .why-info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 2rem 2.5rem;
    color: #fff;
  }  
}

.why-info h3{
    font-size: clamp(.85rem, 1.4vw, 1.4vw);
  font-weight: 600;
  margin-bottom: 1rem;
  cursor: default;
}

.why-info p{
  color: #ddd;
  font-size: clamp(.75rem, .82vw, .82vw);
  font-weight: 500;
  line-height: 1.75;
  margin: 0;
  cursor: default;
}

.why-box:hover{
  position: relative;
  animation: swing 1s linear;
  transform-origin: top;    
  z-index: 1;
}
.why-box:hover .why-icon img.hover-state,
.why-box:hover .why-content img.hover-state{
  opacity: 1;
}

@media(max-width:1200px){
  .hp_why .row:nth-child(2){
    padding: 0 120px;
  }
}

@media(max-width:991px){
  .hp_why .row:nth-child(2){
    padding: 0 60px;
  }
  .why-info h3{
    font-size: 118%;
  }
}

@media(max-width:768px){
  .why-content img{
    transform: rotateZ(90deg);
    width: 80%;
    margin-left: 10%;
  }
  .why-content .why-info{
    width: 80%;
    margin-left: 10%;
  }
  .why-info h3{
    font-size: 130%;
  }
  .why-info p{
    font-size: 85%;
  }
  
  .why-icon{
    width: 30%;
  }
}

@media(max-width:600px){
  .hp_why .title-box{
    margin-bottom: 3rem;
  }
    
  .why-content img{
    width: 90%;
    margin-left: 5%;
  }
  .why-content .why-info{
    width: 90%;
    margin-left: 5%;
  }
  
  .why-icon{
    width: 40%;    
    margin-bottom: -25%;
  }
}

@media(max-width:468px){
  .hp_why .row:nth-child(2){
    padding: 0 15px;
  }
   .why-content img{
    width: 100%;
    margin-left: 0;
  }
  .why-content .why-info{
    width: 100%;
    margin-left: 0%;
    padding: 2rem;
  }
}

/* Google Review */
.index_wrapper_7{
  background: url(https://cdn1.npcdn.net/images/F_Background_wu59i0_1775718485.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=707&type=4);
  background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  padding: calc(var(--sec-padding) * .5) var(--side-padding) 0;
}

/* News */
.index_wrapper_8{
  background: url(https://cdn1.npcdn.net/images/G_Background_sq18uz_1775719602.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=917&type=4);
  background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  padding: calc(var(--sec-padding) * 1.2) var(--side-padding) var(--sec-padding);
}

.hp_news .title-box{
  margin-bottom: 3rem;
}

.hp_latest_new_8 .news_box{
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .15);
}
.hp_latest_new_8 .row .col-12:not(:nth-child(2)) .news_box{
  backdrop-filter: blur(1px);
  background: rgba(255, 255, 255, .65);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .05);
}

.hp_latest_new_8 .news_box .read_more{
  border-bottom: 1px solid var(--primary-color);
  width: fit-content;
  padding-bottom: .2rem;
}

.hp_latest_new_8 .news_box .title{
  padding-top: 1rem;
}

/*Follow*/
.hp_follow{
  background: url(https://cdn1.npcdn.net/images/H_Background_vj1pqx_1775720662.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=637&type=4);
  background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.hp_follow .title-box{
  margin-bottom: 3.75rem;
}
.n_followContainer {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.n_followContainer:before {
    content: '';
    position: absolute;
    width: 101%; 
    height: 100%;
    top: 0; 
    left: 0;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.n_followContainer:hover:before,
.n_followContainer:hover .n_followTextCentered {
    opacity: 1;
}

.n_followContainer .n_followImg{
    max-width: 100%;
}

.n_followContainer .n_followImg img{   
    width: 100%;
    height: 30rem;
    object-fit: cover;
    object-position: top;
}

.n_followContainer .n_followTextCentered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
}

.n_followContainer .n_followTextCentered .f-icon {         
    width: 12%;
    margin: auto;
    margin-bottom: 1rem;
}

.n_followContainer .n_followTextCentered li a{
    color: #fff;  
    font-size: clamp(.85rem, 1.25vw, 1.25vw);
  font-weight: 600;    
}

@media(max-width:1200px){
  .n_followContainer .n_followImg img{   
    height: 23rem;      
  }
}

@media(max-width:991px){
    .n_followContainer:before {
        background: rgba(0,0,0,0.5);
        opacity: 1;
    }

    .n_followContainer:hover:before,
    .n_followContainer:hover .n_followTextCentered {
        opacity: 1;
    }

    .n_followContainer .n_followImg img{   
        width: 100%;
    }

    .n_followContainer .n_followTextCentered {
        opacity: 1;
    }
  
  .n_followContainer .n_followTextCentered li a{
    font-size: 120%;
  }
}

@media all and (max-width: 768px) {
 .n_followContainer .n_followImg img{   
    height: 30rem;      
  }   
  .n_followContainer .n_followTextCentered .f-icon { 
    width: 10%;
  }
}

@media(max-width:576px){
  .n_followContainer .n_followImg img{   
    height: 20rem;      
  }
}

/* Footer */
.footer_type6{
  background: url(https://cdn1.npcdn.net/images/I_Background_r0hcfb_1775637868.jpg?md5id=34437adb80c38b197974f5105052609a&new_width=1741&new_height=769&type=4);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #555;  
}
.footer_type6 .line{
  background: #000;
  margin-top: 1rem;
}
.footer_type6 .row .col-12:first-child{
  margin-top: 1rem;
}
.footer_type6 .title{
  padding-top: 110px;
  
  img{
    min-height: 110px;
  }
}
.footer_type6 p{
  font-weight: 500;
}
.footer_type6 a{
  color: #555;
  font-weight: 500;
  
  &:hover{
    color: var(--primary-color);
  }
}
.footer_type6 .title h5{
  color: var(--primary-color);
  font-weight: 700;
}
.footer_type6 .input-container input{
  color: #555;
  border-color: #555;
  caret-color: #555;
}
.footer_type6 .input-container label{
  color: #555;
  
  &.moveUp{
    color: #555;
  }
}
.footer_type6 .input-container .submit{
  color: var(--primary-color);
  font-size: clamp(.85rem, 1vw, 1vw);
  padding: 0;
  height: 100%;
  width: 10%;
}
.footer_type6 .social_media i{
  color: #fff;
  font-size: 14px;
  width: 28px;
  height: 28px;
  background: #000;  
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--primary-color);
}
.footer_type6 .social_media{
  display: flex;
  justify-content: end;
}
.footer_type6 .social_media a{
  margin-left: 8px;
}

@media(max-width:768px){
  .footer_type6 .title{
    padding-top: 0px;        
  }
  .footer_type6 .logo{
    padding-top: 110px;
  }
}

/* English Version */
html:lang(en){
  /* Button */
  .main-btn .b-wording span{
    font-size: clamp(.8rem, .9vw, .9vw);
    letter-spacing: 0px;
  }
  .main-btn{
    width: 260px;
  }
  
  /* Text */
  .title-style{   
    font-family: 'poppins', sans-serif;
    font-size: 50%;
    letter-spacing: .5px;            
  }
  .big-title-style{
    font-size: 160%;
  }
  .content{    
    font-family: 'poppins', sans-serif;
    font-size: clamp(.82rem, .95vw, .95vw);
  }
  
  /*  Banner */
  .banner-content .title-box h2{       
    font-size: clamp(2rem, 4vw, 4vw);
  }
  .banner-content .title-box h3{ 
    font-family: 'poppins', sans-serif;
    font-size: clamp(.85rem, 1vw, 1vw);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0px;
  }
  .banner-pic{
    width: 37.5%;
  }   
  
  /* Faq */
  .ac-content p{
    font-size: clamp(.85rem, 1vw, 1vw);
    font-family: 'poppins', sans-serif;
    font-weight: 400;
  }
  .accordion-label{
    font-size: clamp(.9rem, 1.15vw, 1.15vw);
    padding: 5px 0;
  }
  .accordion-label span{
    min-width: 60px;
  }
  .accordion-content p{
    margin-left: 5.75rem;
  }
  
/*   product */
  .productSlider-4 .product_img .product_box .product_price a{   
    font-size: unset;
  }
}

@media(min-width:991px){
  .abt-content .title-box{
    width: 80%;
  }
}

@media(max-width:1200px){
  html:lang(en){    
    .accordion-content p{
      margin-left: 4rem;
    }
  }
}

@media(max-width:991px){
  html:lang(en){
    .slider_banner .title-box{
      flex-direction: row;
      align-items: last baseline;
    }
    .title-box{
      flex-direction: column;
      align-items: unset;
    }
    .title-style{
      font-size: 65%;      
      letter-spacing: 0;
      font-weight: 400;
      line-height: 1.25;
      margin-top: 0.5rem;
      text-align: left;
    }
    .big-title-style{
      font-size: 190%;
    }
    
/*     faq */
    .accordion-content p{
      margin-left: 0rem;
    }
  }
}

@media(max-width:468px){
  html:lang(en){
    .banner-content .title-box{
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }
    .banner-content .title-box h2 br{
       display: none;
    }
  }
}

/*Language Bar*/
/*.npfooter_languagebar,*/
/*.m_default_languagebar,*/
/*.np_language_btn .dropdown_btn {*/
/*  display: none !important;*/
/*}*/