/** Shopify CDN: Minification failed

Line 1960:6 Expected identifier but found "."
Line 1999:0 Expected "}" to go with "{"

**/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --heading-text: 'DM Serif Display', serif;
    --body-text: 'Inter', sans-serif;
  --main-color: #32C2FF;
}
/* h1, h2, h3,h4,h5,h6{
  font-family:var(--heading-text) !important;
} */
.breadcrumb {
    display: block;
}
img{max-width: 100%;}
a{text-decoration: none;}
.announcement-bar p{
  font-family: var(--body-text);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #5C5C5C;
}
.announcement-bar p span{
  font-weight:700;
}
.banner{
    position: relative;
    padding: 100px 0 80px 0;
}
.banner .row{
    align-items: center;
}
.ban-elipp{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.ban-content span{
    font-family: var(--body-text);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: var(--main-color);
    display: flex;
    align-items: center;
} 
.ban-content span img{
    margin-left: 16px;
}
.ban-content h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 60px;
    line-height: 130%;
    color: #353430;
    margin-bottom: 20px;
}
.ban-content p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #696969;
    padding-right: 40%;
    margin-bottom: 40px;
}
.ban-content a{
    font-family: var(--body-text);
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #111111;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 280px;
    height: 56px;
    display: inline-flex;  
    transition: .5s; 
}
.banmob-img{display:none;}
.ban-content a:hover{
    background-color: var(--main-color);
    color: #fff;
}
.ban-vact{
    position: absolute;
    left: 0;
    top: 100px;
    z-index: -1;
}
/* ============================= */
.supplier{
    max-width: 85%;
    margin: 0 auto;
    padding-top: 50px;
}
.insight-icons h3 {
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #353430;
  margin-bottom:10px;
}
.supplier .row{
    align-items: baseline;
}
.sp-content span{
    font-family: var(--body-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #23A7DF;
}
.sp-content h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 36px;
    line-height: 160%;
    color: #222222;
}
.sp-content p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #696969;
    margin-bottom: 20px;
}
.sp-content a{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #222222;
    position: relative;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
}
.sp-content a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    left: 0;
    bottom: -5px;
}
.sp-content a:hover::before{
    width: 0%;
}
.weekly-selection{
    background: #F8F8F8;
    padding: 80px 0;
}

.ws-header{
    text-align: center;
}
.ws-header span{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #23A7DF;
}
 
.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
    max-width: 500px;
}
  
.tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
  
.weekly-selection .tab-link {
    margin: 0 4%;
    list-style: none;
    cursor: pointer;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0);
    color: #222222;
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 160%;
}
  
.tab-link:hover {
    color: #999;
    border-color: #999;
}
  
.tab-link.active {
    color: #222222;
    border-color: #222222;
}
  
.tab-link:nth-of-type(1).active {
    border-color:  #23A7DF;
}
  
.tab-link:nth-of-type(2).active {
    border-color: #23A7DF;
}
 
/* .content-wrapper {
    padding: 40px 80px;
} */
  
.tab-content {
    display: none;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    padding: 50px 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}
  
.tab-content.active {
    display: block;
}
  
