@charset "utf-8";


/* ~-~-~-~-~ Embeded Font ~-~-~-~-~ */



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');


/* ~-~-~-~-~ Embeded Font ~-~-~-~-~ */


:root {

  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
  --head-fonts: "Baskervville", serif;
  --body-fonts: "Inter", sans-serif;
  --banner-font: "Italiana", sans-serif;

  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
  --f-size-XXXL: 200px;
  --f-size-XXL: 80px;
  --f-size-XL: 48px;
  --f-size-L: 36px;
  --f-size-M: 24px;
  --f-size-S: 20px;
  --f-size-Body: 16px;
  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

  /* ~-~-~-~-~ common transition ~-~-~-~-~ */
  --common-transition: all 0.5s ease;
  /* ~-~-~-~-~ common transition ~-~-~-~-~ */

  /* ~-~-~-~-~ colors ~-~-~-~-~ */
  --primary: #385A41;
  --secondary: #876B4C;
  --white: #ffffff;
  --gray: #9FA4B3;
  --dark-gray: #333333;
  --black: #000000;


  /* ~-~-~-~-~ colors ~-~-~-~-~ */
}

html {
  scroll-padding: top;
}
body,html {
  overflow-x: hidden;
}
body.home {
  background: #FFFCF9!important;
}
body {
  font-size: var(--f-size-Body);
  margin: 0;
  padding: 0;
  font-family: var(--body-fonts);
  line-height: 1.2;
  font-weight: 400;
  background: #FFFCF9;
}

body.fixed{
    margin-top: 177px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--body-fonts);
  margin: 0 0 30px;
  padding: 0;
  /*line-height: 1.1;*/
  font-weight: 400;
  color: var(--white);
}

h1 {
  font-size: var(--f-size-XXXL);
  font-weight: 300;
  line-height: 1;
}

h2,
.h2 {
  font-size: var(--f-size-XL);
  color: var(--primary);
}

h3 {
  font-size: var(--f-size-L);
}

h4,
.h4 {
  font-size: var(--f-size-M);
  font-family: var(--body-fonts);
  margin: 0 0 15px;
  font-weight: 300;
}

h5 {
  font-size: var(--f-size-S);
}

h6 {
  font-size: var(--f-size-Body);
  font-weight: 500;
}

p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.5;
  font-size: var(--f-size-Body);
  color: var(--black);
}

p:last-child {
  margin: 0;
}

.mb-60 {
  margin-bottom: 60px;
}


/* ~-~-~-~-~ form adjustments ~-~-~-~-~ */


@media only screen and (max-width: 1299px) {

          :root {

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    --f-size-XXXL: 170px;
    --f-size-XL: 40px;
    --f-size-L: 16px;
    --f-size-M: 15px;
    --f-size-S: 15px;
    --f-size-Body: 14px;

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */


  }

}

@media only screen and (max-width: 1199px) {

:root { 
    --f-size-XXXL: 120px; 
    --f-size-XL: 30px; 
    --f-size-L: 14px; 
    --f-size-M: 13px; 
    --f-size-S: 13px; 
    --f-size-Body: 12px; 
    --border-radius-image: 15px;
 }


}



@media only screen and (max-width: 767px) {

  :root {

    --f-size-XXXL: 70px;
    --f-size-XL: 25px;
    --f-size-M: 14px;

    --padding-height: 40px;

  }

}

strong{font-family: var(--head-fonts);font-style: italic;font-weight: 400;}


img {
  max-width: 100%;
}

a,
img {
  border: 0;
  text-decoration: none;
  outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  transition: var(--common-transition);
  color: var(--dark);
}

a:hover {
  text-decoration: none;
  transition: var(--common-transition);
}

ul {
  list-style: none;
  padding-left: 0;
}

textarea,
select,
.form-control,
input {
  font-size: 16px;
  padding: 13px 20px;
  background-color: var(--clr-white);
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(229, 229, 229, 0.5);
  outline: none !important;
  box-shadow: none !important;
  color: var(--white);
  height: 55px;
  margin: 0;
}

textarea {
  padding: 18.5px 20px;
  min-height: 100px !important;
  resize: none;
  border-radius: 20px !important;
}

input[type="submit"] {
  font-weight: 700;
  transition: all 0.3s ease 0s;
  outline: none;
  letter-spacing: normal;
}

textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus {
  outline: none !important;
  box-shadow: inherit !important;
  border-color: rgba(206, 206, 206, 1);
  border: 1px solid #D3D3D3;
  background: transparent;
  color: var(--white);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

select,
.form-select {
  font-size: 16px;
  padding: 17px 20px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid rgba(229, 229, 229, 0.5);
  background-image: url(../images/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  color: var(--white);
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}



input:focus,
input:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--primary-brown);
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: inherit;
}

.field-group {
  margin-bottom: 30px;
}

input.wpcf7-not-valid {
  border: 1px solid #dc3232;
}

.form-check-input[type=radio] {
  width: 24px;
  height: 24px;
}

.wpcf7-not-valid-tip {
  font-size: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
}

input.mailpoet_text.parsley-error {
  border: 1px solid #900 !important;
}

.parsley-required,
.parsley-custom-error-message {
  font-size: 0;
}

/* --- for placeholder color --- */
input::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #738694;
  opacity: 1;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #738694;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #738694;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

::-webkit-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

:-moz-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

::-moz-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

:-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  font-size: var(--f-size-Body);
}

/* --- for placeholder color --- */

label,
.maxchar {
  margin-bottom: 11px;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
}

/* desktop size 18 and mobile size 15 */

.common-padding {
  padding-top: 56px;
  padding-bottom: 56px;
}




