/* index page css */
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/mso5lxg.css");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, ul, .ul, ol, .ol, li, p, .p {
  padding: 0;
  margin: 0;
}

.dropdown-toggle::after {
  display: none;
}

@font-face {
  font-family: "ywsbs-icon";
  src: url("../fonts/ywsbs-icon.eot");
  src: url("../fonts/ywsbs-icon.eot#iefix") format("embedded-opentype"), url("../fonts/ywsbs-icon.ttf") format("truetype"), url("../fonts/ywsbs-icon.woff") format("woff"), url("../fonts/ywsbs-icon.svg#ywsbs-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
:root {
  --theme-color: #2a4f0e;
  --theme-color-ultra: #cbc230;
  --theme-color-ultraLight: #eee998;
  --theme-color-secondary: #8cac18;
  --theme-color-midgrey: #f7f7f7;
  --theme-color-white: #fff;
  --theme-color-black: #000;
  --theme-color-dark: #232a34;
  --theme-color-lightdark: #969696;
  --theme-body-font: "Poppins", sans-serif;
  --theme-heading-font: "Kaushan Script", cursive;
  --theme-heading-banner: "Lobster", sans-serif;
  /* font */
  --font72:72px;
  --font60:60px;
  --font48:48px;
  --font36:36px;
  --font24:24px;
  --font20:20px;
  --font18:18px;
  --font16:16px;
  --shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  --transition03: all ease 0.3s;
}

h1, h2, h3, h4, h5 {
  text-transform: uppercase;
  font-family: var(--theme-body-font);
}

h1 {
  font-size: var(--font48);
}

h2, h3 {
  font-size: var(--font36);
}

h4 {
  font-size: var(--font24);
}

p {
  font-size: var(--font16);
}

.text-theme {
  color: var(--theme-color) !important;
}

.bg-theme {
  background: var(--theme-color-secondary) !important;
}

.bg-white {
  background: #fff !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--text-color-dark);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: var(--theme-body-font);
  padding: 0;
  margin: 0;
}

.innrpgbody {
  background-color: #fff !important;
  color: #333;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-heading-font);
  text-transform: uppercase;
}

input:focus, select:focus {
  box-shadow: none !important;
  outline: none;
}

button:focus {
  outline: none;
}

@media only screen and (min-width: 1300px) {
  /* .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
  } */
}
.commonbtn {
  -webkit-user-select: none;
    user-select: none;
  -moz-user-select: none;
  background: var(--theme-color-dark) none repeat scroll 0 0 !important;
  color: var(--theme-color-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 25px 18px 30px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  border-radius: 0px 25px 0px 25px;
}

.commonbtn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--tg-blue);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease 0s;
}

.commonbtn::after {
  content: "\f054";
  font-family: FontAwesome;
  font-weight: 700;
  margin-left: 45px;
}

.commonbtn:hover::before {
  width: 100%;
}

.commonbtn:hover {
  color: var(--theme-color-ultra);
  background: var(--theme-color-secondary);
}

/* .commonbtn:hover {
	background: #000;
	color: #fff;
} */
.mb-10 {
  margin-bottom: 10px !important;
}

.divider {
  width: auto !important;
  height: 18px !important;
  margin: 10px auto;
}

/*========================Header======================*/
.headersec {
  padding: 10px 0px 10px;
  width: 100%;
  z-index: 1;
  top: 24px;
  background: var(--theme-color);
  /* background: linear-gradient(to right, #628713 0%, #80aa27 100%); */
}

.headersec .col-md-1 {
  padding-right: 5px;
}

.headersec .col-md-7 {
  padding-right: 5px;
  padding-left: 5px;
}

.headersec .col-md-3 {
  padding-left: 5px;
}

.logo img {
  width: auto;
  height: 100%;
  max-height: 62px;
  -webkit-transition: all 0.5s ease-out;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.cmenu {
  height: auto;
  font-size: 18px;
  position: relative;
  font-weight: normal;
  -webkit-transition: all 0.5s ease-out;
  text-align: right;
  padding: 4px 0;
  font-family: var(--theme-heading-font);
}

.cmenu ul {
  margin: 0;
  padding: 0;
}

.cmenu ul li {
  list-style: none;
  display: inline-block;
}

.cmenu ul li a {
  color: var(--theme-color-white);
  padding: 5px 0;
  display: block;
  margin: 0 10px;
  font-weight: 500;
  border-radius: 0px;
  text-transform: uppercase;
  position: relative;
  transition: all ease 0.3s;
  letter-spacing: 0.5px;
  font-size: var(--font16);
}

.cmenu ul li a:hover {
  color: var(--theme-color-ultraLight);
}

.cmenu ul li a:after {
  /* display:none; */
  content: "";
  background-color: var(--theme-color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  opacity: 0;
  height: 3px;
}

.cmenu ul li:hover a:after {
  opacity: 1;
}

.cmenu ul li a.active {
  color: var(--theme-color-ultraLight);
}

.cmenu ul li a.hover {
  color: var(--theme-color-ultraLight);
}

.rmenubar, .clsebtn, .mysidenav {
  display: none;
}

.headersec.sticky {
  position: sticky;
  top: 0;
  z-index: 99999;
  /* transition: all 0.3s ease-out; */
  left: 0;
  right: 0;
  width: 100%;
}

.carticon-mb {
  display: none;
}

.cart-icon {
  display: inline-block;
}

.cart-icon strong {
  border-radius: 0;
  font-weight: bold;
  margin: 0.3em 0;
  border: 2px solid var(--theme-color-white);
  color: var(--theme-color-white);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  line-height: 25px;
}

.cart-icon strong:after, .cart-icon:hover strong:after {
  height: 10px;
}

.cart-icon strong:after {
  transition: height 0.1s ease-out;
  bottom: 100%;
  margin-bottom: 0;
  margin-left: -7px;
  height: 8px;
  width: 14px;
  left: 50%;
  content: " ";
  position: absolute;
  pointer-events: none;
  border: 2px solid var(--theme-color-white);
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
  border-bottom: 0;
}

/*========================Banner======================*/
.bnrsec {
  position: relative;
}

/* .bnrsec:before{
    content: "";
    width: 500px;
    height: 750px;
    background: url(../images/modalbanner.png) no-repeat;
    background-size: cover;
    position: absolute;
    top:0;
    right:80px;
} */
.bnrsec .container {
  position: relative;
}

.bnrsec .bnrimg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* .bnrsec .bnrimg:before {
    content: "";
    background: #ad8858;
    position: absolute;
    left: 0px;
    right:0;
    margin: 0 auto;
    top: -10px;
    width: 96%;
    height: 98%;
    border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
    z-index: 1;
    animation: morpspin 25s linear infinite reverse
} */
.bnrsec .bnrimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bnrsec .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 12px;
}

.bnrsec .slick-dots li {
  list-style: none;
}

.bnrsec .slick-dots button {
  font-size: 0;
  overflow: hidden;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
  transition: background 0.3s ease;
  border: 0;
  margin: 0 4px;
}

.bnrsec .slick-dots li.slick-active button {
  background-color: #fff;
}

.bnrsec .bnrcontent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 100%;
}

.bnrsec .bnrcontent h1 {
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  font-size: 48px;
  line-height: 62px;
}

.bnrcontent h1 span {
  font-size: 35px;
  font-family: var(--theme-heading-font) !important;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--theme-color);
}