@keyframes fadeIn {
    100% {
      opacity: 1;
      transform: none;
    }
}
.about, .contct{position:relative;}
.ws-content span{
    font-family: var(--body-text);
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #8A8A8A;
    text-transform: uppercase;
}
.ws-content h3 a{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    margin-bottom: 10px;
    display: inline-block;
}
.ws-content p{
    font-family:var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 15px;
    margin-top:10px;
}
.ws-content img{
  display:inline-block;
}
.ws-content a.pro-btn{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #222222;
    position: relative;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
}
.ws-content a.pro-btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    left: 0;
    bottom: -5px;
}
.ws-content a.pro-btn:hover::before{
    width: 0%;
}
.pro-img{
    background: #FFFFFF;
    border-radius: 16px;
    height: 350px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding:40px;
}
.pro-img img{
  width:100%;
}
.pro-img1 img{
  width:100px;
}
.pr-view{
    text-align: center;
}
.pr-view a{
    font-family: var(--body-text);
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #111111;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 280px;
    height: 56px;
    display: inline-flex;  
    transition: .5s; 
}
.pr-view a:hover{
    background-color: var(--main-color);
    color: #fff;
}
/* ================================================== */
.insight-product1{
  padding-top:80px;
}
.about-icon.insight-product1 {
  padding-bottom:80px;
}
.insight-product{
    padding: 80px 0;
}
p.descr{
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #696969;
    padding-bottom: 20px;
}
.inic-body{
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    flex-wrap: wrap;
}
.inic-content{
    flex: 0 0 16%;
    text-align: center;
}
.rev-carous .inic-content img{
    margin:0 auto;
    width: 26%;
}
.inic-content p{
    font-family: var(--body-text);
    font-weight: 700;
    font-size: 15px;
    line-height: 170%;
    margin-top: 15px;
    text-transform: capitalize;
    color: #333333;
}
.insight-bottom{
    text-align: center;
/*     padding-top: 40px; */
}
.insight-bottom img.in-images{
  margin:0 auto;
  max-width:90%;
}
.insight-bottom .insight-mob{
  display:none;
}
.insight-bottom span{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: #32C2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.insight-bottom span img{
    margin-left:16px;
}
.insight-bottom h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    margin-bottom: 40px;
    text-align: center;
    text-transform: capitalize;
    color: #353430;
}
.product-benefit{
    background-color: #1D77E8;
    padding: 80px 0;
}
.pben-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
/*     padding-bottom: 20px; */
}
/* .proben-content{
  margin-top:30px;
} */
.pben-content span{
    font-family: var(--body-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #37C4FF;
}
.pben-content h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 36px;
    line-height: 160%;
    color: #fff;
}
.pben-header .pr-view a{
    color: #fff;
}
.proben-img{
    background: #FFFFFF10;
    border-radius: 16px;
    padding: 20px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proben-content{
/*     background: url(../images/pr-ben.png) no-repeat center; */
    background-size: cover;
    background-repeat:no-repeat;
    background-position:center;
    height: 500px;
    border-radius: 12px;
    position: relative;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.proben-content h4{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 10px;
    position: absolute;
    bottom: 30px;
    left: 30px;
  transition: opacity .2s ease-in-out;
}
.proben-content p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
    color: #ffffff80;
}
.pro-hover{
    opacity: 0;
    position: absolute;
    left: 48px;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s ease-in-out;
}
.pro-hover h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 20px;
}
.pro-hover p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #ffffff;
}
.proben-content:hover{
    background: #002b60 !important;
}
.proben-content:hover .pro-hover{
    opacity: 1;
}
.proben-content:hover h4{
    opacity: 0;
}
.in-st-img{
    padding: 20px;
    padding-bottom:0;
}
.in-steps .in-numb{
    background: #F5F5F5;
    border-radius: 100px;
    width: 42px;
    height: 42px;
    font-family: var(--body-text);
    font-weight: 700;
    font-size: 18px;
    line-height: 170%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}
.in-steps p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #333333;
    margin-bottom: 0;
}
/* ======================================================== */
.specification{
    padding: 80px 0;
}
.specifi-head{
    text-align: center;
    padding-bottom: 40px;
}
.specifi-head span{
    font-family: var(--body-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #23A7DF;
}
.specifi-head h4{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    color: #222222;
}

ul.tabs li.tab-link1{
    display: inline-block;
    cursor: pointer;
    width: 121px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    border: 1px solid #E2E2E2;
    margin-right: 10px;
}
ul.tabs li.tab-link1:last-child{
    margin-right: 0;
}
.tab-link1 img{
    height: 42px;
}
.spec-mob ul.tabs li.current{
    background: #6AD3FF;
    color: #222;
}
ul.tabs li.current::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 10px 10px 0px 10px;
    border-color: #6AD3FF transparent transparent transparent;
}
.tab-content1{
    display: none;
    background: #fff;
    padding: 15px;
    margin-top: 25px;
}

.tab-content1.current{
    display: inherit;
    text-align: center;
}
.specifi-body .spec-mob{display: none;}
.specifi-body img.spec-desk{
    max-width: 80%;
    margin: 0 auto;
}
.video-header{
    text-align: center;
    padding-top: 80px;
    padding-bottom: 50px;
    max-width: 40%;
    margin: 0 auto;
}
.video-header span{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #23A7DF;
}
.video-header h3{
  font-family: var(--heading-text);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 110%;
  color: #222;
  margin-bottom: 10px;
}
.video-header p{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #696969;
  margin-bottom:0;
}