.btn,
a.btn {
  line-height: 1;
  color: var(--secondary);
  display: inline-block;
  border-radius: 0;
  padding: 12px 34px;
  transition: var(--common-transition);
  font-family: var(--body-fonts);
  border: 1px solid var(--secondary);
  background: transparent;
  position: relative;
  background-clip: padding-box;
  font-size: var(--f-size-S);
  text-align: start;
}

.btn:hover,
a.btn:hover {
  background: var(--secondary);
  border: 1px solid transparent;
  color: var(--white);
}




/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */

/* -- Header -- */

.hdr-wrap {
  display: flex;
  align-items: center;
}

.main-header {
  padding: 20px 0;
  position: relative;
  z-index: 99;
  background: #FFFCF9;
}


.hdr-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hdr-wrap .logo {
  max-width: 160px;
  width: 100%;
  transition: var(--common-transition);
}

.hdr-wrap ul {
  display: flex;
  align-items: center;
  padding: 0;
  list-style: none;
  margin: 0;
}

.main-menu ul li:not(:last-child) {
  margin-right: 30px;
}

.main-menu ul li.current-menu-item a,
.main-menu ul li:hover a {

    color: var(--secondary);
}

.main-menu ul li.current-menu-item a::after,
.main-menu ul li:hover a:after {
  width: 100%;
  transition: var(--common-transition);
}

.main-menu ul li>a:after {
  content: '';
  background: var(--secondary);
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 1px;
}

.main-menu ul li a {
  font-family: var(--body-fonts);
  color: var(--black);
  font-size: 16px;
  padding: 0;
  position: relative;
  padding-bottom: 12px;
  transition: var(--common-transition);
}

.main-menu .hdr-btn {
  display: none;
}

.main-menu ul li.menu-item-has-children ul.sub-menu li:hover {
  color: var(--secondary);
}

.main-header.no-banner {
  background: var(--clr-light-blue);
  position: relative;
}

.header-sticky,
.header-sticky .no-banner {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  animation: slide-down 0.5s;
  -ms-animation: slide-down 0.5s;
  -webkit-animation: slide-down 0.5s;
  z-index: 99;
  box-shadow: 0 0px 10px rgb(226 185 124 / 30%);
  background-color: #fff;
  backdrop-filter: blur(29px);
  padding: 10px 0;
}

.header-sticky .hdr-wrap .logo {
  transition: var(--common-transition);
  max-width: 90px;
}

.header-sticky .main-header {
  padding: 15px 0;
  background-color: #ffffff24;
  backdrop-filter: blur(12px);
}

.hdr-wrap .hdr-btn {
  display: flex;
  align-items: center;
  column-gap: 60px;
  padding-left: 90px;
}



.nav_btn {
  display: none;
}

.hdr-wrap .mobileview {
  display: none;
}


.header-left-wrap .icon-box  {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 25px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 10px;

}
.header-left-wrap .icon-box .probox {
  border-width: 1px!important;
}
.color-wh p{
  color:#fff!important;
}
.color-grey p{
  color:#BDBDBD!important;
}
/* dropdown */

li.menu-item-has-children {
  position: relative;
  display: inline-block;
}

.main-menu ul li.menu-item-has-children a {
  padding-right: 20px;
}

li.menu-item-has-children::after {
  position: absolute;
  content: '';
  background: url(../images/drop-down-icon.svg) no-repeat center / cover;
  width: 16px;
  height: 16px;
  transition: 0.3s ease-in;
  top: 5px;
  right: 0px;
}

.hdr-menu .main-menu ul li.menu-item-has-children a:hover::after {
  display: none;
}

li.menu-item-has-children>ul.sub-menu {
  display: none;
  position: absolute;
  min-width: 227px;
  margin-top: 0px;
  top: 37px;
  border-radius: 0;
  background: var(--white);
  color: var(--primary);
  padding: 10px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 0 0 #000;
}

li.menu-item-has-children>ul.sub-menu li {
  transition: var(--common-transition);
  width: 100%;
  padding: 0;
  margin: 0;
}

li.menu-item-has-children>ul.sub-menu li:last-child {
  border-bottom: none;
}

li.menu-item-has-children>ul.sub-menu li:hover {
  transition: var(--common-transition);
  background: var(--white);
}

li.menu-item-has-children>ul.sub-menu li a:hover {
  background: var(--secondary);
  color: var(--white);
}

li.menu-item-has-children ul.sub-menu li a {
  display: block;
  color: var(--primary);
  margin-right: 0;
  padding: 15px;
  font-weight: 400;
  border-radius: 0;
  transition: var(--common-transition);
}

li.menu-item-has-children:hover ul.sub-menu {
  display: block;
}

li.menu-item-has-children:hover::after {
  transform: rotate(180deg);
  color: var(--white);
}

li.menu-item-has-children ul.sub-menu li:last-child {
  border: 0;
  margin: 0;
}

.minus,
.plus {
  display: none;
}

/* dropdown */


.hdr-btn a.contact{color: var(--primary);text-decoration: underline;}
.hdr-btn a.contact i{text-decoration: none;margin-left: 30px;transition: 0.3s ease;}
.hdr-btn a.contact:hover i{margin-left: 40px;transition: 0.3s ease;}

.hdr-btn .header-left-wrap{display: flex;align-items: center;gap: 24px;}
.hdr-btn .header-left-wrap a{color: var(--black);font-size: 22px;}
.hdr-btn .header-left-wrap a.cart{width: 36px;height: 36px;background: var(--secondary);border-radius: 50%;display: flex;justify-content: center;align-items: center;color: var(--white);}


/* -- Banner Section -- */