/*======================Icon Box======================*/
/* .icontxtsec .icontxtbx img{max-height: 100px} */
.icontxtbx_cont {
  transition: all ease 0.3s;
}

.icontxtbx_cont:hover {
  transform: scale(101%);
}

.icontxtsec .icontxtbx p {
  margin-top: 5px;
  font-weight: 600;
  font-size: 16px;
}

/*======================Feature Box======================*/
.featuresec {
  padding: 50px 0px 60px;
}

.featuresec h3, .icontxtsec h3 {
  color: var(--theme-color-white);
  font-weight: 500;
  position: relative;
  font-size: 2.1rem;
  letter-spacing: 0.1px;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* .featuresec h3:after, .icontxtsec h3:after {
  content: '\e8fe';
  content: "";
  font-family: fontello;
  display: block;
  font-size: 2.1rem;
  line-height: 2.5rem;
  margin-top: 1.5rem;
  color: var(--theme-color);
  background: url(../images/divider.png) no-repeat;
} */

/* .featuresec h3 span:before {
    content: "";
    background: url(../images/texticon.png) no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 145px;
    height: 200px;
    top: -90px;
    background-size: 145px 200px;
    z-index: -1;
} */
.featuresec h3 span {
  padding: 8px 10px;
  position: relative;
}

.featuresec h3:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  opacity: 0.1;
  background-color: rgb(85, 85, 85);
  z-index: 1;
  display: none;
}

.productbox {
  margin-bottom: 15px;
}

.productbox .productimg {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  padding: 30px 15px;
  z-index: 2;
}

.productbox .productimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 215px;
  margin-bottom: 0;
}