/* ================================= Product page css */
.product-gallery__image-list {
    background: #F5F5F5;
    border-radius: 16px;
    height: 450px;
    display: flex;
    align-items: center;
    padding: 40px;
    justify-content: center;
}
.product-gallery__media.snap-center.scaldownimg img {
    max-height: 400px;
}
.product-sticky-bar__info img {
    max-height: 80px;
}
.product-gallery__thumbnail-list{flex:0 0 15%;}
.product-gallery__thumbnail {
    height: 100px;
    background: #F5F5F5;
    border-radius: 8px;
    border:0;
}
.product-gallery__thumbnail img{
    max-width: 100%;
    height: 100%;
}
.product-gallery__thumbnail-scroller {
    grid-auto-columns: unset;
}
.product-info__block-item .product-title.h3{
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color:#000;
  text-transform:capitalize;
  font-family:var(--body-text);
  letter-spacing: 2px;
}
.product-info__block-item .prose p{
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
  color:#696969;
}
.product-info__block-item .v-stack .h4.text-on-sale{
  color:#5C5C5C;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}
.pdpagree{
  padding:80px 0;
  background: #F5F5F5;
}
.pda-header{
  text-align:center;
}
.pda-header h3{
  font-family: var(--heading-text);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  color: #353430;
}
.ag-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
    border-radius: 24px;
    padding:10px;
}
.ag-content .rv-img {
    margin-bottom: 30px;
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}
input{border:none;}
.pd-carous.owl-carousel .owl-item .ag-content .rv-img img{
    max-width: 100%;
    width: 100%;
}
button, .form-control{border-radius:8px !important;}
.ag-content h3{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: #000;
    letter-spacing: 1px;
}
.ag-content p{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color:#000;
  margin:5px 0;
}
.ag-content h4{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color:#000;
}
.ag-content h5{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color:#000;
}
.pd-carous.owl-carousel .owl-stage{
  display: flex;
  align-items: center;
}
.pd-carous .owl-item.center .ag-content{
  padding:10px;
}
.pd-carous .owl-item.center {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}
.pd-carous .owl-item.center {
  display: block;
  opacity: 1;
  z-index: 10 !important;
  box-shadow: 0 4px 27px #00000020;
  border-radius: 24px;
}

.pd-carous.owl-carousel .owl-item img{
  width: auto;
}
.pd-carous .owl-stage-outer{
  padding: 70px 0;
}
.ws-content{height:100%; text-align:center;}
.pd-carous.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #222222;
}

.pd-carous.owl-theme .owl-dots .owl-dot span {
    background: #D9D9D9;
}

.product-gallery__media.snap-center.scaldownimg {display:flex;}
/* ========================================================================= */
.pdp-client{
  background-color: #d5dfef; 
  padding: 80px 0;
}
.clbody{
  margin: 0 50px;
  text-align: center;
}
.clbody img{
  display:inline-block
}
/* .clbody .row{
  align-items: end;
} */
.cl-head{
  margin-bottom: 40px;
}
.cl-cont p{
    font-size: 20px;
    font-style: italic;
    min-height: 120px;
}
.pdp-about{
  background-color: #F4F0E9;
  padding: 80px 0;
}
.pa-cont{
  text-align: center;
}
.pa-cont h3{
  font-size: 45px;
  font-weight: 700;
  padding: 0 60px;
  line-height: 55px;
  margin-bottom: 40px;
}
.btn_sec2 a{
  width: 538px;
  margin: 0 auto;
  margin-top: 40px;
}
.pdp-though {
  background: #EBECF0;
  text-align: center;
  padding-top: 80px;
}
.pdth-head h3{
  font-size: 50px;
  margin-bottom: 0;
}
/* ======================================================= */
.pro-faq{
    padding: 80px 0;
    max-width: 70%;
    margin: 0 auto;
    position:relative;
}
.profaqhead{
    text-align: center;
    margin-bottom: 40px;
}
.profaqhead span{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: #32C2FF;
}
.profaqhead span img{
    margin-left: 10px;
    display: inline-block;
}
.profaqhead h3{
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    text-transform: capitalize;
    color: #353430;
}
.pro-faq .accordion-button{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 140%;
    padding: 2rem 1.25rem;
}
.pro-faq .accordion-body{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #696969;
    padding-top: 0;
  
}
.pro-faq .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: none;
}
.pro-faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: unset;
    box-shadow: none;
}
.pro-faq .accordion-item {
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-top: 0;
    border-left: 0;
    border-right: 0;
}