.banner-sec{padding: 0 0 56px;background: #FFFCF9;}
.banner-sec .banner-content{position: relative;background-size: 100% 100%!important;}

.banner-sec .banner-title-wrap{padding: 180px 0;}
.banner-sec .banner-title{max-width: 1109px;margin: 0 auto;position: absolute;top: 0;left: 0;right: 0;font-family: var(--head-fonts);}
.banner-sec .banner-title span{display: block;text-align: end;}

.banner-sec  h1.banner-title{font-family: var(--banner-font);}
.banner-sec  h1.banner-title.solid{color: var(--black);z-index: 2;-webkit-text-stroke:2px rgba(0, 0, 0, 0);}
.banner-sec  h1.banner-title.stroke{color:transparent; color:transparent;
-webkit-text-stroke:2px white;
  /* Webkit prefix for Chrome, Safari, and Edge */
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='314' viewBox='0 0 198 314'%3E%3Cpath d='M0 0h198v314H0z' fill='black'/%3E%3Cpath d='M193 5c-1.3 7.5-1.1 15-0.2 22.5.1.8.2 1.6.3 2.5 0 0-0.7 0-1.4 0-0.3 0.7-0.6 1.3-1 2 1 0.3 2 0.7 3 1-0.2 4.5-0.4 9-0.7 13.5-0.1 1.8-0.2 3.7-0.3 5.5-0.1 2.7-0.3 5.4-0.4 8.1 0 0.8-0.1 1.7-0.2 2.5 0 1.5-0.1 3-0.2 4.5-1 7.1-1.3 14.2-1.5 21.3 0 0.8-0.1 1.5-0.1 2.3-0.4 15.4-0.6 30.8-0.6 46.1 0 2.8 0 5.6 0 8.5 0 6.8 0 13.6 0 20.4 0 6.1 0 12.3 0 18.4 0 6.9 0 13.7 0 20.6 0 2.9 0 5.8 0 8.7 0 15.3 0.1 30.6 0.5 45.9 0 0.6 0 1.1 0 1.7 0 3.3 0 6.6 0 9.9 0 2 0 4 0.1 6 0.1 6.3 0.1 12.6 0.3 18.9 0 1.1 0 2.1 0.1 3.2 0.2 6.9 0.3 13.8 0.5 20.7 0 1 0.1 2 0.1 3 0 0.5 0 1 0.1 1.5-7 0.4-13.9 0.8-20.8 1.4-1.3 0.1-2.7 0.3-4 0.4-2.2 0.2-4.3 0.4-6.5 0.6-1.5 0.1-3 0.3-4.5 0.4-4.4 0.4-8.8 0.8-13.2 1.2 0 0.3 0 0.7 0 1-18.1 1.3-36.2 2.6-54.3 3.9h-82v-314h198z' fill='white'/%3E%3C/svg%3E");
  
  /* Standard property */
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='198' height='314' viewBox='0 0 198 314'%3E%3Cpath d='M0 0h198v314H0z' fill='black'/%3E%3Cpath d='M193 5c-1.3 7.5-1.1 15-0.2 22.5.1.8.2 1.6.3 2.5 0 0-0.7 0-1.4 0-0.3 0.7-0.6 1.3-1 2 1 0.3 2 0.7 3 1-0.2 4.5-0.4 9-0.7 13.5-0.1 1.8-0.2 3.7-0.3 5.5-0.1 2.7-0.3 5.4-0.4 8.1 0 0.8-0.1 1.7-0.2 2.5 0 1.5-0.1 3-0.2 4.5-1 7.1-1.3 14.2-1.5 21.3 0 0.8-0.1 1.5-0.1 2.3-0.4 15.4-0.6 30.8-0.6 46.1 0 2.8 0 5.6 0 8.5 0 6.8 0 13.6 0 20.4 0 6.1 0 12.3 0 18.4 0 6.9 0 13.7 0 20.6 0 2.9 0 5.8 0 8.7 0 15.3 0.1 30.6 0.5 45.9 0 0.6 0 1.1 0 1.7 0 3.3 0 6.6 0 9.9 0 2 0 4 0.1 6 0.1 6.3 0.1 12.6 0.3 18.9 0 1.1 0 2.1 0.1 3.2 0.2 6.9 0.3 13.8 0.5 20.7 0 1 0.1 2 0.1 3 0 0.5 0 1 0.1 1.5-7 0.4-13.9 0.8-20.8 1.4-1.3 0.1-2.7 0.3-4 0.4-2.2 0.2-4.3 0.4-6.5 0.6-1.5 0.1-3 0.3-4.5 0.4-4.4 0.4-8.8 0.8-13.2 1.2 0 0.3 0 0.7 0 1-18.1 1.3-36.2 2.6-54.3 3.9h-82v-314h198z' fill='white'/%3E%3C/svg%3E");
  
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;



z-index:5;
pointer-events:none;}


.banner-bottom-text-wrap{max-width: 411px;}
.banner-bottom-text-wrap a{color: var(--secondary);text-decoration: underline;}
.banner-bottom-text-wrap a i{text-decoration: none;margin-left: 32px;transition: 0.3s ease;}
.banner-bottom-text-wrap a:hover i{margin-left: 40px;transition: 0.3s ease;}

.product-image.left{position: absolute;z-index: 3;width: 238px;height: 314px;top: 0;left:230px;}
.product-image.right{position: absolute;z-index: 3;width: 238px;height: 396px;bottom: 0;right:260px;}

.top-overlay-image { max-width: 1012px; margin: 0 auto; position: absolute; z-index: 9; width: 100%; top: 50%; height: 100%; left: 50%; transform: translate(-50% , -50%);}
.top-overlay-image img.top{position: absolute;top: 0;left: 0;width: 244px;height: 198px;}
.top-overlay-image img.bottom { position: absolute; bottom: -44px; right: -42px; width: 310px; height: 344px; transform: rotate(180deg); }
.top-overlay-image img.center { width: 160px; height: 160px; position: absolute; top: 50%; left: 50%; transform: translate(-90% , -70%); backdrop-filter: blur(5px); border-radius: 50%; }

/* -- Banner Section -- */


/* -- Round Section top -- */

.round-sec.left-bottom{border-radius: 0 200px 0 200px;}
.round-sec .round-top-sec{text-align: center;}
.round-sec .round-top-sec .top-content{max-width: 600px;margin: 0 auto;}
.round-sec .round-top-sec h2{color: var(--white);margin-bottom: 10px;}
.round-sec .round-top-sec p{color: var(--white);margin-bottom: 24px;}
.round-sec .round-top-sec .round-logo-list{display: flex;align-items: center;justify-content: center;gap: 24px;}
.round-sec .round-top-sec .round-logo-list img{max-width: 100px;}

/* -- Round Section top -- */

/* -- Movement top -- */

.movement-img{position: relative;padding: 100% 0 0;margin-top: 40px;}
.movement-img img{position: absolute;top: 0;left: 0;bottom: 0;right: 0;width: 100%;height: 100%;object-fit: cover;}

.motivation-content-wrap{margin-left: 120px;}
.top-video-wrap{margin-right: 15%;margin-left: auto;max-width: 336px;}
.top-video-wrap .image-holder{position: relative;padding: 70% 0 0;}
.top-video-wrap .image-holder img{position: absolute;top: 0;left: 0;bottom: 0;right: 0;width: 100%;height: 100%;object-fit: cover;z-index: 1;}
.top-video-wrap .image-holder span{width: 72px;height: 72px;position: absolute;top: 50%;left: 50%;transform: translate(-50% , -50%);z-index: 2;}

.motivation-content-wrap .large-content { display: flex; align-items: flex-end; gap: 10px; margin-left: -305px;margin-top:-110px; }
.motivation-content-wrap .large-content h2{font-size: 80px;color: var(--black);text-align: end;margin-bottom: 25px;}
.motivation-content-wrap .large-content h2 span{color: transparent;-webkit-text-stroke: 2px var(--white);}
.motivation-content-wrap .large-content h2 strong{font-size: 96px;font-family: var(--body-fonts);font-style: normal;}
.motivation-content-wrap .large-content h3{font-size: 109px;margin-bottom: 0;font-style: italic;font-family: var(--head-fonts);color: var(--black);}

.motivation-content-wrap .bottom-link{text-align: start;}


/* -- Movement top -- */


/* -- Best Selling Section -- */

.product-list ul{display: flex;padding: 0;margin: 0;list-style: none;flex-wrap: wrap;justify-content: space-between;}
.product-list ul li{max-width: 336px;}
.product-card{transition: 0.3s ease;}
.product-card .image-holder{position: relative;padding: 100% 0 0;margin-bottom: 16px;}
.product-card .image-holder img{position: absolute;top: 0;left: 0;bottom: 0;right: 0;width: 100%;height: 100%;object-fit: contain;z-index: 1;}
.product-card .image-holder span{width: 72px;height: 72px;background: var(--secondary);border-radius: 50%;display: flex;align-items: center;justify-content: center;color: var(--white);top: 0;right: 0;z-index: 3;position: absolute;font-size: 25px;}
.product-card .image-holder span i:last-child{display: none;}

.product-card .content-holder{transition: 0.3s ease;}
.product-card:hover{transform: scale(1.05);transition: 0.3s ease;}
.product-card:hover .content-holder .btn{opacity: 1; transition: 0.3s ease;}
.product-card .content-holder h6{color: var(--black);margin: 0 0 10px;line-height: 1;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;}
.product-card .content-holder p{color: var(--black); font-weight: 700;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden;}
.product-card .content-holder p strong{font-size: 14px;font-weight: 400;font-family: var(--body-fonts);}
.product-card .content-holder .btn{width: 100%;opacity: 0;}


/* -- Best Selling Section -- */


/* -- Round Section -- */

.round-sec{background: var(--primary);}
.round-sec.right-bottom{border-radius: 200px 0 200px 0;}
.round-sec .round-sec-left h2{color: var(--white);}
.round-sec .round-sec-left h2 span{-webkit-text-stroke: 2px var(--white);color: transparent;font-weight: 700;}
.round-sec .round-sec-right h2{color: var(--white);margin-bottom: 20px;line-height: 1;}
.round-sec .round-sec-right h2 strong{font-size: 72px;}
.round-sec .round-sec-right a{color: var(--white);text-decoration: underline;}
.round-sec .round-sec-right a i{text-decoration: none;margin-left: 32px;transition: 0.3s ease;}
.round-sec .round-sec-right a:hover i{margin-left: 40px;transition: 0.3s ease;}

/* -- Round Section -- */

/* -- Spotlight Section -- */

.common-heading{text-align: center;}
.common-heading h2{margin-bottom: 0;color: var(--black);margin-bottom: 24px;}

.spotlight-video-wrap .row{row-gap: 24px;}
.spotlight-video-item a{display: block;}
.spotlight-video-item .image-holder{position: relative;padding: 60% 0 0;}
.spotlight-video-item .image-holder img{position: absolute;top: 0;left: 0;bottom: 0;right: 0;width: 100%;height: 100%;object-fit: cover;z-index: 1;border-radius: 0 30px 0 0;}
.spotlight-video-item .image-holder img.play-btn{width: 72px;height: 72px;top: 50%;left: 50%;transform: translate(-50% , -50%);z-index: 2;}

.bottom-link{text-align: center;margin-top: 27px;}
.bottom-link a{color: var(--secondary);text-decoration: underline;}
.bottom-link a i{text-decoration: none;margin-left: 32px;transition: 0.3s ease;}
.bottom-link a:hover i{margin-left: 40px;transition: 0.3s ease;}

/* -- Spotlight Section -- */


/* -- Testimonial Section -- */

.testimonial-wrap{max-width: 1160px;margin: 0 auto;padding-right: 120px;}
.testimonial-item{display: flex;align-items: center;justify-content: space-between;padding-top: 20px;}

.user-content-wrap{display: flex;align-items: flex-start;gap: 16px;max-width: 810px;}
.user-content-wrap .image-holder{width: 67px;height: 67px;flex: 0 0 auto;}
.user-content-wrap .image-holder img{width: 100%;height: 100%;object-fit: cover;border-radius: 50%;}
.user-content-wrap .content-wrap{width: calc(100% - 83px);position: relative;z-index: 1;}
.user-content-wrap .content-wrap::after{content: '';background: url(../images/quote.svg)no-repeat center / cover;width: 56px;height: 56px;position: absolute;top: -20px;left: -10px;z-index: 2;}
.user-content-wrap .content-wrap p{position: relative;z-index: 3;line-height: 1.2;}
.user-content-wrap .content-wrap p strong{font-weight: 500;}
.user-content-wrap .content-wrap p span{display: block;margin-top: 16px;font-weight: 700;}

.rating-wrap{display: flex;align-items: center;gap: 5px;color: var(--secondary);}

.slick-arrow{width: 24px;height: 24px;}
.slick-prev{background: url(../images/slider-left-arrow.svg) no-repeat center / cover;left: auto;right: 34px;top: 50%;transform: translateY(-50%);}
.slick-next{background: url(../images/slider-right-arrow.svg) no-repeat center / cover;left: auto;right: 0;top: 50%;transform: translateY(-50%);}
.slick-prev:hover, .slick-prev:focus{background: url(../images/slider-left-arrow.svg) no-repeat center / cover;} 
.slick-next:hover, .slick-next:focus{background: url(../images/slider-right-arrow.svg) no-repeat center / cover;}

/* -- Testimonial Section -- */

/* -- Footer -- */

.main-ftr{background: var(--secondary);}
.ftr-logo{max-width: 180px;margin-bottom: 10px;margin-left: auto;
  margin-right: auto;}
.ftr-logo a{display: block;}

.ftr-logo-wrap p{color: var(--white);font-weight: 700;margin-bottom: 16px;}
.ftr-logo-wrap {
  text-align: center;
}
.ftr-social-wrap{display: flex;align-items: center;justify-content: center;gap: 10px;}
.ftr-social-wrap a{max-width: 32px;}

.ftr-menu p{color: #FFFCF9;font-weight: 700;margin-bottom: 16px;}
.ftr-menu ul{display: block;padding: 0;margin: 0;list-style: none;}
.ftr-menu ul li:not(:last-child){margin-bottom: 5px;}
.ftr-menu ul li a{color: var(--white);font-size: 14px;}

.copyright-wrap{margin-top: 24px;}
.copyright-wrap p{color: var(--white);margin-bottom: 0;text-align: center;font-size: 14px;}
.copyright-wrap p a{text-decoration: underline;color: var(--white);}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  max-width: 48%;
  padding: 0;
}
.woocommerce-js ul.products li.product .onsale {
  margin: 0!important;
}
/* -- Footer -- */
.woocommerce-noreviews {
  margin-bottom: 20px !important;
}
.woocommerce-js #reviews .comment-form-rating label {
  margin-bottom: 0;
}
.woocommerce-js #reviews .comment-form-rating .stars a {
  top: 0;
}
.woocommerce-js #review_form #respond textarea {
  border: 1px solid rgba(229, 229, 229, 0.8)!important;
  color: #000;
}
.woocommerce-js #review_form #respond textarea::placeholder {
  color: #000;
}
.woocommerce-js div.product .product_title {
  color: #000;
  font-weight: 500;
}
.woo-product-gallery-slider .wpgs-for .slick-arrow {
  width: 28px;
  height: 28px;
  background: var(--ast-global-color-0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-top: 0;
}
.woo-product-gallery-slider .slick-prev::before,.woo-product-gallery-slider .flaticon-back {
  left: -10px;
}
.woo-product-gallery-slider .slick-next::before,.woo-product-gallery-slider .flaticon-right-arrow{
  right: -10px;
}
.wpgs-nav .slick-prev::before, .wpgs-nav .slick-next::before {
  font-size: 28px;
  color: var(--ast-global-color-0);
}
.woocommerce-js.single-product .sale:not(.ast-product-gallery-layout-vertical-slider) > span.onsale {
  top: 10px;
}
.woocommerce-js.single-product .sale > span.onsale {
  left: 10px;
}
.wpgs-nav .slick-prev::before, .wpgs-nav .slick-next::before {
  font-size: 25px;
}
.category-blogs header.entry-header .entry-title {
  color: #000;
  font-weight: 500;
}
.ast-separate-container .category-blogs.ast-article-post,.ast-separate-container .category-blogs.ast-article-single {
  padding: 30px;
}
.category-blogs header.entry-header {
  margin-bottom: 20px !important;
}
.category-blogs .entry-content hr {
  margin-bottom: 30px;
}
.category-blogs .entry-content ul {
  margin: 0 0 20px;
}
.category-blogs .entry-content ul li {
  margin-left: 15px;
  list-style-type: disc;
}
.category-blogs .pp-multiple-authors-boxes-wrapper {
  margin-top: 30px;
}
.category-blogs .pp-multiple-authors-boxes-wrapper ul li {
  list-style: none;
  margin: 0;
}
.ast-separate-container .pp-multiple-authors-boxes-wrapper.pp-multiple-authors-layout-boxed.multiple-authors-target-the-content .ppma-author-user_email-profile-data {
  background: var(--ast-global-color-1) !important;
}
.no-primary-class #primary {
  margin-top: 0;
}
.woocommerce .woocommerce-Addresses address, .woocommerce .woocommerce-MyAccount-content address, .woocommerce .woocommerce-customer-details address, .woocommerce-account .woocommerce-Addresses address, .woocommerce-account .woocommerce-MyAccount-content address, .woocommerce-account .woocommerce-customer-details address {
  min-height: 140px;
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
  width: 100%;
}