.quickbtn {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

.quickbtn:hover {
  color: #fff;
}

.productimg .wishicon {
  font-size: 18px;
  position: absolute;
  top: -30px;
  right: 5px;
  color: #c0c0c0;
  border-radius: 50%;
  border: 1px solid #c0c0c0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease all;
}

.productbox .productimg:hover .wishicon {
  opacity: 1;
  visibility: visible;
  top: 5px;
}

/*.productbox .productimg:hover{box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2)}*/
.productimg .wishicon:hover {
  background: #b20000;
  border-color: #b20000;
  color: #fff;
}

.productbox .productimg:hover .quickbtn {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
}

.productbox .commonbtn {
  z-index: 2;
}

.featuresec p {
  font-size: 15px;
  margin-top: 8px;
}

.featuresec h6 {
  font-size: var(--font20);
  font-weight: 600;
  text-transform: initial;
  z-index: 2;
  position: relative;
  color: var(--theme-color-white);
  font-family: var(--theme-body-font)
}

/* .productbox .commonbtn {    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: fit-content;
    bottom: -120px;
    visibility: hidden;
} */
/* .productbxwrapper:hover .productbox{padding-bottom: 95px;border-radius: 10px;} */
/* .productbxwrapper:hover .commonbtn {opacity:1;visibility: visible;bottom: 25px;} */
/*======================Footer======================*/
.ftsec {
  background: var(--theme-color-secondary);
  background-size: cover;
  background-position: top left;
  padding: 40px 0 40px;
  border-top: 4px solid rgba(0, 0, 0, 0.05);
  clear: both;
}

.ftsec h4 {
  /* color: var(--text-color-dark); */
  color: var(--theme-color-white);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  margin: 10px 0 36px;
}

.ftsec h4:after {
  content: "";
  background: var(--theme-color-white);
  height: 3px;
  max-width: 30px;
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 30px;
}

.ftsec p {
  font-size: 15px;
  line-height: 28px;
  color: var(--theme-color-white);
}

.ftsec p .fa {
  margin-right: 0.5em;
}

.ftsec p strong {
  font-size: 16px;
}

.ftsec ul {
  margin: 0;
  padding: 0;
}

.ftsec ul li {
  font-size: 16px;
  list-style: none;
  padding: 6px 0;
}

.fttxt {
  text-align: justify;
}

.ftsec a {
  text-decoration: none;
  color: var(--theme-color-white);
}

.ftsec input[type=email] {
  border-color: rgb(145, 139, 139);
  color: #000000 !important;
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 15px;
}

.submitbtn {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.2);
  font-size: 15px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  outline: 0;
  background: #000;
  text-transform: uppercase;
  font-weight: 600;
}

.ftbtm {
  background: var(--theme-color);
  text-align: center;
  padding: 20px 10px;
}

.footer-card-icon img {
  width: auto;
  max-height: 40px;
  margin: 0 auto;
}

.ftbtm .payment-icon {
  display: inline-block;
  opacity: 0.6;
  transition: opacity 0.3s;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
  padding: 3px 5px 5px;
  margin: 3px 3px 0;
}

.ftbtm .payment-icon svg {
  vertical-align: middle;
  height: 20px;
  width: auto !important;
  fill: #FFF;
}

.productbox {
  text-align: center;
  padding: 20px;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--theme-color);
  color: #fff;
  border-radius: 0px;
  transition: 0.5s ease all;
  position: relative;
  background: #fff;
  overflow: hidden;
  margin-bottom: 0px;
}

.featuresec p {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
  z-index: 2;
  position: relative;
  padding: 0 0px;
  text-transform: uppercase;
  color: var(--theme-color-white);
  font-family: var(--theme-body-font);
  height: 30px;
  overflow: hidden;
  overflow-y: scroll;
}

.featuresec .commonbtn {
  font-size: 14px;
  transition: all 0.5s;
  background-color: var(--theme-color-ultra);
  color: var(--theme-color-white);
}

.featuresec .commonbtn:hover {
  /* background: #fff; */
  /* color: var(--text-color-dark); */
  color: var(--theme-color-ultra);
}