.con-form input, .con-form textarea{border:0;}
.con-form form{
    max-width: 50%;
    margin: 0 auto;
}
.cont-head .section-header{
    margin: 0 auto;
}
.cont-head .section-header .prose p{
  font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #696969;
      margin-top: 0;
}
.cont-head .section-header .prose h2{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #353430;
    margin-top: 0;
    letter-spacing: 2px;
}
.cont-head .section-header .prose p.h6{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #37C4FF;
  margin-bottom: 0;
}
.pro-sec{
  position:relative;
}
/* ================================Review page css */
.review-page{
  padding:80px 0;
  position:relative;
}
.rp-header{
  margin-bottom:30px;
  text-align:center;
}
.rp-header span{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #23a7df;
}
.rp-header h3{
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    color: #222;
    margin-bottom: 0px;
}
.review-row{
    columns: 4;
    column-gap: 20px;
}
.rp-content{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.rp-content .rp-img{
    margin-bottom: 30px;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
      overflow: hidden;
}
.rp-content .rp-img img{
    margin: 0 auto;
    height:100%;
    width:100%;
}
.rp-content img.rp-star-img{
    margin:0 auto;
    width: 90px;
    margin-bottom: 15px;
}
.rp-content h3{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: #000;
    letter-spacing: 1px;
}
.rp-content p{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #696969;
}
.rp-content h4{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    color: #000;
    margin-bottom: 0;
}
.rp-content h5{
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #00000080;
}
/* =========================================================== About page css */
.about-head{
  text-align:center;
  max-width: 70%;
  margin: 0 auto;
  padding-top:80px;
}
.about-head h3{
    font-family: var(--heading-text);
    font-weight: 400;
    font-size: 40px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #353430;
    margin-bottom: 10px;
}
.about-head p{
    font-family: var(--body-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #696969;
    padding-bottom: 20px;
}
.about-head p:last-child{padding-bottom:0;}

.about-pro{
    padding: 80px 0;
    background: #00404E;
}
.about-pro-cont{
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}
.about-pro-cont h3{
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    margin-bottom:10px;
    line-height: 55px;
    color: #fff;
}
.about-pro-cont p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #FFFFFF;
    opacity: 0.8;
}

/* =========================== */
.features-product{
    padding: 80px 0;
}
.feture-pro-body{
    width: 90%;
    margin: 0 auto;
}
.feature-head{
    margin-bottom: 20px;
    text-align: center;
}
.feature-head h3{
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 55px;
    color:#000;
}
.tab-content {
    display: none;
    color: #000;
    padding: 30px 0;
    font-family: var(--body-text);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #333333;
    opacity: 0.8;
}
.all-features .tab-ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
  .tab-content.current {
    display: inherit;
  }
  
  .projects_select {
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px dashed #A6A6A6;
    border-radius: 4px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #333333;
    text-align: center;
    text-decoration: none;
    width: 190px;
    height: 43px;
  }
  
  .projects_select.current {
    font-weight: 600;
    color: #fff;
    background: #00404E;
    border: none;
}
.reveiw-carousel.owl-carousel .owl-item img{
    border-radius: 8px;
}
.img-gallery-head{
    padding: 20px 0;
}
.img-gallery-head h3{
    font-family: var(--heading-text);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    margin-bottom: 0;
}
.reveiw-carousel.owl-theme .owl-nav{
    position: absolute;
    top: -50px;
    right: 0;
    margin: 0;
}
.reveiw-carousel.owl-theme .owl-nav button{
    width: 30px;
    height: 30px;
    border: 1px solid #BDDBE8;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.reveiw-carousel.owl-theme .owl-nav button span{
    line-height: normal;
    height: auto;
    width: auto;
    color: #32C2FF;
    margin-top: -1px;
}
.psrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ps-cont img{
  max-width: 100%;
}
.ps-cont{
  flex: 0 0 49.8%;
}

/* ========================== */
.abpro-review{
  padding-top: 80px;
  background: #F5F5F5;
  position: relative;
}
.abpro-review::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 604px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  left: 0;
  bottom: 0;
}
.abpro-head{
  text-align: center;
  max-width: 40%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.abpro-head h3{
  font-family: var(--heading-text);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #000000;
  text-transform:capitalize;
}
.review-grid{
  columns: 4;
  column-gap: 30px;
}
.rg-video iframe{
  width: 100%;
  border-radius: 4px;
  height: 200px;
}
.rg-column{
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
.rg-content{
  padding: 20px 20px 0px 20px;
}
.rg-content p{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #00000080;
  padding-top: 10px;
  margin-bottom: 0px;
}
.rg-auth{
  padding: 20px;
  display: flex;
  align-items: center;
}
.rg-auth .auth-img{
  width: 56px;
  height: 56px;
  background: #D9D9D9;
  border-radius: 50%;
}
.auth-name{
  margin-left: 15px;
}
.auth-name h4{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #000;
  margin-bottom: 0px;
}
.auth-name p{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #599E00;
  opacity: 0.8;
  margin-bottom: 0;
}
.rev-butt a{
  padding: 10px 32px;
  background: #FFFFFF;
  border: 1px solid #32C2FF;
  border-radius: 10px;
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 140%;
  text-transform: uppercase;
  color: #32C2FF;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
}

.rev-butt a img{
  margin-left: 10px;
}
.faq-bread{
  position:relative;
}
/* gallery page css  */
.gallery-page{
  margin:30px 0;
}
.gallery-page .rg-column iframe{
  width:100%;
  margin-bottom: 22px;
  
}
.gallery-page .review-grid{
  columns: 4;
  column-gap: 30px;
}
.gallery-page .rg-column{
    background: #fff;
    padding:0 10px;
    margin-bottom: 0;
    overflow: hidden;
}
.shopify-policy__title.h2 h1{
    font-family: var(--heading-text);
    font-weight:400;
  }
@media(max-width:1670px){
    .pro-img1 img {
        margin-left: 0;
    }
    .pro-img img {
        margin-left: 0px;
    }
/*     .pro-img1, .pro-img{
        max-width: 100%;
    } */
    .ws-content1::before{
        display: none;
    }
    .projects_select {
        width: 141px;
    }
  .abpro-head {
    max-width: 80%;
  }
}
@media (max-width:1460px){
  .proben-content {
    height: 400px;
  }
}
@media (max-width:1200px){
    .ban-content h3 {
        font-size: 50px;
    }
    .ban-content p {
        padding-right: 10%;
    }
    .ban-elipp img{
        max-width: 300px;
    }
    p.descr {
        max-width: 100%;
    }
    .video-header {
      max-width: 60%;
    }
    .pro-img {
      height: 350px;
    }
    .inic-body{
        padding-top: 0;
    }
    .inic-content {
      flex: 0 0 32%;
      margin-top:30px;
    }
  .con-form form {
    max-width: 100%;
  }
  .review-row {
        columns: 3;
  }
  .about-head {
    max-width: 100%;
  }
  .proben-content {
    height: 350px;
  }

}

@media (max-width:992px){
    .ban-content h3 {
        font-size: 40px;
    }
    .pro-img {
        height: 280px;
    }
    .review-row {
        columns: 2;
    }
    .proben-content {
      margin-top: 30px;
    }
    .pben-header{
      margin-bottom: 0px;
    }
    .projects_select{
      width: 100%;
      margin-bottom: 10px;
    }
    .all-features .tab-ul {
      flex-direction: column;
    }
    .review-grid {
      columns: 2;
    }
/*   gallery page */
  .gallery-page .review-grid{
  columns: 2;
}
}
@media (max-width:767px){
    .banner .row {
        flex-direction: column-reverse;
    }
    .ban-content h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .banner {
        padding: 60px 0 50px 0;
    }
    .supplier .row{
        flex-direction: column;
    }
    .ban-vact img{
        width: 40px; 
    }
    .ban-vact {
        top: 20px;
    }
    .ban-content a{width:100%;}
/*     .pro-img1, .pro-img {
        height: 250px;
        padding: 20px;
    } */
    .weekly-selection .tab-link {
        font-size: 20px;
    }
    .ban-elipp img {
        max-width: 150px;
    }
    .ws-header span{
        font-size: 15px;
    }
    .ws-content1{
        margin-bottom: 20px;
    }
    .inic-body {
        max-width: 100%;
        justify-content: center;
        padding-top: 0px;
    }
    .inic-content {
        flex: 0 0 50%;
    }
    .supplier {
      max-width: 100%;
    }
    .sp-content h3 {
      font-size: 24px;
    }
    .sp-content span {
      font-size: 15px;
    }
    .ban-content p {
      margin-bottom: 20px;
    }
    .weekly-selection {
      padding: 50px 0;
    }
    .insight-product {
      padding: 50px 0;
    }
    .insight-bottom h3 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .insight-bottom span {
      font-size: 15px;
    }
    .insight-bottom img.in-images{
      display:none;
    }
    .insight-bottom .insight-mob{
      display:block;
    }
    .pben-header {
      padding-bottom: 10px;
      flex-direction: column;
    }
    .proben-content{
      margin-top: 40px;
    }
    .pben-content{text-align:center;}
    .proben-content img{
      width: 100%;
    }
    .pben-content h3 {
      font-size: 32px;
      margin-bottom: 10px;
    }
    .product-benefit {
      padding: 50px 0;
    }
    .bandesk-img{display:none;}
    .banmob-img{display:block;}
    .inic-content p {
      font-size: 12px;
      line-height: 150%;
    }
    .specifi-body img.spec-desk{display: none;}
    .specifi-body .spec-mob{display: block;}
    .specifi-head h4 {
      font-size: 24px;
    }
    .specifi-head span {
      font-size: 13px;
    }
    .video-header {
      max-width: 100%;
    }
    .specification {
      padding: 50px 0;
    }
    .video-header {
      padding-top: 50px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .insight-product1 {
      padding-top: 50px;
    }
    .ws-content{
      margin-top:30px;
    }
  .header__primary-nav.justify-center{
    justify-content:start;
  }
  .pro-img {
    height: 400px;
  }
  .insight-icons h3 {
    font-size: 30px;
  }
  .pdp-client{
    padding: 50px 0;
  }
  .cl-head {
    margin-bottom: 0px;
  }
  .cl-cont p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .cl-cont{
    margin-top:30px;
  }
  .clbody {
    margin: 0 0px;
  }
  .profaqhead span{font-size: 14px;}
  .profaqhead h3 {
      font-size: 30px;
      line-height: 110%;
  }
  .pro-faq {
      max-width: 100%;
      padding: 50px 0;
  }
  .pro-faq .accordion-button {
      font-size: 16px;
  }
  .about-icon.insight-product1 {
    padding-bottom:50px;
  }
  .about-head {
    padding-top: 50px;
  }
  .pdpagree {
    padding: 50px 0;
  }
  .pda-header h3 {
    font-size: 30px;
  }
  .about-head h3 {
    font-size: 30px;
  }
  .about-pro-cont h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .about-pro-cont {
    max-width: 100%;
  }
  .about-pro {
    padding: 50px 0;
  }
  .feature-head h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .features-product {
    padding: 50px 0;
  }
  .review-grid {
      columns: 1;
  }
  .abpro-review {
    padding-top: 50px;
  }
  .abpro-head h3 {
    font-size: 30px;
    line-height: 110%;
  }
  .abpro-head {
    max-width: 100%;
  }
  .proben-content {
    height: 300px;
  }
   .gallery-page .review-grid{
    columns: 1;
  } 
  .product-list:not(.product-list--carousel) {
    margin-inline: unset;
  }
}

@media (max-width:576px){
  .pro-img {
      height: 220px;
  }
  .tab-content {
    padding: 30px 0;
  }
  .review-row {
        columns: 1;
    }
    .rp-content .rp-img {
        height: 250px;
    }
    .pd-carous .owl-item.center {
      -webkit-transform: unset;
      -moz-transform: unset;
      transform: unset;
    }
    .ps-cont {
      flex: 0 0 100%;
    }
    .rev-butt a {
      padding: 10px 7px;
      font-size: 13px;
    }
  .block-swatch{
    width:100%;
  }
  .quantity-selector__input {
    width: 100%;
  }
  .quantity-selector{
    width:100%;
  }
  .footer{
    padding-bottom:30px;
  }
  .header__secondary-nav {
    gap: 0.5rem 0.5rem;
  }
  .social-media--list {
    justify-content: center;
  }
  .footer__inner {
    row-gap: 20px;
  }
  .product-gallery__image-list {
    margin-top: 40px;
  }
  .pro-sec .breadcrumb{
    margin-top:30px;
  }
  .customer-account-box{
    min-height:unset;
  }
  .shopify-policy__title.h2 h1{
    font-size:30px;
    font-family: var(--heading-text);
    font-weight:400;
  }
  .product-gallery__image-list {
    height: 300px;
  }
  .product-gallery__media.snap-center.scaldownimg img {
    max-height: 200px;
  }
  .junip-product-summary-stars-wrapper {
    text-align: center !important;
  }
  .tab-content .pro-img1{
    height:400px;
  }
}















@media (min-width: 576px){
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px){
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
    .shopify-policy__container{
         max-width: 720px;
    }
}

@media (min-width: 992px){
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
    .shopify-policy__container{
        max-width: 960px;
    }
}

@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
    .shopify-policy__container{
        max-width: 1140px;
    }
}
@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100%;
        padding: 0 200px;
    }
    .shopify-policy__container{
        max-width: 100%;
        padding: 0 200px;
    }
}