.woocommerce-account .woocommerce-input-wrapper .checkbox input[type="checkbox"],.woocommerce-form-login__rememberme input[type="checkbox"]{
    width:16px;
    height:16px;
    margin-right:8px;
    vertical-align:middle;
}

.woocommerce-account .woocommerce-input-wrapper .checkbox,.woocommerce-form-login__rememberme{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    width: 100%;
}
.woocommerce-account .woocommerce-input-wrapper .checkbox {
    display:flex;
    align-items:center;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  padding: 3px 0 10px;
}
#account_display_name_description {
  margin-top: 10px;
  font-size: 14px;
}
.woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-address-fields__field-wrapper {
  margin-bottom: 20px;
}
.woocommerce-address-fields__field-wrapper select {
  height: 45px;
}
.woocommerce-LostPassword.lost_password a,.woocommerce-MyAccount-content p a {
  color: var(--ast-global-color-0);
}
.woocommerce-js #content table.cart [name="coupon_code"], .woocommerce-page #content table.cart [name="coupon_code"] {
  max-height: 48px;
  border-radius: 5px;
  height: 48px;
}
.woocommerce-js #respond input#submit.disabled, .woocommerce-js #respond input#submit:disabled, .woocommerce-js #respond input#submit:disabled[disabled], .woocommerce-js a.button.disabled, .woocommerce-js a.button:disabled, .woocommerce-js a.button:disabled[disabled], .woocommerce-js button.button.disabled, .woocommerce-js button.button:disabled, .woocommerce-js button.button:disabled[disabled], .woocommerce-js input.button.disabled, .woocommerce-js input.button:disabled, .woocommerce-js input.button:disabled[disabled] {
  padding: 17px 34px;
}
#moderncart-slide-out .moderncart-slide-out-footer .moderncart-cart-total .moderncart-cart-line-items-value {
  flex-wrap: wrap;
}
#moderncart-slide-out-modal.moderncart-cart-theme-style1 .moderncart-cart-item-quantity, #moderncart-slide-out-modal.moderncart-cart-theme-style4 .moderncart-cart-item-quantity {
  display: flex;
  align-items: center;
}

 .product-card .btn {
  font-size: 16px;
  gap: 30px;
  display: flex;
}
.spotlight-video-item iframe {
  border-top-right-radius: 30px;
}
.user-content-wrap .content-wrap span {
  font-weight: 700;
}
.wc-block-price-filter__title {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.woocommerce-MyAccount-navigation li a {
  padding: 15px;
}
.woocommerce-MyAccount-navigation-link.is-active a {
  background: var(--ast-global-color-1) !important;
  color: #fff;
}
.woocommerce-js  header.entry-header h1 {
  color: #000;
  font-weight: 500;
}
.woocommerce-js a.remove .ahfb-svg-iconset .ast-close-svg {
  fill: red;
}
.woocommerce-js a.remove::before {
  border-color: red!important;
}
#primary {
  margin: 2rem 0;
}
.product-card .content-holder p {
  -webkit-box-orient: inherit;
}
.product-card .btn {
  justify-content: center;
}
  #coupon-error-notice {
  font-size: 13px;
  margin-left: 10px;
  color: red;
}