@media only screen and (max-width: 1180px) {
  /*========================Header======================*/
  .headersec.sticky {
    position: relative;
  }
  .carticon-mb {
    display: block;
    position: absolute;
    top: 16px;
    right: 8px;
  }
  .cart-icon strong {
    width: 22px;
    height: 22px;
    line-height: 19px;
  }
  /* .bnrsec:before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background: #0c0c0c7a;
  } */
  .cmenu ul li:after {
    display: none;
  }
  .rmenubar {
    position: absolute;
    left: 8px;
    top: 14px;
    z-index: 99;
    display: block;
    font-size: 22px;
    background: transparent;
    padding: 0px;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-out;
  }
  .clsebtn svg {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 9999;
    color: #000;
    opacity: 0;
    transition: 0.3s ease all;
    visibility: hidden;
    animation-name: slowup;
    animation-duration: 0.3s;
  }
  .headersec.sticky .rmenubar {
    top: 12px;
  }
  /*    .clsebtn i,.clsebtn svg {
      color: #000;
      position: absolute;
      right: 20px;
      top: 14px;
      z-index: 9999;
      display: none;
      font-size: 22px;
      border: 2px solid #000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 27px;
  }*/
  .cmenu ul.navopen .clsebtn i, .cmenu ul.navopen .clsebtn {
    display: block;
  }
  .cmenu ul.navopen .clsebtn svg {
    top: 14px;
    opacity: 1;
    visibility: visible;
  }
  .rmenubar a {
    color: var(--theme-color-white) !important;
  }
  .headersec.sticky .rmenubar a {
    color: var(--text-color-dark) !important;
  }
  .headersec.sticky .commonbtn {
    margin-right: 25px;
  }
  .rmenubar a:hover, .rmenubar a:focus {
    color: var(--theme-color) !important;
  }
  .cmenu {
    padding: 18px 20px;
  }
  /*.cmenu ul {
          position: fixed;
          top: 0px;
          left: -100vw;
          width: 100vw;
          height: 100%;
          z-index: 999;
          background: #ffffff;
          overflow-y: scroll;
          font-size: 12px;
          transition: 0.5s ease all;
          opacity: 0.95;
      }
  */
  .cmenu ul {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: #ffffff;
    overflow-y: scroll;
    font-size: 12px;
    /*transition: 0.5s ease all;*/
    opacity: 0;
    visibility: hidden;
  }
  .cmenu ul li {
    display: block;
    padding: 0;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
  }
  ul.navopen {
    opacity: 0.95;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  ul.navopen li {
    animation-name: slowdown;
    animation-duration: 0.3s;
  }
  .cmenu ul li ul {
    margin: 0;
    padding: 0;
    position: unset;
    z-index: 999;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s ease-out;
  }
  .cmenu ul li a {
    color: rgba(102, 102, 102, 0.8509803922) !important;
    text-align: left;
    margin-left: 0;
  }
  .cmenu ul li ul a {
    color: var(--text-color-dark);
  }
}
@media only screen and (max-width: 767px) {
  .logo img {
    max-height: 40px;
  }
  .headersec {
    width: 100%;
  }
  .headersec .commonbtn {
    padding: 8px 7px;
    font-size: 13px;
  }
  .bnrsec .bnrcontent {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
    transform: translateX(0);
  }
  .bnrsec .bnrcontent h1, .bnrcontent h1 span {
    font-size: 20px;
  }
  .bnrcontent h1 span {
    color: #fff;
  }
  .productbox .commonbtn {
    position: relative;
    visibility: visible;
    opacity: 1;
  }
  .bnrsec .bnrcontent h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .icontxtsec.pt-5.pb-3 {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
  }
  .icontxtsec .icontxtbx p {
    margin-top: 5px !important;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .featuresec h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .productimg .wishicon {
    opacity: 1;
    visibility: visible;
    top: 5px;
  }
  .productbox {
    padding: 40px 20px 40px;
  }
  .productbox .productimg {
    padding: 10px;
  }
  .ftsec h4 {
    margin: 36px 0;
  }
  .ftsec .col-md-6:first-child h4 {
    margin-top: 10px;
  }
  .cmenu ul li:nth-child(6) {
    display: none;
  }
  .featuresec h3:after, .icontxtsec h3:after {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-top: 0.8rem;
  }
}
@media only screen and (max-width: 390px) {
  .headersec .commonbtn {
    padding: 8px 7px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 360px) {
  .logo img {
    max-height: 38px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bnrsec .bnrcontent h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .commonbtn {
    padding: 15px 20px;
    font-size: 16px;
  }
  .icontxtsec .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .icontxtsec .icontxtbx.text-center {
    padding: 50px 20px;
    min-height: 415px;
  }
  section.icontxtsec.blwheadsec {
    padding: 5rem 0 !important;
  }
  .productimg .wishicon {
    opacity: 1;
    visibility: visible;
    top: 5px;
  }
  .ftsec .col-md-6:nth-child(3) h4, .ftsec .col-md-6:nth-child(4) h4 {
    margin-top: 32px !important;
  }
  .logo img {
    max-height: 38px;
    margin-left: 5px;
  }
  .cmenu {
    font-size: 12px;
  }
  .cmenu ul li a {
    margin: 0 6px;
  }
}
@keyframes slowup {
  0% {
    opacity: 0;
    top: 25px;
  }
  10% {
    opacity: 0.1;
    top: 24px;
  }
  205% {
    opacity: 0.2;
    top: 23px;
  }
  30% {
    opacity: 0.3;
    top: 22px;
  }
  40% {
    opacity: 0.4;
    top: 21px;
  }
  50% {
    opacity: 0.5;
    top: 20px;
  }
  60% {
    opacity: 0.6;
    top: 19px;
  }
  70% {
    opacity: 0.7;
    top: 18px;
  }
  80% {
    opacity: 0.8;
    top: 17px;
  }
  90% {
    opacity: 0.9;
    top: 16px;
  }
  100% {
    opacity: 1;
    top: 15px;
  }
}
@keyframes slowdown {
  0% {
    opacity: 0;
    margin-top: -10px;
  }
  10% {
    opacity: 0.1;
    margin-top: -9px;
  }
  205% {
    opacity: 0.2;
    margin-top: -8px;
  }
  30% {
    opacity: 0.3;
    margin-top: -7px;
  }
  40% {
    opacity: 0.4;
    margin-top: -6px;
  }
  50% {
    opacity: 0.5;
    margin-top: -5px;
  }
  60% {
    opacity: 0.6;
    margin-top: -4px;
  }
  70% {
    opacity: 0.7;
    margin-top: -3px;
  }
  80% {
    opacity: 0.8;
    margin-top: -2px;
  }
  90% {
    opacity: 0.9;
    margin-top: -1px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}
.icontxtsec .icontxtbx.text-center {
  position: relative;
  /* border: 8px solid #fff; */
  /* background-color: #fff; */
}

.icontxtsec .icontxtbx.text-center .icon-heading {
  font-family: var(--theme-heading-font) !important;
  line-height: normal;
}

/* .icontxtsec .col-md-4{
    padding-left: 25px;padding-right: 25px;
}
.icontxtsec .icontxtbx.text-center:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #ebdcbf;
        border-radius: 50% 30% 35% 45%/35% 30% 60% 70%;
    animation: morpspin 20s linear infinite reverse;
    z-index: -1;
        right: 0;
    margin: 0 auto;
} */
.icontxtsec .icontxtbx .image {
  border: 8px solid #fff;
  width: 100%;
  height: 430px;
  overflow: hidden;
  transition-duration: 0.3s;
}

.icontxtsec .icontxtbx img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.icontxtsec .icontxtbx.text-center .iconcontent {
  position: relative;
  /* background: #fff; */
  background: var(--text-color-dark);
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20%;
  padding: 20px 25px;
  border: 5px solid var(--theme-color);
  min-height: 220px;
}

.icontxtsec .col-md-4:nth-child(even) .icontxtbx.text-center .iconcontent {
  border-bottom: 5px solid var(--theme-color-secondary);
}

.icontxtsec .icontxtbx p {
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-color);
}

.icontxtsec .icontxtbx p.subpara {
  font-weight: 400;
  font-size: 14px;
  color: var(--theme-color-white);
  margin-top: 10px;
}

.icontxtbx.text-center.ylwbg-clr {
  background: #ffffff;
}

.icontxtbx.text-center.ylwbg-clr p {
  color: #070337;
}

.logo a {
  color: #ee2d7a;
  /* font-size: 40px; */
}

section.icontxtsec.blwheadsec {
  padding: 4rem 0 12rem !important;
  position: relative;
  background: var(--theme-color-secondary);
}

section.icontxtsec.blwheadsec:before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 50%;
  background: var(--text-color-black);
  z-index: 0;
}

section.icontxtsec.blwheadsec .col-md-3:nth-child(even) .icontxtbx {
  min-height: 425px;
}

.iconsec-beforeimg {
  position: absolute;
  top: 10%;
  left: 0;
}

.iconsec-beforeimg img, .iconsec-afterimg img {
  width: auto;
  max-height: 390px;
}

.iconsec-afterimg {
  position: absolute;
  bottom: 10%;
  right: 0;
}

.productbox a.quickbtn {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
  width: auto;
  position: static;
  background: #527d22;
  padding: 10px 40px;
  font-size: 17px;
  font-weight: revert;
  border-radius: 30px;
  margin-top: 20px;
  display: inline-block;
}

.featuresec {
  position: relative;
  background: var(--theme-color-dark);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .icontxtsec .icontxtbx p {
    font-size: 16px;
  }
  .divider {
    width: auto !important;
    height: 12px !important;
    margin: 5px auto;
  }
  .featuresec p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .icontxtsec .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .icontxtsec .icontxtbx.text-center {
    padding: 0px;
  }
  .icontxtsec .icontxtbx.text-center .iconcontent {
    width: 100%;
    padding: 10px 15px;
  }
  section.icontxtsec.blwheadsec {
    padding: 3rem 0 10rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .icontxtsec .icontxtbx p {
    margin-top: 15px !important;
    font-size: 20px;
    margin-bottom: 5px;
    width: 100%;
  }
  .featuresec p {
    font-size: 22px;
    min-height: unset;
  }
  .logo a {
    font-size: 30px;
  }
  .logo {
    padding-left: 30px;
    position: relative;
    margin-top: -5px;
  }
  .icontxtsec .icontxtbx.text-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .icontxtsec .icontxtbx .image {
    width: 100%;
    height: auto;
  }
  .icontxtsec .icontxtbx.text-center {
    padding: 0;
    margin-bottom: 50px;
  }
  .icontxtsec .col-md-4:last-child .icontxtbx.text-center {
    margin-bottom: 0;
  }
  .bnrsec:after {
    display: none;
  }
}
@keyframes morpspin {
  to {
    transform: rotate(1turn);
  }
}
/* added */
/* added */
/* #style-4::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar
{
	width: 5px;
	background-color:var(--theme-color-ultraLight);
}

#style-4::-webkit-scrollbar-thumb
{
	background-color: var(--theme-color-ultra);
	border: 2px solid var(--theme-color-secondary);
} */
#style-4::-webkit-scrollbar-track
{
	/* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	/* background-color: #F5F5F5; */
}


#style-4::-webkit-scrollbar
{
	width: 5px;
	/* background-color:rgba(0, 0, 0, 0.15); */
}

#style-4::-webkit-scrollbar-thumb
{
	background-color:rgba(215, 215, 215, 0.5);
	
}
.prodImg {
  background: var(--theme-color-midgrey);
  padding: 2em;
}

.prodImg img {
  width: 100%;
}

.prodBox {
  margin-bottom: 2em;
}

.productbox .productimg {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  display: flex;
  justify-content: center;
  padding: 1.5em;
}

.productbox .productimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 215px;
  margin-bottom: 0;
  /* filter: drop-shadow(0px 5px 10px black); */
}

.prod_text_bx {
  background-color: var(--theme-color);
  padding-bottom: 1rem;
}

.prod_text_bx h4 {
  font-size: --font18 !important;
  color: var(--theme-color-white);
  padding: 0.5em 1em;
  background: var(--theme-color-ultra);
  text-align: center;
}

.prod_text_bx p span {
  padding: 0.5em 1.2em;
}

.cmenu2 ul li {
  text-align: right;
}

.cmenu2 ul li a {
  color: var(--theme-color-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-card-icon img {
  width: auto;
  max-height: 40px;
  margin: 0 auto;
}

.banner_cst {
  width: 100%;
  height: auto;
  background: url(../images/banner_cst1.png) no-repeat;
  min-height: 600px;
  background-position: center center;
  background-size: cover;
  position: relative;
  /* border-bottom: 15px solid var(--theme-color); */
}

.banner_text {
  width: 100%;
  max-width: 500px;
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  box-sizing: border-box;
  padding: 2em;
  margin-top: 1em;
  color: var(--theme-color-black);
}

.banner_text h1 {
  color: var(--theme-color);
  font-size: var(--font60);
  line-height: var(--font72);
  font-family: var(--theme-heading-font);
  text-transform: capitalize;
  padding-bottom: 0.3em;
}

.banner_text p {
  color: var(--theme-color-white);
}

.banner_img {
  position: absolute;
  border-radius: 0 50px 0 50px;
  background: var(--theme-color-white);
  border: 5px solid var(--theme-color-secondary);
  height: 300px;
  width: 300px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.banner_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 50px 0 50px;
}

/* slidre */
#products .slick-prev,
#products .slick-next {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--theme-color);
  color: #fff;
  border-radius: 5px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border: 0;
  outline: 0;
  font-size: 0;
}

#products .slick-prev {
  left: -22px;
}

#products .slick-prev::after {
  content: "\f104";
  font-size: 30px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "FontAwesome";
  z-index: 9999;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
}

#products .slick-next {
  right: -22px;
}

#products .slick-next::after {
  content: "\f105";
  font-weight: 600;
  font-size: 30px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "FontAwesome";
  top: 50%;
  transform: translateY(-50%);
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 10px;
}

