html {
    line-height: normal;
}
body{
    font-family: 'Plus Jakarta Sans';
    line-height: normal;
    font-weight:400;
    margin:0;
    color: #5f626c;
    font-size: 13px;
}

/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url('assets/fonts/plus-jakarta-sans-v8-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




.header.fixed_header{
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;

}
.header.fixed_header{position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: #181c43;
-moz-box-shadow: 0 0 8px -5px #333;
-webkit-box-shadow: 0 0 8px -5px #333;
box-shadow: 0 0 8px -5px #333;}


@-webkit-keyframes animationFade{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px);}
100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);}
}
@keyframes animationFade{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px);}
100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}}
.header.fixed_header{background: #fff;top:0;left:0;right:0;position:fixed;margin:0;z-index:1002;-webkit-animation-name:animationFade;-o-animation-name:animationFade;animation-name:animationFade;-webkit-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-moz-box-shadow:0 0 8px -5px #333;-webkit-box-shadow:0 0 8px -5px #333;box-shadow:0 0 8px -5px #333;}




img{max-width: 100%;}
p{margin-bottom:15px; line-height:1.5; font-size: 13px;}

h1, h2, h3, h4, h5, h6{font-weight: 400; margin-bottom:15px; color: #282828;  }
p:last-child{margin-bottom: 0px;}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child{margin-bottom: 0px;}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-decoration: none;
}
button , :after , :before{
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;    
}
a:hover{
    text-decoration: none;
}
a:focus , input:focus , textarea:focus , button:focus{
    outline: none;
}
ul{
    padding-left: 0;
    margin: 0;
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}
figure{margin:0;}
input:focus,textarea:focus{outline:none;background: transparent; border-color: #5a5a5a; box-shadow:none !important; -webkit-box-shadow:none  !important;}
/* header css start */



/*********start header********/

.header{width: 100%; position: absolute; top: 0; left: 0; z-index: 99; border-bottom: 1px solid rgba(255,255,255,0.2);}


.header_top {
    /* text-align: right; */
    padding: 10px 0;
    background: #2e3652;
}
.header_top .row{align-items: center;}
.header-links li{display: inline-block; line-height: 0.8; padding-right: 12px; margin-right: 10px; border-right: 1px solid #fff}
.header-links li:last-child{margin:0; padding: 0; border: 0}
.header-links li a{color: #fff; font-weight: 300; font-size: 13px; }
.header_contacts{text-align: right; }
.header_contacts li{display: inline-block;margin-right: 30px}
.header_contacts li:last-child{margin-right: 0}
.header_contacts li a{color: #fff; font-size: 13px; font-weight: 300; display: flex; width: 100%; align-items: center;}
.header_contacts li a:hover{color:#cf5636;}
.header_contacts li i{
  font-size: 14px;
    color: #ffff;
    margin-right: 7px;
    margin-bottom: -2px;
}
.header_contacts li:last-child i{font-size: 20px}
.hderinr{position: relative; align-items:center; justify-content: space-between; display: flex; width: 100%; padding: 15px 0 8px}
.fixed_header .head-menu{display: none}
.logo{width: auto; display: block; 
    position: relative;
    z-index: 10;
    width:150px;
}
.mob-search{display: none}
.header_search {
    border: 1px solid #cacfe2;
    border-radius: 30px;
}
.search-field{display: flex;width: 100%; align-items: center;}
.search-field input[type=search] {
    width: 430px;
    padding: 10px 15px;
    height: 38px;
    border: 0 !important;
    outline: none !important;
    border-radius: 30px 0 0 30px;
}
.search-field input[type=submit],.search-btn{
        margin: 0 4px;
    height: 30px;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background-color: #999999;
    background-image: url(assets/images/search.png);
    color: #fff;
    /* font-size: 15px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
} 

.header_info{display: flex; align-items: center;}
.account-info{margin-right: 30px; display: flex; align-items: center;}
.account-info i{width: 36px;
    height: 36px;
    border: 1px solid #cacfe2;
    border-radius: 50%;
    color: #231f20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    font-size: 19px; }
.a-info-text span{font-size: 11px; color: #505050}
.a-info-text p{font-size: 13px; color: #000000; }
span.count {
    position: absolute;
    right: -6px;
    top: -3px;
    background: #cc3300;
    padding: 1px 2px;
    border-radius: 30px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
    font-size: 11px;
}
.basket{position: relative;}
.shopping-info li{display: inline-block;}
.shopping-info li i{color:#231f20; font-size: 20px;}
.shopping-info li img{width: 23px;}
.shopping-info li:not(:last-child){margin-right: 30px}
ul.slimmenu li a{     display: inline-flex;
    color: #000;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.1;
    font-weight: 300;
    align-items: center;
    position: relative;
    text-align: left; }
ul.slimmenu li a img {
    height: 18px;
    margin-right: 5px;
}
ul.slimmenu li{margin-right: 22px; padding:14px 0; background:none !important;     float: none;
    display: inline-block;}
ul.slimmenu li:last-child{margin: 0px;}
ul.slimmenu li.current-menu-item a,ul.slimmenu li:hover a{color:#cf5636}

ul.slimmenu li.current-menu-item:after, ul.slimmenu li:hover:after{width: 14px;}
ul.slimmenu{
    text-align: center;
    width: 100%;}


.banner{width: 100%;  position: relative;margin-top:180px }
.sticker {
    position: absolute;
    right: 0;
    top: 14%;
    z-index: 10;
    width: 86px;
    right: 12.5%;
}
.banner_item figure:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    height:100%;
    background-image: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0));
}
.banner_item figure img{width: 100%}
.banner_item{position: relative; z-index: 1}
.banner_item figure{position: relative;}

.banner_text{position: absolute; left: 0; top:50%; right: 0; transform: translateY(-50%);}
.banner_in{max-width: 550px}
.banner_text h3 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 10px;
}
.banner_text p{color: #fff; font-size: 17px; }
.banner-btn,.more{display: inline-flex;
    padding: 12px 15px;
    background: #4e90cd;
    color: #fff;
    border-radius: 4px; align-items: center;}
.banner-btn:hover, .more:hover {
    background: #d97b62;
    color: #fff;
}
.banner-btn:after,.more:after{
   content: '\f178';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 18px;}
.banner .owl-dots{
        position: absolute;
    bottom: 10%;
    left: 9%;
    z-index: 10;
}
.banner .owl-dots button{width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%; margin:0 5px}
.banner .owl-dots button.active{outline: 1px solid #fff;
    outline-offset: 2px;
    width: 7px;
    height: 7px;}

.our-products{padding: 80px 0 0;}
.head-right{text-align: right;}
.sec-head{align-items: center; margin-bottom: 35px}
.sec-head h1,.sec-head h2{font-size: 45px; font-weight: 600; color: #000; margin-bottom: 15px}

.cat_item {
    padding: 0 7px;
        margin-bottom: 14px;
    display: flex;
}
.cat_box {
    box-shadow: 0px 0px 3px 1px rgba(46,54,82,0.15);
    border: 1px solid ;
    padding: 12px 16px;
    width: 100%;
    position: relative;
    border: 1px solid #e3e5f1;
    transition: all 0.3s;
}
.cat_box:hover {
    transform: scale(1.05);
}
.cat_box a{position: absolute; left: 0; right: 0; top:0; bottom: 0}
.cat_box h5{color: #5f626c; font-size: 14px; font-weight: 600;}
.cat_image{margin-bottom: 6px; }
.cat_image img{height: 160px; margin: auto; object-fit: contain;}
.cat-wrap-left{display: flex;}
.cat-wrap-left img{height: calc(100% - 14px); object-fit: cover; width: 100%}

.arrival{padding: 60px 0}
.product_wrap .owl-stage-outer{padding:7px 0}
.product_wrap .owl-stage{display: flex; }
.owl-item{display: flex;}
.pro-item {
    padding: 0 10px;
    display: flex;
    width: 100%;
    height: 100%;
}
.pro-box {
    
    border: 1px solid #e3e5f1;
    padding: 0px 20px 20px;
    width: 100%;
    position: relative;
    height: 100%;
}
.pro_image{padding: 30px 0}
.pro_image img{height: 194px; object-fit: contain;}
.pro-box h5{color: #5f626c; font-size: 14px; font-weight: 600; min-height: 34px}

.view-pro{display: inline-flex;
    color: #d64115;
     align-items: center; font-size: 13px; font-weight: 600}
.view-pro:after{
   content: '\f178';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 5px;}
.product_wrap .owl-nav{position: absolute; right:-45px; top: 50%; transform: translateY(-50%);}
.owl-prev,.owl-next{
    width: 34px;
    height: 34px;
    display: flex;
    border-radius: 50%;
    background: #f3f4f9 !important;
    color: #2f3652 !important;
    font-size: 15px !important;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}
.owl-prev:before,.owl-next:before{
    font-family: "Font Awesome 6 Free";
    font-weight: 600;

}
.owl-prev:before{
    content: '\f104';
   
}
.owl-next:before{
    content: '\f105';
    
}
.product_wrap .owl-prev:before{ transform: rotate(90deg);}
.product_wrap .owl-next:before{transform: rotate(90deg);}
.owl-prev span,.owl-next span{display:none}
.brand_wrap{padding:40px 0; border-top: 2px solid #dcdfeb;}
.brand_wrap ul{display: flex; width: 100%; justify-content: space-between; flex-wrap: wrap;}
.brand_wrap ul li{width: 12%;     padding: 15px 15px;}
.need-help{text-align: center; padding: 80px 0; background-size: cover; position: relative; z-index: 1;}
.need-help h3{font-weight: 600; color: #fff; font-size: 45px;}
.need-help p{font-weight: 500; color: #fff; font-size: 16px; padding: 0 8%;  margin-bottom: 30px}
.need-help:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.need-help .more:after{display: none;}
.need-help .more{padding: 10px 13px}
.need-help .more span{
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-left: 40px;
    margin-right: -5px;
}
.client-says{
    padding: 50px 0;
    background: #f3f4f9;
}
.clien-slide .owl-item{padding: 0 8px}
.clien-slide .owl-item:nth-child(odd){margin-top: 50px}
.client-box{
    padding: 30px 20px;
    background: #fff;
    width: 100%;
    height: 100%;
}
.client-box p{color:#5f626c; font-size: 12.5px; margin-bottom: 10px; line-height: 1.7}
.client-box h6{color:#5f626c; font-size: 13px; font-weight: 700;}
.c-rating{margin-bottom: 20px;
    font-size: 12px;
    color: #ebab3c;
    letter-spacing: 2px;}

.clien-slide .owl-prev,.clien-slide .owl-next{background: #fff !important; }
.clien-slide .owl-prev{margin-right: 10px}
.clien-slide .owl-nav{position: absolute; right: 0; bottom:100%; margin-bottom:40px; display:flex; align-items:center; }
.owl-prev:hover,.owl-next:hover{background: #4e90cd!important; color: #fff!important}
.blog-sec{padding:60px 0}
.blog-text {
    padding: 17px 7px;
}
.blog-date{margin-bottom: 10px; color: #5f626c;font-size: 13px; display: flex; align-items: center;}
.blog-date i{color: #4e90cd; margin-right: 6px}
.blog-text h5{font-size: 18px; font-weight: 700; color: #000; margin-bottom: 10px}
.blog-text h5 a{color: #000;}
.blog-text p{font-size: 13px;  color: #5f626c; margin-bottom: 10px}
.blog-box figure img{width: 100%; height: 224px; object-fit: cover;}


.blog-more {
    display: inline-flex;
    color: #000;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.blog-more:after {
    content: '\f178';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    margin-left: 15px;
    color: #4e90cd;
}

.footer{position: relative; border-top: 1px solid #e9e9e9;}
.footer:before{
     content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 160px;
    height: 116px;
    background-image: url(assets/images/footer-before.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.footer:after{
     content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 70%;
    background-image: url(assets/images/footer-after.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}
.footer-bottom{padding: 22px 0; border-top: 1px solid #e9e9e9; position:relative; z-index:1;}
.ftr_btm_wrap{display: flex; width: 100%; justify-content: space-between; align-items: center;}
.ftr_links li{display: inline-block; padding-right: 12px; font-size: 12px; margin-right: 10px; border-right: 1px solid #000000; line-height: 0.8}
.ftr_links li:last-child{margin: 0; padding: 0; border: 0}
.ftr_links li a,.copy a{font-size: 11px; color: #000000}
.copy{font-size: 11px; color: #000000; margin: 0}
.footer-top{padding: 60px 0 40px; position:relative; z-index:1; }

.ftr-logo {
    display: block;
    margin-bottom: 25px;
    width: 150px;
}
.footer-left p{color: #000000; font-size: 12px}
.footer-left{padding-right: 0;}
.ftr_phone img{display: inline-block; vertical-align: top; width: 22px;}
.phone_text{display: inline-block; vertical-align: top; padding-left: 8px}
.phone_text strong{display: block; font-size: 16px; font-weight: 600; color: #000}
.phone_text span{display: block; font-size: 13px; font-weight: 400; color: #000}

.footer-middle h5,.footer-right h5{
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
.ftr_menu{display: flex; width: 100%; flex-wrap: wrap;     justify-content: space-between;}
.ftr_menu li{width: 45%; margin-bottom: 14px; padding-left: 15px; position: relative;}
.ftr_menu li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border: 1px solid #cf5635;
    border-radius: 50%;
}
.ftr_menu li a{font-size: 12.5px; color: #000; }
.ftr_menu li a:hover {
    color: #cf5636;
}
.ftr-middle-inner {
    width: 70%;
    margin-left: 18%;
}
.footer-right ul li{margin-bottom: 10px}
.ftr-contact li:first-child i:before{font-weight: 600}
.ftr-contact li:first-child i{vertical-align: top}

.footer-right ul li p {
    margin: 0;
    font-size: 12px;
    color: #000000;
    display: inline-block;
    vertical-align: middle;
}
.footer-right ul li p a{color:#000}
.footer-right ul li p a:hover,.ftr_links li a:hover,.copy a:hover,.ftr_phone:hover .phone_text strong,.blog-more:hover,.blog-more:hover:after,.blog-text h5 a:hover,.header-links li a:hover{color:#cf5636}
.footer-right ul li i {
    color: #cf5635;
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
    margin-right: 7px;
}
.footer-right ul.timing li i{font-size: 14px}
.footer-right h5{margin-bottom: 15px}
.more{padding: 15px 15px;}
.ftr_links.last{order: 1}
@media screen and (min-width:1600px) {


.container{max-width: 1560px;}
body{font-size: 16px;}
p {
    margin-bottom: 20px;
    font-size: 16px;
}
h1,h2,h3,h4,h5{margin-bottom: 20px;}
.header-links li {
    padding-right: 15px;
    margin-right: 13px;
}
.header-links li a {
    font-size: 16px;
}
.header_contacts li {
    margin-right: 45px;
}
.header_contacts li a {font-size: 16px;}
.header_contacts li i {
    font-size: 18px;
    margin-right: 9px;
}
.header_contacts li:last-child i {
    font-size: 24px;
}
.header_top {
    padding: 12px 0;
}
.logo {
    width: 240px;
}
.search-field input[type=search] {
    width: 600px;
    padding: 10px 20px;
    height: 48px;
}
.search-field input[type=submit] {
    margin: 0 5px;
    height: 38px;
    width: 38px;
    background-size: 22px;
}
.account-info {
    margin-right: 45px;
}
.account-info i {
    width: 45px;
    height: 45px;
    margin-right: 11px;
    font-size: 24px;
}
.a-info-text span {
    font-size: 14px;
}
.a-info-text p {
    font-size: 16px;
}
.shopping-info li:not(:last-child) {
    margin-right: 45px;
}
.shopping-info li i {
    font-size: 28px;
}
.shopping-info li img {
    width: 28px;
}
span.count {
    padding: 2px 3px;
    font-size: 13px;
}
.hderinr {
    padding: 22px 0 14px;
}
ul.slimmenu li {
    margin-right: 42px;
    padding: 20px 0;
}
ul.slimmenu li a {
    font-size: 15.5px;
}
ul.slimmenu li a img {
    height: 22px;
    margin-right: 8px;
}
.banner{margin-top: 234px}
.banner_in {
    max-width: 750px;
}
.banner_text h3 {
    font-size: 70px;
    line-height: 76px;
    margin-bottom: 15px;
}
.banner_text p {
    font-size: 23px;
}
.banner-btn, .more {
    padding: 16px 20px;
}
.banner-btn:after, .more:after {
    margin-left: 24px;
}
.banner .owl-dots button {
    width: 10px;
    height: 10px;
    margin: 0 7px;
}

.banner .owl-dots button.active{outline-offset: 4px}

.our-products {
    padding: 100px 0 0;
}
.sec-head h1, .sec-head h2 {
    font-size: 60px;    margin-bottom: 20px;
}
.more {
    padding: 20px 20px;
}
.sec-head {
    margin-bottom: 45px;
}

.cat_box {
    padding: 16px 18px;
}
.cat_image {
    margin-bottom: 18px;
}
.cat_image img {
    height: 200px;
}
.cat_box h5 {
    font-size: 18px;
}
.arrival {
    padding: 75px 0;
}
.pro-box {
    padding: 0px 25px 25px;
}
.pro_image {
    padding: 40px 0;
}
.pro_image img {
    height: 278px;
}
.pro-box h5 {
    font-size: 18px;
    min-height: 43px;
}
.view-pro {
    font-size: 16px;
}
.owl-prev, .owl-next {
    width: 44px;
    height: 44px;
    font-size: 18px !important;
    margin: 10px 0;
}
.brand_wrap {
    padding: 55px 0;
}
.client-says {
    padding: 70px 0;
}
.client-box {
    padding: 40px 26px;
}
.c-rating {
    margin-bottom: 30px;
    font-size: 15px;
}
.client-box p {
    font-size: 15.5px;
    margin-bottom: 15px;
}
.client-box h6 {
    font-size: 16px;
}
.sticker{width: 120px}
.need-help {
    padding: 100px 0;
}
.need-help h3 {
    font-size: 60px;
}
.need-help p {
    font-size: 21px;
    margin-bottom: 40px;
}
.need-help .more span {
    width: 34px;
    height: 34px;

    padding: 8px;
    margin-left: 45px;
}
.need-help .more {
    padding: 12px 16px;
}
.blog-sec {
    padding: 80px 0;
}
.blog-box figure img {
    height: 310px;
}
.blog-text {
    padding: 22px 10px;
}
.blog-text h5 {
    font-size: 24px;
    margin-bottom: 14px;
}
.blog-text p {
    font-size: 16px;
    margin-bottom: 14px;
}
.blog-date {
    margin-bottom: 12px;
    font-size: 16px;
}
.blog-more {
    font-size: 16px;
}
.footer-top {
    padding: 80px 0 60px;
}
.ftr-logo {
    margin-bottom: 30px;
    width: 240px;
}
.footer-left p {
    font-size: 15px;
}
.ftr_phone img {
    width: 28px;
}
.phone_text {
    padding-left: 10px;
}
.phone_text strong {
    font-size: 21px;
}
.phone_text span {
    font-size: 16px;
}
.footer-middle h5, .footer-right h5 {
    font-size: 20px;;
    margin-bottom: 25px;
}
.ftr_menu li:before {
    top: 6px;
    width: 10px;
    height: 10px;
}
.ftr_menu li a {
    font-size: 15.5px;
}
.ftr_menu li {
    margin-bottom: 18px;
    padding-left: 20px;
}
.footer-right ul li p {
    font-size: 15px;
}
.footer-right ul li {
    margin-bottom: 14px;
}
.footer-right ul li i {
    font-size: 20px;
    margin-right: 9px;
}
.footer-right ul.timing li i {
    font-size: 16px;
}
.footer-bottom {
    padding: 30px 0;
}
.ftr_links li {
    padding-right: 14px;
    font-size: 15px;
    margin-right: 14px;
}
.copy {
    font-size: 15px;
}
.footer:before {
    width: 200px;
    height: 130px;
}
}

@media only screen and (max-width: 1300px){

}

@media only screen and (max-width: 1199px) {
ul.slimmenu li {
    margin-right: 12px;
}
ul.slimmenu li a {
    font-size: 11.5px;
}
ul.slimmenu li a img {
    height: 15px;
    margin-right: 5px;
}
.banner_text h3 {
    font-size: 42px;
    line-height: 50px;
}
.banner_in {
    max-width: 500px;
}
.banner_text p {
    font-size: 16px;
}
.sticker{width:72px}
.banner .owl-dots {
    bottom: 8%;
    left: 5%;
}
.our-products {
    padding: 60px 0 0;
}
.sec-head h1, .sec-head h2 {
    font-size: 40px;
    margin-bottom: 10px;
}
.cat_image img {
    height: 130px;
}
.cat_box {padding: 11px 11px;}
.cat_box h5 {
    font-size: 12px;
}
.search-field input[type=search] {
    width: 380px;}
.product_wrap .owl-nav {
    right: -20px;
}
.pro_image {
    padding: 20px 0;
}
.pro_image img {
    height: 164px;
}
.need-help h3 {
    font-size: 40px;
}
.blog-text h5 {
    font-size: 16px;
}
.ftr-middle-inner {
    width: 80%;
    margin-left: 15%;
}
.footer-right ul li i {
    font-size: 15px;
    margin-right: 4px;
}
.footer-right ul li p {
    font-size: 11px;
}
.ftr_links li {
    padding-right: 9px;
    font-size: 11px;
    margin-right: 8px;
}
}

@media only screen and (max-width: 991px) {
.mob-search{display: block}
.desk-search{display: none}
.search-field input[type=search] {
    width: 260px;
}
.header_search {
    max-width: 300px;
    background: #fff;
}
.toggle-search{display: none; position: absolute;
    left: 0;
    top: 100%;
    margin-top: 5px}
.search-btn{cursor: pointer;}
.hderinr {
    padding: 10px 0;
}
.header_contacts li a {
    font-size: 0;
}
.head-menu{    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; padding: 5px 0;}
.collapse-button {
    position: static;
    transform: translate(0, 0%);
    -o-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    -moz-transform: translate(0, 0%);
    -webkit-transform: translate(0, 0%);
}
.banner{margin-top: 164px}
.banner_text h3 {
    font-size: 36px;
    line-height: 42px;
}
.banner_in {
    max-width: 400px;
}
.banner_text p {
    font-size: 14px;
}
.banner .owl-dots {
    bottom: 12px;
    left: 5%;
}
ul.slimmenu {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 15px;
}
ul.slimmenu li {
    margin-right: 0;
    padding: 0;
}
ul.slimmenu li a {
    font-size: 12.5px;
    display: flex !important;
    align-items: center;
    padding: 10px 0;
}
.our-products {
    padding: 50px 0 0;
}
.sec-head {
    margin-bottom: 25px;
    text-align: center;
}
.head-right {
    text-align: center;
    margin-top: 10px;
}
.cat-wrap-left img {
    margin-bottom: 30px;
}
.arrival {
    padding: 40px 0;
}
.brand_wrap ul li {
    width: 21%;
}
.clien-slide .owl-nav {
    margin-bottom: 30px;
}
.need-help h3,.sec-head h1, .sec-head h2 {
    font-size: 35px;
}
.need-help {
    padding: 60px 0;
}
.need-help p {
    font-size: 15px;
}
.blog-text h5 {
    font-size: 15px;
}
.footer-right{    display: flex;
    justify-content: space-between;
    margin-top: 30px;}
.footer-top {
    padding: 40px 0 30px;
}
.ftr_btm_wrap {
    flex-wrap: wrap;
}
.copy{width: 100%; order: 1; margin-top: 10px; text-align: center;}
.footer-bottom {
    padding: 15px 0;}
.blog-sec {
    padding: 40px 0;
}

}
 
@media only screen and (max-width: 767px){
    .header-links li {
    padding-right: 8px;
    margin-right: 6px;
}
.header-links li a {
    font-size: 12px;
}
.logo {
    width: 120px;
}
.account-info {
    margin-right: 15px;
}
.a-info-text p {
    font-size: 12px;
}
.shopping-info li:not(:last-child) {
    margin-right: 15px;
}
.account-info i {
    width: 30px;
    height: 30px;
    margin-right: 7px;
    font-size: 16px;
}
.header_contacts li {
    margin-right: 15px;
}
.banner {
    margin-top: 152px;
}
.sticker {
    display: none;
}
.banner_text h3 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
}
.banner_text p {
    font-size: 12px;
}
.banner_in {
    max-width: 100%;
    /* text-align: center; */
}
.banner-btn, .more {
    padding: 10px 13px;
    font-size: 12px;
}
.need-help h3, .sec-head h1, .sec-head h2 {
    font-size: 32px;
}
.product_wrap .owl-nav {
    right: 0;
}
.clien-slide .owl-nav {
    margin-top: 30px;
    position: static;
    justify-content: center;
}
.clien-slide .owl-item:nth-child(odd) {
    margin-top: 0;
}
.client-says {
    padding: 40px 0 10px;
}
.need-help {
    padding: 50px 0;
}
.footer-left {
    padding-right: 12px;
}
.ftr-middle-inner {
    margin-top: 30px;
}
}
@media only screen and (max-width: 575px){
    .banner_item figure img {
    height:200px; object-fit: cover;
}
.brand_wrap ul li {
    padding: 10px 6px;
}
}
@media only screen and (max-width: 480px){
    .header_contacts li:last-child i {
  font-size: 18px;
}
.header-links li a {
  font-size: 11px;
}
.header_contacts li i {
  margin-right: 0;
  margin-bottom: 0;
}
.banner{margin-top: 145px}
.a-info-text p {
  font-size: 11px;
}
.a-info-text span {
  font-size: 10px;
}
.logo{width:105px}
    .banner_text p {
    font-size: 12px;
    margin-bottom: 6px;
}
.banner_text {
    top: 46%;
}
.banner_text h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
}
.need-help h3, .sec-head h1, .sec-head h2 {
    font-size: 28px;
}
.ftr-middle-inner {
    width: 100%;
    margin-left: 0;
}
.footer-right {
    flex-wrap: wrap;
}
ul.ftr_links {
    width: 100%;
    text-align: center;
}
}