@media only screen and (min-width: 1499px) {
  .container {
    max-width: 1420px;
  }
}
@media only screen and (max-width:1599px) {
 
}



@media only screen and (max-width:1499px) {

.main-menu ul li:not(:last-child) {margin-right: 20px;}
.hdr-wrap .logo{max-width: 130px;}

.banner-sec .banner-title-wrap { padding: 200px 0; }

.product-image.left { position: absolute; z-index: 3; width: 168px; height: 224px; top: 0; left: 120px; }
.product-image.right { position: absolute; z-index: 3; width: 198px; height: 326px; bottom: 0; right: 110px; }

.movement-img{padding: 120% 0 0;}

.ftr-logo-wrap p{font-size: 13px;}
 
}

@media only screen and (max-width:1399px) {

    
 
}


@media only screen and (max-width:1299px) {

}

@media only screen and (max-width:1199px) {

    .main-menu ul li a{font-size: 12px;}

    .hdr-wrap .logo { max-width: 100px; }

    li.menu-item-has-children::after{top: 0;}

    .common-padding { padding-top: 40px; padding-bottom: 40px; }

    .top-overlay-image img.center { width: 160px; height: 160px; position: absolute; top: 50%; left: 50%; transform: translate(-50% , -100%); backdrop-filter: blur(5px); border-radius: 50%; }

    .banner-sec { padding: 40px 0; }

    .motivation-content-wrap .large-content{margin-left: -265px;}
    .motivation-content-wrap .large-content h2{font-size: 65px;margin-bottom: 10px;}
    .motivation-content-wrap .large-content h2 strong{font-size: 70px;}
    .motivation-content-wrap .large-content h3{font-size: 80px;margin-bottom: 10px;}

    .bottom-link{margin-top: 20px;}

    .product-list ul{gap: 15px;}
    .product-list ul li{max-width: 100%;width: calc(33.33% - 15px);}

    .product-card .image-holder span{width: 50px;height: 50px;font-size: 20px;}

    .round-sec.left-bottom{border-radius: 0 150px 0 150px;}
    .round-sec.right-bottom{border-radius: 150px 0 150px 0;}
    .round-sec .round-sec-right h2 strong{font-size: 40px;}

    .user-content-wrap .content-wrap{width: calc(100% - 200px);}
    .rating-wrap{flex: 0 0 auto;}

    .ftr-logo-wrap p{text-align: center;}

    .ftr-menu ul li a{font-size: 12px;}
.top-video-wrap {
  margin-right: 0;
}
  .motivation-content-wrap .large-content {
    margin-top: -60px;
  }
 
}