.slick-initialized .slick-slide {
  margin: 0 10px;
}

/* lir */
.con-mid-sec {
  background: var(--theme-color-ultraLight);
  position: relative;
}
.con-mid-sec::after{
  background: var(--theme-color);
  height: 100%;
  width: 250px;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.cont_heading {
  /* background-color: var(--theme-color); */
  padding: 2em 0;
  text-align: left;
  z-index: 2;
  position: relative;
}
.cnt_main{
  margin-top: 3em;
  align-items: center;
  justify-content: space-between;
}
.cont_heading h5 {
  font-size: var(--font24);
  color: var(--theme-color-secondary);
  text-transform: uppercase;
  font-family: var(--theme-body-font);
  padding-top: 1em;
  padding-bottom: 0.3em;
}
.cont_heading h3 {
  font-size: var(--font48);
  color: var(--theme-color-black);
  text-transform: uppercase;
}

.cont_txt {
  width: 100%;
  background: var(--theme-color-dark);
  padding: 2em;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cont_txt ul {
  margin: 0;
  padding: 2em 2em;
}

.cont_txt ul li {
  list-style: none;
  padding-left: 2em;
  color: var(--theme-color-white);
  text-align: left;
  margin-bottom: 1em;
  position: relative;
}

.cont_txt ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.cont_img {
  transition: all ease 0.3s;
}

.cont_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.productcontent {
  background: var(--theme-color-ultra);
  padding: 1em 0.5em;
  text-align: center;
}

#productDescriptionBox p{
    color: var(--theme-color-ultraLight);
    padding: 1em;
}
.mid_headig_line {
  width: 2px;
  height: 40px;
  margin: 0px auto;
  background: var(--theme-color-dark);
  margin-bottom: 20px;
}

.mid_heading {
  transition: all ease 0.3s;
  text-align: left;
  background: var(--theme-color-white);
}

.mid_heading h3 {
  font-size: var(--font36);
  color: var(--theme-color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--theme-body-font);
}

.mid_heading p {
  font-size: var(--font16);
  line-height: 25px;
  color: var(--theme-color-dark);
  font-weight: 300;
  padding-top: 0.5em;
}

.mid_tw {
  background: var(--theme-color-midgrey);
  padding: 5em 0;
}

.fr_box_cont {
  position: relative;
}
.fr_box_cont .fr_box {
  background: var(--theme-color-secondary);
  padding: 2em;
  border-radius: 0 50px 0 50px;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5em;
  height: 360px;
}
.fr_box_cont .fr_box h5 {
  color: var(--theme-color-ultraLight);
  font-size: var(--font20);
  font-family: var(--theme-body-font);
}
.fr_box_cont .fr_box p {
  color: var(--theme-color-white);
}
.fr_box_cont .fr_box:hover {
  transform: translateY(-5px);
}

.fr_box_cont:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--theme-color-ultra);
  height: 100px;
}