.header__primary-nav .header__primary-nav-item a{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #5C5C5C;
  transition:.5s;
}
.header__primary-nav .header__primary-nav-item a:hover{
  color:#23A7DF;
}
.footer__block--newsletter form .form-control input{border:none; padding: 5px 10px;}
.footer__block--newsletter form button.button{width:100%}
.footer .v-stack p.h6{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-transform: capitalize;
  color: #000000;
  letter-spacing: 2px;
}
.footer .v-stack .text-subdued p{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
  text-transform: capitalize;
  color: #777777;
}
.footer ul.v-stack li a{
  text-transform: capitalize;
  color: #777777;
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
}
.footer__aside p.text-subdued{
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
  text-transform: capitalize;
  color: #777777;
}
.shopify-policy__title.h2{
  font-family: var(--body-text);
  text-transform:capitalize;
  letter-spacing: 2px;
}
.privacy-policy h1{
  font-family: var(--body-text);
  text-transform:capitalize;
  letter-spacing: 2px;
}
.privacy-policy h2{
  font-family: var(--body-text);
  text-transform:capitalize;
  letter-spacing: 2px;
}
.header__primary-nav-item .header__menu-disclosure .h6{
  margin-bottom:0;
  font-family: var(--body-text);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #5c5c5c;
  transition: .5s;
}
.header-search__form-control .header-search__input.h5{
  margin-bottom:0;
}
input:focus{
  background-color:transparent !important;
}
input..switch{
  background: rgb(var(--text-color) / .1) !important;
}
.collection__main .product-card__figure{
/*   height: 120px; */
    overflow: hidden;
}

.shopify-section--apps .section-spacing:not(.section-spacing--padded){
  margin-block-start: 0;
    margin-block-end: 0;
}
/* .product-card__figure{
  max-height: 280px;
    display: flex;
    align-items: center;
} */
.product-card__figure img{
   max-height: 170px;
}
.customer-account-box{
    max-width: 400px;
    margin: 0 auto;
}
.header-sidebar__linklist.divide-y li:nth-child(3) .header-sidebar__linklist-button{
  padding-left:20px;
}
.header-sidebar__linklist.divide-y li:nth-child(4) .header-sidebar__linklist-button{
  padding-left:20px;
}
.header-sidebar__linklist.divide-y li:nth-child(5) .header-sidebar__linklist-button {
    padding-left: 20px;