@media only screen and (max-width:991px) {

    body.menu-open{overflow-y: hidden;}

    .main-header{top: 0;left: 0;right: 0;z-index: 99;padding: 0;}

    .logo-wrap a {
    width: 70px;
  }

  .header-sticky .logo-wrap a {
    width: 40px;
  }

  .header-btn .btn {
    padding: 22px 30px;
  }

  .hdr-wrap {
    background: transparent;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .hdr-wrap .logo {
    max-width: 90px;
  }

  .main-menu {
    position: absolute;
    left: inherit;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    border: 0;
    padding: 3rem 60px 60px;
    overflow: auto;
    height: 100vh;
    max-width:450px;
    transform: translateX(-140%) !important;
    transition: var(--common-transition);
  }

  li.menu-item-has-children>ul.sub-menu{
    position: relative;
    max-width: 100%;
    top: 0;
  }

  .main-menu.sidebar-open {
    transform: translateX(-36%) !important;
    transition: var(--common-transition);
  }

  .main-menu>ul {
    flex-direction: column;
  }

  .main-menu>ul li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
    border: 0;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 0;
  }

  .main-menu>ul>li a {
    display: block;
    color: var(--black);
    padding: 10px 0;
  }

  .main-menu ul li.current-menu-item a,
  .main-menu ul li:hover a {
    color: var(--secondary);
  }

  .hdr-rt ul li a {
    color: var(--black);
    padding: 10px;
  }

  .main-menu ul li.current-menu-item a {
    background: transparent;
    color: var(--color-black);
  }

  .main-menu ul li.btn {
    display: block;
    width: auto;
  }

  .header-btn {
    display: none;
  }

  .nav_btn {
    display: block;
    cursor: pointer;
    position: relative;
    margin: auto 10px auto 10px;
    width: 30px;
    height: 20px;
    z-index: 999;
  }

  .nav_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    top: 0;
    right: 0;
    transition: ease-in-out 0.4s;
  }

  .nav_btn span {
    width: 100%;
    height: 2px;
    background: var(--black);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--black);
    right: 0;
    bottom: 0;
    transition: ease-in-out 0.4s;
  }

  .nav_btn.sidebar_active span {
    display: none;
  }

  .nav_btn.sidebar_active::after {
    transform: rotate(45deg);
    bottom: 9px;
  }

  .nav_btn.sidebar_active::before {
    transform: rotate(135deg);
    top: 9px;
  }

  .hdr-wrap .hdr-btn {
    display: none;
  }

  .hdr-wrap .hdr-btn .btn {
    padding: 14px 17px;
    font-size: 12px;
  }

  .hdr-wrap .mobileview {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding-left: 0;
  }

  .hdr-btn .header-left-wrap{
    justify-content: center;
    margin-top: 20px;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 28px;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 0px;
  }

  .header-sticky .hdr-wrap .logo{max-width: 70px;}


  .banner-sec { padding: 60px 0 40px; }

    .banner-sec .banner-title-wrap { padding: 120px 0; }

    .top-overlay-image img.top { position: absolute; top: 0; left: 0; width: 204px; height: 168px; }
    .top-overlay-image img.bottom { position: absolute; bottom: -37px; right: 0; width: 220px; height: 254px; transform: rotate(180deg); }
    .top-overlay-image img.center{width: 120px;height: 120px;}

    .product-image.left { position: absolute; z-index: 3; width: 128px; height: 184px; top: 0; left: 60px; }
    .product-image.right { position: absolute; z-index: 3; width: 158px; height: 216px; bottom: 0; right: 60px; }

    .round-sec.left-bottom { border-radius: 0 100px 0 100px; }
    .round-sec .round-top-sec .round-logo-list{gap: 14px;}
    .round-sec .round-top-sec .round-logo-list img { max-width: 80px; }

    .movement-img { padding: 90% 0 0; max-width: 630px; margin: 0 auto 20px; }

    .motivation-content-wrap{margin-left: 0;}
    .top-video-wrap{margin: 0 auto 20px;}

    .motivation-content-wrap .large-content{margin-left: 0;}
    .motivation-content-wrap .large-content h2{font-size: 45px;}
    .motivation-content-wrap .large-content h2 strong { font-size: 57px; }
    .motivation-content-wrap .large-content h2 span{color: var(--black);-webkit-text-stroke:2px solid var(--black);}
    .motivation-content-wrap .large-content h3{font-size: 60px;}

    .round-sec.right-bottom { border-radius: 100px 0 100px 0; }

    .user-content-wrap .content-wrap { width: calc(100% - 120px); }


    .ftr-logo-wrap{margin-bottom: 20px;}
    .main-ftr .ftr-logo{margin: 0 auto 10px;}
    .main-ftr .col-lg-1{display: none;}
      .motivation-content-wrap .large-content {
    margin-top: 0;
  }
  .banner-sec .banner-content{background-size: cover!important;}
  .ftr-menu {
  text-align: center;
}
.woocommerce-MyAccount-content {
  margin-top: 20px;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  max-width: 100%;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  margin-bottom: 20px;
}
.woocommerce .select2-container .select2-selection--single, .woocommerce select, .woocommerce-page .select2-container .select2-selection--single, .woocommerce-page select {
  height: 45px;
  padding: .75em;
  font-size: 16px;
}
#customer_login {
  margin-top: 40px;
}
.main-menu {
  max-width: 100%;
  position: fixed;
  padding-top: 100px;
}
  .nav_btn {
    position: fixed;
    right: 20px;
  }
  .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation { 
    margin-top: 30px;
  }

}