.tw_img {
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  border: 20px solid var(--theme-color-ultra);
  border-radius: 0 80px 0 80px;
  height: 500px;
}
.tw_img img {
  width: 110%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 80px 0 58px;
}

.tw_img::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -100px;
  top: -50px;
  height: 150px;
  width: 150px;
  border-radius: 0 80px 0 80px;
  background: var(--theme-color-secondary);
  border: 10px solid var(--theme-color);
}

.tw_text {
  width: 100%;
}
.tw_text h3 {
  font-family: var(--theme-body-font);
  color: var(--theme-color-secondary);
}
.tw_text p {
  padding-top: 0.5em;
}
.tw_text ul {
  margin: 0;
  padding: 0;
  padding-top: 1em;
}
.tw_text ul li {
  list-style: none;
  padding-left: 2em;
  position: relative;
  color: var(--theme-color-dark);
  padding-bottom: 0.5em;
}
.tw_text ul li:after {
  content: "\f142";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: FontAwesome;
  color: var(--theme-color-secondary);
}

.mid_thr {
  padding: 2em 0;
  position: relative;
  background: var(--theme-color-midgrey);
}
.mid_thr .thr_text {
  position: relative;
  z-index: 2;
}
.mid_thr .thr_text h3 {
  color: var(--theme-color-white);
  font-family: var(--theme-body-font);
}
.mid_thr .thr_text p {
  padding-top: 0.5em;
}
.mid_thr .thr_img {
  height: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.mid_thr .thr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mid_thr:after {
  content: "";
  background: var(--theme-color-secondary);
  width: 100%;
  height: 330px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* added  */
@media only screen and (max-width: 1180px) {
    .fr_box_cont:after{
        height: 80%;
        width: 30%;
    }
    .con-mid-sec::after{
        background: var(--theme-color-secondary);
    }
    .mid_thr:after{
        height: 300px;
    }
  .banner_img {
    width: 200px;
    height: 200px;
    border-radius: 0 15px 0 15px;
  }
  .mid_thr {
    padding: 0em 0 3em;
  }
  .mid_thr .thr_text {
    padding-bottom: 2em;
  }
  .mid_thr .thr_text h3 {
    color: var(--theme-color);
  }
  .tw_text {
    padding-top: 2em;
  }
  .tw_img::before {
    height: 120px;
    width: 120px;
    left: -50px;
  }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .banner_text {
    width: 90%;
    max-width: 500px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: left;
    box-sizing: border-box;
    padding: 2em;
    background: radial-gradient(rgb(226, 226, 226), transparent);
  }
  .banner_text h1 {
    padding-bottom: 0.2em;
  }
  #products .slick-prev {
    left: 0px;
  }
  #products .slick-next {
    right: 0px;
  }
  .mid_heading h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .bottom_text {
    margin-bottom: 0.5em;
  }
  /* .product{
      background-image: url(../images/inner-bg_responsive.png);
      background-size: contain;
  } */
}
@media only screen and (max-width: 820px) {
    
    .fr_box_cont .fr_box{
        height: 340px;
    }
    .mid_thr .thr_img{
        margin-top: 3em;
    }
  .featuresec h3 {
    margin-bottom: 30px;
  }
  .commonbtn {
    font-size: 16px;
  }
  .banner_text {
    max-width: 400px;
  }
  .cmenu2 {
    display: none;
  }
  .cmenu {
    position: absolute;
  }
}
@media only screen and (max-width: 767px) {
    .mid_thr .thr_img{
        margin-top: 1em;
    }
    .mid_tw{
        padding-bottom: 3em;
    }
    .mid_thr:after{
        height: 255px;
    }
    .mid_thr .thr_text h3{
        font-size: var(--font24);
    }
    .tw_img{
        width: 94%;
    }
    .tw_img img{
        width: 114%;
    }

  .banner_img {
    width: 150px;
    height: 150px;
    border-radius: 0 15px 0 15px;
    right: 5%;
    bottom: 13%;
    top: unset;
    transform: unset;
  }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .featuresec {
    padding: 30px 0px 60px;
  }
  .prod_heading {
    margin-top: 10px;
  }
  .featuresec h3 {
    margin-bottom: 30px;
  }
  .banner_text {
    top: 45%;
  }
  .banner_text h1 {
    font-size: var(--font36);
    line-height: var(--font36);
  }
  .cont_heading h5 {
    font-size: var(--font36);
  }
  /* .product{
      background-image: url(../images/inner-bg_responsive.png);
      background-size: cover;
  } */
}
/* aded *//*# sourceMappingURL=custom.css.map */