@media only screen and (max-width:767px) {

    .container{width: 95%;}

    body.fixed { margin-top:0; }

    body.fixed .banner-sec{padding: 40px 0;}

    .main-menu.sidebar-open { transform: translateX(0) !important;}

    .hdr-wrap .logo{max-width: 70px;}

    .common-padding { padding-top: 30px; padding-bottom: 30px; }

    .common-heading h2{margin-bottom: 15px;}

    .btn, a.btn{padding: 12px 20px;}

    .banner-sec .banner-title-wrap { padding: 70px 0; }

    .product-image.left { position: absolute; z-index: 3; width: 98px; height: 124px; top: 0; left: 20px; }
    .product-image.right { position: absolute; z-index: 3; width: 118px; height: 156px; bottom: 0; right: 0px; }

    .top-overlay-image img.top { width: 94px; height: 68px; }
    .product-image.right { position: absolute; z-index: 3; width: 88px; height: 126px; bottom: 0; right: 0px; }
    .top-overlay-image img.center { width: 60px; height: 60px; }

    .banner-bottom-text-wrap { max-width: 200px; }

    .round-sec.left-bottom { border-radius: 0 60px 0 60px; }

    .round-sec .round-top-sec .round-logo-list{flex-wrap: wrap;justify-content: center;}

    .movement-img{padding: 100% 0 0;}

    .top-video-wrap .image-holder span{width: 50px;height: 50px;}

    .motivation-content-wrap .large-content { display: unset; text-align: center; }
    .motivation-content-wrap .large-content h2{text-align: center;font-size: 30px;margin-bottom: 0;}
    .motivation-content-wrap .large-content h2 br{display: none;}   
    .motivation-content-wrap .large-content h2 strong{font-size: 35px;}

    .motivation-content-wrap .large-content h3 { font-size: 40px; }

    .product-list ul li{width: 100%;}

    .round-sec.right-bottom { border-radius: 50px 0 50px 0; }
    .round-sec.right-bottom .col-lg-7.pl-0{padding-left: 15px !important;}

    .round-sec .round-sec-right h2 strong{font-size: 30px;}

    .spotlight-video-item .image-holder img.play-btn{width: 50px;height: 50px;}

    .testimonial-wrap{padding-right: 0;}
    .testimonial-item{display: block;}

    .user-content-wrap{gap: 10px;}
    .user-content-wrap .image-holder{width: 40px;height: 40px;}

    .user-content-wrap .content-wrap{width: 100%;}
    .rating-wrap{justify-content: flex-start;padding-left: 50px;margin-top: 15px;}

    .slick-dots li button{padding: 0;}
    .slick-dots li button:before{font-size: 18px;}

    .ftr-menu { text-align: center; margin-bottom: 20px; }
    .ftr-menu p{margin-bottom: 10px;}

.copyright-wrap p {
  font-size: 12px;
}
.main-menu ul li a {
  font-size: 18px;
}
.main-menu > ul li {
  margin: 8px 0;
}
.hdr-btn a.contact {
  font-size: 18px;
}
.custom-header-wrap .contact {
  display: none;
}
.custom-header-wrap .hdr-btn.mobileview .contact {
  display: inline-flex;
} 
 .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-top: 0;
  }
}
.wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .form-row.wcf-anim-label input.input-text, .wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .form-row.wcf-anim-label select, .wcf-embed-checkout-form.wcf-field-modern-label .woocommerce .form-row.wcf-anim-label .select2-container--default .select2-selection--single:not(:has(.select2-selection__placeholder)),.wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .form-row input.input-text, .wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .form-row select, .wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .input-text, .wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form .select2-container--default .select2-selection--single {
  padding: 8px 15px 8px 11px;
  height: 45px;
}
.checkout.woocommerce-checkout .hostinger-reach-optin {
  margin-bottom: 20px!important;
 }
body.cartflows-instant-checkout .main-header--content {
  display: block;
}
body.cartflows-instant-checkout .main-header--content .main-header--site-logo img {
  width: 100px;
}
.wcf-embed-checkout-form.wcf-embed-checkout-form-instant-checkout .woocommerce form textarea.input-text {
	height:100px;
}
  #coupon-error-notice {
  font-size: 13px;
  margin-left: 10px;
  color: red;
}
.wc-block-product-categories-list li {
  padding-left: 0;
	display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  width: 100%;
}
.ast-left-sidebar #secondary {
  width: 20%;
  padding-right: 30px;
  margin-top: 50px;
}
.ast-left-sidebar #primary {
  padding-left: 30px;
  width: 80%;
}
.woocommerce-page .widget .wc-block-price-slider .wc-block-components-price-slider__controls {
  justify-content: space-between;
}
.wc-block-components-price-slider--is-input-inline .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  max-width: 60px;
  font-size: 13px !important;
  padding: 5px;
  height: 30px;
}
.wc-block-components-price-slider__label {
  font-size: .7em!important;
}
.wc-block-components-filter-reset-button {
  text-decoration: none!important;
}
.wc-block-active-filters__title {
  color: #000;
  font-weight: 500;
  font-size: 20px;
}
.wc-block-components-filter-reset-button {
  padding: 12px !important;
  font-size: 14px !important;
}
@media only screen and (min-width:1499px) {
  .container {
    max-width: 1420px;
  }

}
@media only screen and (max-width:1199px) {
	.coupon {
  flex-wrap: wrap;
}
	#coupon-error-notice {
  width: 100%;
  text-align: left;
	margin:10px 0 20px;
	}
}
@media only screen and (max-width:991px) {
	.ast-left-sidebar #secondary {
  width: 100%;
  padding:0 15px;
  margin-top: 20px;
}
.ast-left-sidebar #primary {
  width: 100%;
  padding:0 15px;
	margin-top: 60px;
}
}
@media only screen and (max-width:767px) {
	   .round-sec .round-top-sec .round-logo-list{justify-content: center;}
}