.terms-content p strong, strong, b{display: block;margin-top: 10px;margin-bottom: 10px;}

/* / Ingredients Table CSS  / */
.ingre-heading {
    font-size: 38px;
    text-align: left;
    text-transform: uppercase;
    padding: 30px 0px;
    color: #383838;
    position: relative;
    font-weight: 700;
}
.supplement-box{
    padding: 15px;
    border: 2px solid #383838;
    margin-bottom: 20px;
}
.bx-header{
    margin-bottom: 20px;
}
.bx-header h5{
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #383838;
}
.bx-header p{
    font-size: 28px;
    line-height: 1.2;
    color: #383838;
}
.table-header th{
    border-top: 30px solid #383838;
    border-bottom: 10px solid #383838;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}
tbody {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 30px solid #383838;
}
.table td{
    border-top: 1px solid #383838;
} 
.tb-stats{
    text-align: right;
}
.tb-sub{
    position: relative;
    left: 30px;
}
.tb-sub2{
    position: relative;
    left: 60px;
}
.table-footer{
    border-top: 30px solid #383838;
}
.btm-text{
    font-size: 18px;
    font-weight: 500;
}


@media (max-width: 1200px) {
    tbody{
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .bx-header h5 {
        font-size: 60px;
    }
    .bx-header p{
        font-size: 20px;
    }
    .table-header th{
        font-size: 14px;
    }
    tbody{
        font-size: 14px;
    }
    .tb-sub {
        left: 15px;
    }
    .tb-sub2 {
        left: 30px;
    }
    .btm-text{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .ingre-heading{
        font-size: 30px;
    }
    .bx-header h5 {
        font-size: 30px;
    }
    .bx-header p{
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .ingre-heading{
        font-size: 24px;
    }
    .bx-header h5 {
        font-size: 24px;
    }
}
@media (max-width:414px) {
    .table-header th {
        font-size: 11px;
        line-height: 20px;
    }
}
.ftsec strong{
    display: inline-block;
}