body {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow-x: hidden !important;
  font-family: "Poppins", sans-serif !important;
  position: relative;
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

.row {
  display: flex;
  align-items: center;
}

/*Top section strats*/
.gift {
  float: right;
}

.gift ul {
  /* display: flex; */
}

.gift ul li {
  float: left;
}

.gift ul li a {
  margin-left: 30px;
}

.gift ul li a i {
  margin-right: 10px;
}

.off a {
  color: #fff;
  font-size: 15px;
  transition: 0.5s;
}

.off a:hover {
  color: #000;
  transition: 0.5s;
}

.off {
  padding: 4px 50px 4px;
  background: #f78014;
}

/*Top section ends*/
/*Banner Section*/
.banner-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  width: auto;
  height: auto;
  text-align: right;
  right: 0;
  margin: 0;
}

.owl-theme .owl-nav [class*="owl-"] {
  margin: 0 !important;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
  position: relative;
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  opacity: 1;
  border-radius: 0;
  outline: none;
}

.banner-carousel .owl-nav .owl-next {
  background: #f78014 !important;
  border-radius: 0 !important;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

.banner_five_bg {
  border-bottom-left-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.banner-carousel.five .slide-item {
  position: relative;
  display: block;
  height: 700px;
  overflow: hidden;
}

/*Banner Section*/
/* navbar regular css start */
.navbar-area {
  background: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.site-logo img {
  width: 180px;
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

header.header-area {
  padding: 5px 0;
}

.site-navbar li {
  position: relative;
  display: inline-block;
}

.site-navbar li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 75%;
  width: 0;
  height: 2px;
  background-color: #fece01;
  transition: width 0.3s ease-in-out;
}

.site-navbar li:hover:after {
  width: 100%;
}

.site-navbar ul li a {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  padding: 0;
  display: block;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.5s;
  font-family: "Poppins", sans-serif !important;
}

/* navbar regular css end */
/* nav-toggler css start */
.nav-toggler {
  /* border: 3px solid #f78014; */
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
  outline: none;
  border: none;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #f78014;
  display: block;
  transition: 0.3s;
}

.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

/* nav-toggler css start */
/* intro-area css start */
.intro-area {
  height: calc(100vh - 61px);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.intro-area h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 25px;
}

.intro-area p {
  font-size: 18px;
}

/* intro-area css end */

@media screen and (max-width: 1200px) {

  .site-navbar ul li:first-child {
    padding-left: 1rem;
  }

  .site-navbar ul {
    gap: 1rem;
  }

  .site-navbar ul li {
    width: max-content;
  }
}

@media screen and (max-width: 1024px) {
  .site-navbar ul {
    gap: 0.7rem;
  }

  /* .site-navbar ul li:first-child {
    padding-left: 1rem;
  } */
}

/* mobile breakpoint start */
@media screen and (max-width: 767px) {
  .container {
    max-width: 720px;
  }

  /* navbar css for mobile start */
  .nav-toggler {
    display: block;
  }

  .site-navbar {
    min-height: 60px;
  }

  .site-navbar ul {
    position: absolute;
    width: 100%;
    /* height: calc(100vh - 60px); */
    /* height: 100vh; */
    left: 0;
    top: 80px;
    flex-direction: column;
    align-items: center;
    background-color: #f78014;
    background-image: url(../images/bg-menuopen.svg);
    background-repeat: no-repeat;
    background-position-y: bottom;
    max-height: 0;
    overflow: hidden;
    z-index: 9;
    transition: 0.3s;
    gap: 0.5rem;
  }

  .site-navbar ul li {
    width: 100%;
    /* border-bottom: 1px solid #fff; */
    border-bottom: none !important;
    left: 13rem;
    margin-top: 0.5rem;
  }

  .site-navbar ul li:first-child {
    padding-top: 2rem;
    padding-left: 0rem;
  }

  .site-navbar ul li:last-child {
    padding-bottom: 6rem;
  }

  .site-navbar ul li a {
    padding: 14px;
    transition: 0.5s;
    color: #fff;
  }

  .site-navbar ul li a:hover {
    color: #f78014;
    transition: 0.5s;
  }

  .site-navbar ul.open {
    /* max-height: 30vh; */
    max-height: max-content;
    overflow: visible;
  }

  .intro-area h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 500px !important;
  }
}

@media screen and (max-width: 530px) {
  .site-navbar ul li {
    left: 7rem;
  }
}

@media screen and (max-width: 420px) {
  .site-navbar ul li {
    left: 5rem;
  }

  .site-navbar ul li:first-child {
    padding-top: 1rem;
  }
}

@media screen and (min-width: 424px) {
  .site-navbar ul {
    background-size: cover;
  }
}

/*Mirackle Section*/
section.miracle {
  /* padding: 60px 0; */
}

ul.nav.nav-pills.nav-fill li a {
  width: 70%;
  margin: 0 auto;
  padding: 15px;
  color: #000;
  font-weight: 700;
  font-size: 25px;
}

.mir_section h2 {
  padding-bottom: 40px;
  font-size: 40px;
  font-weight: 800;
  color: #fece01;
  position: relative;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #fece01 !important;
}

.mir_section h2:after {
  position: absolute;
  background: #fece01;
  right: 0;
  top: 49px;
  left: 43%;
  content: "";
  width: 155px;
  height: 4px;
  z-index: -1;
}

.tab-content>.active {
  text-align: center;
}

.tab-content {
  padding: 50px 0 0;
}

.home div#pills-home {
  background-image: url(../images/bond.jpg);
  background-repeat: no-repeat;
  width: 100%;
  min-height: 400px;
  font-size: 16px;
  background-position: center;
}

.top-line-left:after {
  position: absolute;
  content: "";
  background-image: url(../images/icons/Vector.png);
  width: 100%;
  height: 41px;
  top: 20px;
  left: 140px;
  background-repeat: no-repeat;
}

ul.left {
  padding: 50px 0;
  width: 60%;
}

.top-line-right:after {
  position: absolute;
  content: "";
  background-image: url(../images/icons/Vector-right.png);
  width: 100%;
  height: 41px;
  top: 50px;
  left: 25px;
  background-repeat: no-repeat;
}

ul.right {
  padding: 50px 0;
  width: 60%;
  float: right;
}

.bottom-line-left:after {
  position: absolute;
  content: "";
  background-image: url(../images/icons/Vector-bottom.png);
  width: 100%;
  height: 41px;
  top: 0;
  left: 140px;
  background-repeat: no-repeat;
}

ul.left-bottom {
  padding: 50px 0;
  width: 60%;
}

.bottom-line-right:after {
  position: absolute;
  content: "";
  background-image: url(../images/icons/Vector-bottom-left.png);
  width: 100%;
  height: 41px;
  top: 20px;
  left: 220px;
  background-repeat: no-repeat;
}

ul.right-bottom {
  padding: 50px 0;
  width: 60%;
  float: right;
}

div#pills-home h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 15px 0;
  color: #fece01;
  text-align: center;
  margin: 0;
}

div#pills-home p {
  font-size: 14px;
}

/******************Testimonials Section starts******************/
.test.text-center {
  padding: 50px 0 25px;
}

.pass {
  margin-top: 50px;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  position: relative;
  margin: 40px 0;
  padding: 30px 0;
  min-height: 400px;
  max-height: 400px;
}

.pass:before {
  position: absolute;
  content: "";
  background: url(../images/p4.png);
  width: 187px;
  height: 188px;
  top: 2px;
  background-size: 100%;
  background-repeat: no-repeat;
  left: -3px;
  right: 0;
  margin: auto;
}

.pass img {
  margin-top: 55px;
}

.pass p {
  text-align: left;
  padding: 50px 10px 23px 31px;
}

.test .owl-carousel .owl-item img {
  display: block;
  width: unset;
  margin: 0 auto;
}

.pass h6 {
  text-align: right;
  padding-right: 25px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  color: #263a5c;
  position: absolute;
  right: 0;
  bottom: 25px;
}

.test .owl-prev {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -50px;
  margin-left: -20px;
  display: block !important;
  border: 0px solid black;
}

.test .owl-next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: -50px;
  display: block !important;
  border: 0px solid black;
}

.owl-prev i,
.owl-next i {
  transform: scale(1, 6);
  color: #ccc;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.test span {
  font-size: 60px;
  line-height: 30px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #ffce01 !important;
  color: #191820 !important;
  text-decoration: none;
}

.owl-next:focus,
.owl-prev:focus {
  outline: none;
}

.test h4 {
  color: #35302c;
  font-size: 30px;
  font-weight: 900;
}

.test h2 {
  font-size: 40px;
  color: #191622;
  font-weight: 700;
  padding: 13px 0;
}

.health_sec .owl-nav.disabled {
  display: none !important;
}

/******************Testimonials Section Ends******************/
/******************Client Section Ends******************/
section.client {
  background-image: url(../images/trust.png);
  background-color: #ffce01;
  background-repeat: repeat-x;
  padding-bottom: 25px;
  background-size: cover;
}

section.client h2 {
  padding: 25px 0 0;
}

.trust h2 {
  position: relative;
  font-size: 40px;
  color: #fff;
  font-weight: 800;
}

.trust h2:before {
  position: absolute;
  content: "";
  width: 400px;
  height: 2px;
  left: -12px;
  top: 50px;
  background: white;
}

.trust h2:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 2px;
  right: -12px;
  top: 50px;
  background: white;
}

.trust img {
  width: 160px;
  height: 100px;
  margin: 10px 0;
  object-fit: contain;
}

.trust h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.trust.product h5 {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

/******************Client Section Ends******************/
/******************Video Section******************/
.wht {
  padding-top: 70px;
  padding-bottom: 70px;
}

.wht span {
  display: none;
}

.wrapper img {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  width: 100%;
}

.page-template-liposomal-vitamin-tpl .wrapper img {
  box-shadow: unset;
  width: 100%;
}

.vdo h2 {
  padding-bottom: 15px;
}

.vdo li {
  padding: 10px 0px;
  font-size: 16px;
  line-height: 35px;
  display: flex;
  color: #000;
  position: relative;
}

.vdo li:before {
  position: absolute;
  content: "";
  background: url("../images/elli1.png");
  width: 15px;
  height: 15px;
  left: -31px;
  top: 17px;
}

.vdo ul {
  padding-bottom: 30px;
  padding-left: 30px;
}

.vdo a {
  background: #ffce01;
  padding: 10px 36px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition: 0.5s;
}

.vdo a:hover {
  background: #f78014;
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
}

.page-template-liposomal-vitamin-tpl .video-main {
  position: absolute;
  top: 45%;
  left: 45%;
  z-index: 9;
}

.video-main {
  position: absolute;
  top: 45%;
  left: 45%;
  z-index: 9;
}

.video-main a:hover {
  color: #ffce01;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #000;
  display: inline-block;
  background: #fff;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgb(255 255 255 / 30%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/******************Video Section Ends ******************/
/******************Product Section starts***************/
.drink img {
  width: unset !important;
  margin: 0 auto;
}

.drink {
  margin-top: 50px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding-bottom: 20px;
  position: relative;
}

.drink:before {
  position: absolute;
  content: "\f07a";
  font-family: "FontAwesome";
  top: 13px;
  font-size: 20px;
  right: 16px;
  width: 32px;
  height: 31.44px;
  background: #ffce00;
  color: white;
  border-radius: 100%;
}

.drink a {
  width: 123px;
  height: 43px;
  padding: 5px 9px;
  background: #ffce00;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  text-decoration: none;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  align-items: flex-end;
  color: #000000;
  transition: 0.4s;
}

.drink h6 {
  padding-bottom: 13px;
}

.drink a:hover {
  background: green;
  text-decoration: none;
  color: white;
}

/******************Product Section starts***************/
.health_sec {
  /*background-image: url(../images/health.png);
    background-color: #ffce01;*/
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.health h2 {
  font-weight: 900;
  font-size: 50px;
  padding-bottom: 40px;
}

/********************Product Section Starts************************/
/********************Benifits Section ends************************/
.flip-card {
  background-color: transparent;
  width: 260px;
  height: 280px;
  perspective: 1000px;
  margin-top: 50px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #ffce01;
  color: black;
  padding: 50px 20px;
}

.flip-card-back {
  background-color: #000;
  color: white;
  transform: rotateY(180deg);
  text-align: left;
}

/*.flip-card ul {
    list-style-type: disc;
    margin-left: 30px;
    line-height: 27px;
    font-size: 14px;
    padding: 30px 10px;
}*/
.flip-card-back p {
  margin: 0;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  height: 280px;
}

h3.safe {
  font-style: normal !important;
  font-size: 40px !important;
  line-height: 60px;
}

.benifits button.owl-next span {
  font-size: 60px;
  line-height: 30px;
}

.benifits button.owl-prev span {
  font-size: 60px;
  line-height: 30px;
}

.benifits button.owl-next {
  position: absolute;
  right: -50px;
  top: 50%;
}

.benifits button.owl-prev {
  position: absolute;
  left: -70px;
  top: 50%;
}

.benifits .owl-next:focus,
.benifits .owl-prev:focus {
  outline: none;
}

.benifits .owl-prev {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -50px;
  margin-left: -20px;
  display: block !important;
  border: 0px solid black;
}

.benifits .owl-next {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: -50px;
  display: block !important;
  border: 0px solid black;
}

section.slider p {
  font-size: 16px;
  line-height: 25px;
}

.benifits.text-center {
  padding: 0;
}

.benifits .owl-carousel .owl-item img {
  display: block;
  width: unset;
  margin: 15px auto 30px;
}

.benifits h4 {
  font-weight: 900;
  padding-bottom: 30px;
}

.benifits h2 {
  font-weight: 900;
  color: #ffce00;
  text-transform: uppercase;
}

/********************Benifits Section ends************************/
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

/******************last slider starts******************/
.swiper-slide {
  background: #ffce01;
}

.slider h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

section.slider {
  background: #ffce01;
  padding: 80px 0;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  background: #ffce01 !important;
  border: 1px solid #090401 !important;
  opacity: 1 !important;
  color: #090401 !important;
  font-size: 13px;
  font-weight: 700;
}

/*.imunity.slider ul {
    text-align: left;
    list-style-type: disc;
    line-height: 40px;
    margin-left: 25px;
    font-size: 17px;
}*/
ul.list-icons li img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

ul.list-icons li {
  margin-right: 45px;
}

ul.list-icons {
  display: inline-block;
  list-style: none;
  text-align: center;
  font-size: 14px;
  margin-bottom: 30px !important;
}

ul.list-icons li {
  margin-right: 36px;
  line-height: 38px;
  margin-left: 0;
}

.swiper-pagination-bullet-active {
  color: #fff !important;
  background: #090401 !important;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #090401 !important;
}

.swiper-pagination {
  position: unset !important;
  text-align: right !important;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

section.slider p {
  text-align: left;
}

section.slider a {
  text-align: left;
  float: left;
  background: #fff;
  padding: 8px 25px;
  border-radius: 4px;
  font-size: 15px;
  color: #000;
  font-weight: 700;
  margin-top: 20px;
  transition: 0.5s;
}

section.slider a:hover {
  background: #000;
  color: #fff;
  transition: 0.5s;
}

section.slider h3 {
  line-height: 40px;
  text-align: left;
  padding-bottom: 0;
  font-weight: bold;
  font-size: 25px;
  font-style: italic;
}

/******************last slider ends******************/
/******************footer starts******************/
footer {
  padding: 50px 0 0 0;
  background-image: url(../images/ff.png);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.bottom {
  padding: 20px 0 0;
}

.bottom p {
  font-size: 14px;
}

.common h5 {
  padding-bottom: 20px;
}

.twi.common img {
  padding-bottom: 30px;
}

.form.common h5 {
  padding-bottom: 15px;
}

.form {
  padding-top: 45px;
  padding-bottom: 30px;
  background: white;
  color: #ffce00;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 27px;
  padding-left: 20px;
  padding-right: 20px;
}

input.log {
  width: 100%;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  padding: 10px 0px;
}

form.log a {
  text-align: center;
  background: #ffce01;
  color: #000;
  padding: 5px 30px;
  font-weight: 700;
  border-radius: 7px;
  transition: 0.5s;
}

form.log a:hover {
  background: #000;
  color: #ffce01;
  transition: 0.5s;
}

.contact.common ul i {
  position: absolute;
  left: -30px;
  margin-top: 13px;
  font-size: 17px;
}

.contact.common ul i {
  position: absolute;
  left: -30px;
  top: 0;
  font-size: 17px;
  font-weight: 100;
  font-family: "FontAwesome";
}

.contact.common ul {
  line-height: 40px;
  padding: 0;
}

.common.class ul li a {
  line-height: 28px;
  color: #fff;
  transition: 0.5s;
}

.common.class ul li a:hover {
  color: #ffce01;
  transition: 0.5s;
}

.twi.common ul {
  display: flex;
  padding: 0;
}

.twi.common ul li a i {
  background: #ff0000;
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 30px;
  color: #fff;
  font-family: "FontAwesome";
  font-weight: 100;
}

.twi.common ul li a {
  margin-right: 10px;
}

/*Vitaminc Page*/
.lipo {
  background: #ffce00;
  padding: 33px 10px;
}

.fac ul li a i {
  font-size: 30px;
  color: #fff;
  font-family: "FontAwesome";
  font-weight: 100;
}

.fac ul li a {
  margin-left: 40px;
}

.single-blog .fac ul,
.tax-blog_category .fac ul {
  display: flex;
  float: right;
}

.single-blog .fac ul {
  list-style: none;
  line-height: unset;
  padding: 0;
}

.lipo h1 {
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.better {
  padding: 60px 0;
}

.bet {
  position: relative;
}

.bet h6 {
  padding-bottom: 20px;
  position: relative;
  font-style: italic;
  color: #f78014;
  font-weight: 800;
}

.bet h6:after {
  position: absolute;
  width: 210px;
  height: 2px;
  content: "";
  top: 30px;
  left: 0;
  background: #ffce00;
}

.bet h2 {
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 17px;
  padding-top: 10px;
}

.bet h3 {
  font-size: 17px;
  padding: 10px 0;
  font-weight: 600;
}

/*About Section*/
.about {
  background: #ffca08;
}

/*.nut img {
    padding-top: 35px;
}*/
.nut {
  position: relative;
}

.wht img {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  width: 100%;
  border: 6px solid #ffce01;
}

.nut2 {
  padding-top: 35px;
  padding-bottom: 18px;
  position: relative;
}

.nut2:after {
  position: absolute;
  content: "";
  background: url(../images/pro2.png);
  width: 260px;
  height: 302px;
  top: 74px;
  right: -76px;
}

.nut2 h6 {
  position: relative;
  font-size: 30px;
}

.nut2 h6:after {
  position: absolute;
  width: 91px;
  height: 2px;
  top: 47px;
  left: 0px;
  content: "";
  background: #000000;
}

.nut2 h2 {
  padding-top: 35px;
  padding-bottom: 0;
  line-height: 30px;
  font-size: 28px;
  font-weight: 900;
}

.about h6,
h2 {
  font-weight: 900;
}

.about p {
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}

.few h6 {
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
}

.few h6:before {
  position: absolute;
  width: 210px;
  height: 2px;
  content: "";
  background: #ffce00;
  top: 54px;
  left: 0px;
}

.words {
  padding-top: 28px;
  position: relative;
}

.words h2 {
  line-height: 30px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 900;
}

.words ul {
  padding-left: 0px;
  padding-top: 10px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 35px;
}

.words ul li i {
  position: absolute;
  left: -20px;
  top: 10px;
}

.words ul li {
  list-style: none;
  position: relative;
}

.few h6 {
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
}

.few h6:before {
  position: absolute;
  width: 110px;
  height: 2px;
  content: "";
  background: #ffce00;
  top: 40px;
  left: 0px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 !important;
  z-index: 99;
  box-shadow: 0 1px 9px 0 rgb(0 0 0 / 9%), 0 6px 11px 0 rgb(0 0 0 / 10%);
}

.sticky+.content {
  padding-top: 60px;
}

input#email {
  margin-bottom: 20px;
}

/******************rating******************/
.rating {
  background-image: url(../images/background/vitimine-c.png);
  background-color: #ffca08;
  padding-top: 35px;
  padding-bottom: 35px;
}

.rate h2 {
  line-height: 75px;
}

.star {
  margin-left: 0px;
  margin-top: 30px;
}

/*.rate i {
    background: black;
    color: #FFCA08;
    width: 42px;
    height: 35px;
    padding-top: 4px;
    padding-left: 7px;
    margin-left: 0px;
    font-size: 28px;
}*/
.page-template-liposomal-vitamin-tpl .slick-prev.slick-arrow {
  background-image: unset;
  background-size: 20px;
}

.page-template-liposomal-vitamin-tpl .slick-next.slick-arrow {
  background-image: unset;
  background-size: 20px;
}

.rate2 {
  background: white;
  margin-left: 47px;
}

.rate2 img {
  margin-left: 97px;
}

.aa {
  position: relative;
}

.rate2 img {
  /* margin-left: 97px; */
  width: unset !important;
  margin: 0 auto;
}

.aa a {
  padding: 6px 37px;
  background: #000;
  margin-top: 23px;
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
  color: #ffffff;
  transition: 0.4s;
}

.aa a:hover {
  background: green;
  text-decoration: none;
  color: white;
}

.aa p {
  align-items: center;
  vertical-align: middle;
  margin: 0;
  float: right;
  font-size: 25px;
  margin-top: 25px;
  font-weight: 900;
}

.rate h2 {
  line-height: 50px;
  font-weight: 900;
  font-size: 27px;
}

.rate p {
  line-height: 30px;
}

.rate ul li {
  list-style-type: disc;
}

.rate ul {
  margin-left: 20px;
  line-height: 35px;
  padding: 16px 0;
}

section.testimonials {
  padding-top: 0;
}

section.testimonials h2:after {
  position: absolute;
  content: "";
  top: 70px;
  left: 40%;
  background: #ffce01;
  width: 210px;
  height: 4px;
}

section.testimonials h2 {
  position: relative;
  padding-bottom: 20px;
}

/*************Product Page******************/
.product {
  /* margin: 50px 0px; */
}

.product .owl-carousel .owl-item img {
  display: block;
  width: 60%;
  margin: 0px auto;
}

.product .slide-item {
  background-color: #ffca09;
}

.product .banner-carousel.five .slide-item {
  position: relative;
  display: block;
  height: 470px;
  overflow: hidden;
}

.buy-now .select-wrapper select {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.buy-now .select-wrapper button {
  padding: 10px 15px !important;
  position: absolute;
  height: 50px;
  width: 50px;
  pointer-events: none;
  right: 0px;
  background: #000;
  color: white;
  border: 1px solid #000;
  border-radius: 5px;
}

.btn.btn-purple {
  transition: 0.2s background ease-in-out;
  color: black;
  background: #ffffff;
  font-weight: bold;
  font-size: 15px;
}

.buy-now a {
  width: 48%;
  padding: 15px 10px;
}

.buy-now .select-wrapper {
  position: relative;
  width: 48%;
}

.buy-now .btn {
  display: block;
  text-align: center;
  z-index: 9;
}

.buy-now {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.btn.btn-purple:hover {
  background: #000;
  color: #fff;
}

.slider-product p {
  /* background: #fff; */
  width: 50%;
  padding: 15px;
  border-radius: 5px;
}

.slider-product h2 {
  font-size: 30px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product .drink {
  min-height: 590px;
  padding-top: 60px;
}

.product .drink h2 {
  padding: 12px 0;
  color: white;
  background: #f78014;
  font-weight: bold;
  font-size: 25px;
}

.cool.drink {
  padding-top: 0;
}

.drink-content {
  padding: 30px 15px;
}

.drink-content h6 {
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 30px;
}

.trust.product h2 {
  position: relative;
  font-size: 40px;
  color: #000;
  font-weight: 800;
}

.trust.product h2:before {
  position: absolute;
  content: "";
  width: 400px;
  height: 2px;
  left: -12px;
  top: 25px;
  background: #ffce01;
}

.trust.product h2:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 2px;
  right: -12px;
  top: 25px;
  background: #ffce01;
}

/*.trust.product h5 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}*/
.trust.product.text-center {
  padding: 50px 0 100px;
  margin: 0;
}

.best_section {
  background-image: url(../images/background/best.png);
  background-color: #ffce01;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.close1 h2 {
  padding-bottom: 20px;
  line-height: 40px;
  padding-top: 30px;
  position: relative;
  font-size: 25px;
  font-weight: 700;
}

.close1 h2:before {
  position: absolute;
  width: 120px;
  height: 1px;
  top: 1px;
  left: 40px;
  content: "";
  background: #000000;
}

.close2 ul {
  line-height: 35px;
  list-style: disc;
  margin-left: 20px;
}

.close1 h4,
h2 {
  font-weight: 900;
}

/* section.tab {
    padding: 100px 0;
} */

section.tab .helath-tab {
  padding: 100px 0;
}

.tab .tab-pane {
  background-image: unset;
  min-height: unset;
  text-align: left;
}

section.tab h2 {
  text-align: center;
  padding: 15px 0 50px 0;
}

section.tab h4 {
  text-align: center;
  padding: 15px;
}

.helath-tab .tab-content {
  padding: 50px 30px 20px;
  /* border: 1px solid #ffce01; */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #000;
  background-color: #fff;
  border-color: #ffce01 #ffce01 #fff !important;
  background: #ffce01 !important;
  padding: 15px 50px;
  font-size: 20px;
  font-weight: 900;
}

.page-template-product-tpl .nav-tabs .nav-item {
  padding: 15px 80px !important;
}

/* 
a#nav-profile-tab {
    border: 1px solid #ffce01 !important;
}

a#nav-home-tab {
    border: 1px solid #ffce01 !important;
} */

.nav-tabs .nav-item {
  margin-bottom: -1px;
  padding: 15px 50px !important;
  color: #000 !important;
  font-weight: 900 !important;
  font-size: 20px !important;
}

.nav-tabs .nav-link {
  border: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

thead {
  background: #ececec;
}

/*********************Description Page*******************/
/*USE CSS for Slider*/

.vehicle-detail-banner .car-slider-desc {
  max-width: 180px;
  margin: 0 auto;
}

.banner-slider .slider.slider-for {
  max-width: 84%;
  padding-right: 35px;
}

.banner-slider .slider.slider-nav {
  max-width: 16%;
}

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
  width: 100%;
  float: left;
}

.banner-slider .slider.slider-nav {
  height: 610px;
  overflow: hidden;
}

.slider-banner-image {
  height: 610px;
}

.banner-slider .slider.slider-nav {
  padding: 20px 0 0;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
  max-width: 178px;
  height: 110px;
  margin: 0 auto;
  border: 1px solid #ebebeb;
}

.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
  border: 0;
  outline: 0;
}

.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
  border: 2px solid #196db6;
}

.slider-nav .slick-slide.slick-current span {
  color: #196db6;
}

.slider-nav .slick-slide {
  text-align: center;
}

.slider-nav .slick-slide span {
  font-size: 14px;
  display: block;
  padding: 5px 0 15px;
}

.slick-arrow {
  width: 100%;
  background-color: transparent;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  height: 30px;
  position: absolute;
  right: 0;
  z-index: 99;
}

.slick-prev {
  top: 0;
  background-color: #fff;
}

.slick-next {
  bottom: 0;
  background-color: #fff;
}

.slick-prev.slick-arrow {
  background-image: url("../images/icons/arrow-top.png");
  background-size: 20px;
}

.slick-next.slick-arrow {
  background-image: url("../images/icons/arrow-down.png");
  background-size: 20px;
}

/*End USE CSS for Slider*/

@media screen and (max-width: 991px) {

  .banner-slider .slider.slider-for,
  .banner-slider .slider.slider-nav {
    max-width: 100%;
    float: none;
  }

  .banner-slider .slider.slider-for {
    padding-right: 0;
  }

  .banner-slider .slider.slider-nav {
    height: auto;
  }

  .slider-banner-image {
    height: 500px;
  }

  .slider.slider-nav.thumb-image {
    padding: 10px 30px 0;
  }

  .slider-nav .slick-slide span {
    padding: 5px 0;
  }

  .slick-arrow {
    padding: 0;
    width: 30px;
    height: 30px;
    top: 50%;
    bottom: 0;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
  }

  .slick-prev {
    left: 0;
    right: unset;
  }

  .slick-next {
    left: unset;
    right: 0;
    background-color: transparent;
  }

  .vehicle-detail-banner .car-slider-desc {
    max-width: 340px;
  }

  .bid-tag {
    padding: 10px 0 15px;
  }

  .slider.slider-nav.thumb-image {
    white-space: nowrap;
  }

  .thumbnail-image.slick-slide {
    padding: 0px 5px;
    min-width: 75px;
    display: inline-block;
    float: none;
  }

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 477px;
  }
}

@media screen and (max-width: 767px) {
  .slider-banner-image {
    height: 400px;
  }

  .slider.slider-nav.thumb-image {
    padding: 0px 20px 0;
    margin: 10px 0px 0;
  }

  .slider-nav .slick-slide.thumbnail-image .thumbImg {
    max-width: 140px;
    height: 80px;
  }

  .slick-prev.slick-arrow {
    background-position: center 10px;
  }

  .slick-next.slick-arrow {
    background-position: center 10px, center;
  }

  .slider-nav .slick-slide span {
    font-size: 12px;
    white-space: normal;
  }
}

@media screen and (max-width: 580px) {
  .slider-banner-image {
    height: 340px;
  }
}

@media screen and (max-width: 492px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 466px;
  }
}

@media screen and (max-width: 480px) {
  .slider-banner-image {
    height: 280px;
  }
}

.slick-slide img {
  display: block;
  width: 100%;
}

section.description {
  padding: 100px 0;
}

.slick-list {
  overflow: visible !important;
}

section.description h2 {
  font-weight: 900;
  padding-bottom: 20px;
  font-size: 26px;
}

.des ul {
  list-style: disc;
  line-height: 30px;
  font-size: 15px;
  margin-left: 20px;
}

.des li {
  padding-bottom: 10px;
}

.share h2 {
  padding: 10px 0 !important;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.share ul {
  display: flex;
}

ul.icons li a {
  margin-right: 18px;
  font-size: 25px;
  color: gray;
}

.des h2 {
  padding: 0 0 5px !important;
}

/*Blog*/
/*.blog .tab-pane {
    background-image: unset;
}*/
.grid {
  height: auto;
  width: 100%;
}

.grid img {
  width: 100%;
  height: 100%;
}

.grid h5 {
  position: relative;
  padding-top: 63px;
}

.grid h5:before {
  position: absolute;
  width: 125px;
  height: 2px;
  content: "";
  background: #ffce00;
  top: 87px;
  right: 128px;
}

.grid1 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.home ul.nav.nav-pills.nav-fill li a {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  color: #000;
  font-weight: 700;
  font-size: 17px;
  text-transform: capitalize;
}

/*********************Press*********************/
.media h6 {
  padding-top: 30px;
  padding-left: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 55px;
  color: #ffce00;
  position: relative;
}

.media h6:before {
  position: absolute;
  width: 3px;
  height: 50px;
  content: "";
  background: #ffce00;
  top: 36px;
  left: 0px;
}

.media p {
  font-family: Poppins;
  padding-left: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  color: #0a0404;
  line-height: 0px;
}

/* .busy {
  margin-bottom: 70px;
} */

.page-template-press-tpl .busy {
  background: #e3d6c0;
  padding: 68px 0;
}

.flow img {
  z-index: -1;
  width: 100%;
}

.flow {
  /* height: 262px; */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 35px;
  position: relative;
}

.flow-overlay {
  position: absolute;
  content: "";
  background: black;
  z-index: 9;
  opacity: 0.3;
  height: 100%;
  width: 100%;
}

.flow a {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 22px;
  width: 100%;
  padding: 21px 26px;
  background: #ffce00;
  color: black;
  display: inline-block;
  text-align: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.flow a:hover {
  color: white;
}

.media {
  margin-bottom: 30px;
  position: relative;
}

.pm {
  position: absolute;
  top: 39%;
  left: 50%;
  z-index: 9;
}

section.miracle.blog .tab-pane {
  background-image: unset;
  /* overflow: hidden; */
}

/*CMS*/
.woocommerce form.checkout .express-one-page-checkout-main p.form-row input.input-text {
  min-height: 30px;
  height: 30px;
  font-size: 14px;
  padding: 15px 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

span.woocommerce-input-wrapper {
  width: 100%;
  margin-top: 0;
}

.woocommerce-checkout .express-one-page-checkout-main h3.border_html {
  background-color: #ffce00 !important;
  border-left: 4px solid #f78014 !important;
}

.express-one-page-checkout-main textarea#order_comments {
  background: #fff !important;
  padding: 10px;
  height: 160px;
  width: 100%;
}

.sub_content.section-bg-light-1 {
  padding: 50px 0;
}

.woocommerce-Tabs-panel ul {
  line-height: 40px;
  list-style: disc;
  margin-left: 30px;
}

.woocommerce-Tabs-panel h2 {
  line-height: 40px;
  padding-top: 40px;
  padding-bottom: 15px;
}

.woocommerce-Tabs-panel h2 {
  line-height: 40px;
  padding-top: 40px;
  padding-bottom: 15px;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  float: right;
  width: 48%;
  max-width: 50%;
  flex: 100%;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  float: left;
  width: 48%;
  flex: 100%;
  max-width: 50%;
}

.status-publish {
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 28px;
  min-height: 510px;
}

.page-template-product-tpl .status-publish {
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 28px;
  min-height: 540px;
}

.product_cat-drinks h2.woocommerce-loop-product__title {
  margin-top: 20px !important;
  min-height: 55px;
  color: #000;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #000 !important;
  background-color: #ffca09 !important;
}

.woocommerce ul.products li.product .price {
  color: #000 !important;
  display: block;
  margin-bottom: 0 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  padding-bottom: 0 !important;
}

span.woocommerce-Price-currencySymbol {
  margin-right: 5px;
  font-family: cursive;
}

a.added_to_cart.wc-forward {
  margin-left: 26px;
  background: #000;
  color: #fff;
  padding: 4px 19px;
  border-radius: 2px;
}

.woocommerce .onestepcheckout-summary input#qty1 {
  border: 1px solid #000;
}

td.cclw_qty button.cclwminus,
button.cclwplus {
  background: #000 !important;
}

.single-product li.product.type-product.status-publish.has-post-thumbnail.shipping-taxable.product-type-simple {
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  padding: 15px;
  min-height: 670px;
  width: 21.33%;
  text-align: center;
  margin-top: 40px;
}

.single-product .status-publish {
  box-shadow: unset;
}

.single-product .product_cat-drinks h2.woocommerce-loop-product__title {
  margin-top: 20px !important;
  min-height: 55px;
  color: #000;
}

.woocommerce.columns-3 {
  margin-top: 50px;
  width: 100%;
}

.product {
  margin-top: 0;
}

#wps-slider-section #sp-woo-product-slider-93.sp-wps-theme_one .wps-product-image {
  border: unset !important;
}

.wpsf-product.slick-slide {
  background: #fff;
  padding-bottom: 30px;
  min-height: 460px;
}

#wps-slider-section .wpsf-product {
  margin: 3px;
  margin-left: 15px;
  text-align: center;
}

.slick-slide img {
  display: block;
  width: 100%;
  min-height: auto;
  max-height: unset;
  object-fit: cover;
}

.woocommerce div.product form.cart {
  margin-bottom: 2em;
  margin-top: 2em;
}

.woocommerce-product-details__short-description ul {
  line-height: 30px;
  list-style-type: disc;
  margin-left: 0;
  padding: 15px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #fe7302 !important;
  font-size: 1.7em !important;
  font-weight: 600;
}

#wps-slider-section #sp-woo-product-slider-94.wps-product-section .slick-arrow {
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}

#wps-slider-section .wpsf-product-title {
  margin-top: 10px;
  line-height: 20px;
  min-height: 40px;
}

.sp-wps-product-details-inner {
  padding: 0 15px;
}

.bet p {
  line-height: 25px;
  margin-bottom: 10px;
}

.page-template-liposomal-vitamin-tpl .vdo {
  margin-top: 50px;
}

.home .tab-pane p span {
  color: #000;
  font-weight: 600;
  font-style: italic;
}

#wps-slider-section .wpsf-product-price {
  padding-top: 16px !important;
  padding-bottom: 15px;
}

span.woocommerce-Price-amount.amount {
  font-size: 16px;
  margin: 28px 0;
}

label {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}

legend {
  font-size: 20px !important;
  font-weight: 600;
}

header.woocommerce-Address-title.title h2 {
  font-size: 20px;
  font-weight: 600;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
}

.service-block .inner-box {
  position: relative;
  display: block;
  text-align: center;
  background: #fece0163;
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 7%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 20px 20px 20px;
}

.service-block .icon-outer {
  position: relative;
  display: block;
  margin: 0 auto 30px;
  overflow: hidden;
}

.service-block h3 {
  position: relative;
  color: #222222;
  text-transform: capitalize;
  margin: 0 0 12px;
}

.service-block .text {
  position: relative;
  display: block;
  color: #222222;
}

.service-block .more-link {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  display: block;
}

.services-section .column:nth-child(2) {
  padding-top: 0px;
}

.services-section .column {
  position: relative;
  padding: 0px 20px;
}

.services-section .column {
  position: relative;
  padding: 0px 20px;
}

.service-block .more-link a {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 14px;
  color: #f78014;
  box-shadow: 0px 0px 35px 0px rgb(0 0 0 / 5%), 0px 0px 35px 0px rgb(0 0 0 / 5%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.services-section .column:nth-child(1) {
  padding-top: 0;
}

.services-section .column {
  position: relative;
  padding: 0px 20px;
}

.service-block .inner-box:hover .more-link a {
  color: #ffffff;
  background: #f78014;
}

.service-block .inner-box:hover:before {
  -ms-transform: scale(1);
  transform: scale(1);
}

.service-block .inner-box:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid #f78014;
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.wt-small-separator-text img {
  width: 100%;
  padding-bottom: 30px;
}

.inner-box img {
  width: 50px;
  height: 50px;
}

div#pills-contact img {
  padding-bottom: 30px;
}

.page-template-product-tpl h2.woocommerce-loop-product__title {
  /* padding: 0 16px !important; */
  padding: 0px 5pxpx !important;
}

.contact-tpl {
  padding: 5rem 0;
}

.contact-tpl img {
  width: 100%;
}

.text-prime {
  color: #ffce00;
  font-size: 20px;
}

.contact-tpl h2 {
  color: #000;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

p.mb3 a {
  color: #000;
  font-size: 18px;
}

form input[type="date"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="text"],
form input[type="number"],
form textarea {
  margin: 0.3125rem 0;
  box-shadow: none;
  background: 0 0;
  border-radius: 0;
  border: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #000;
  height: 40px;
}

input.wpcf7-form-control.wpcf7-submit:hover {
  transition: 0.5s;
  background: #f78014;
  color: #000;
  border: 1px solid #f78014;
  padding: 10px 50px;
}

input.wpcf7-form-control.wpcf7-submit {
  background: #ffce00;
  color: #000;
  border: 1px solid #ffce00;
  padding: 10px 50px;
  transition: 0.5s;
  font-size: 23px !important;
}

.form-section {
  background-color: #fafafa;
  padding: 100px 0;
}

.form-section h4 {
  font-size: 25px;
  font-weight: 700;
}

form.wpcf7-form.init {
  padding: 50px 0 0;
}

form.wpcf7-form.init label {
  text-align: left;
  color: #f78014;
}

form.wpcf7-form.init {
  text-align: left !important;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 100px;
  width: 460px;
}

.grid-image img {
  width: 100%;
}

.grid-content a {
  line-height: 30px;
  color: #000;
  font-weight: 800;
}

.grid-content {
  background: #fece01;
  padding: 10px 20px;
}

.page-template-blog-tpl div#pills-contact img {
  padding-bottom: 0;
}

.blog-thumbnail-img img {
  width: 100%;
}

h3.blog-title a {
  color: #fff;
}

h3.blog-title {
  background: #f78014;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.blog-thumbnail img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.be img {
  width: 100%;
}

/*.close1 p {
    line-height: 32px;
}*/
.close2 p {
  line-height: 32px;
}

.product-content p span {
  font-size: 20px;
  font-weight: 800;
}

.list li {
  margin-bottom: 15px;
  margin-top: 15px;
}

.list ul {
  display: flex;
}

.list li a {
  padding: 14px 18px;
  background: #ffce01;
  margin-right: 2px;
  color: #000;
  font-weight: 700;
}

.section-full.section {
  padding: 50px 0;
}

.wt-thum-bx.wt-img-overlay1.wt-img-effect.zoom img {
  width: 100%;
  padding: 2rem;
  background: #fff;
  /* border-top-right-radius: 5px; */
  /* border-top-left-radius: 5px; */
}

.wt-box.wt-product-box.block-shadow.overflow-hide {
  margin-top: 30px;
  background: #fff;
  color: #000;
  /* border-radius: 5px; */
}

.p-a20 {
  /* padding: 10px 15px; */
  color: #000;
}

.p-a20 a {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #000;
}

.tab-pane p span {
  color: #f78014;
  font-weight: 600;
}

.woocommerce .quantity .qty {
  width: 4em;
  text-align: center;
  line-height: 33px;
}

.more-content {
  display: none;
}

.cg-visible {
  display: block;
}

.more-content.cg-visible p {
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}

.pass.body p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.pass.body span a {
  font-size: 16px;
  color: #f78014;
}

.table td,
.table th {
  font-size: 15px;
  padding: 8px !important;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #f78014 !important;
}

thead {
  background: #ffce01;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #f78014 !important;
}

.page-template-liposomal-vitamin-tpl .waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgb(255 202 9 / 25%);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.page-template-liposomal-vitamin-tpl .video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #ffca09;
  z-index: 999;
}

.page-template-liposomal-vitamin-tpl .video-main a:hover {
  color: #212529;
}

.p-a20 a:hover {
  color: #000;
  transition: 0.5s;
}

.p-a20 a {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #000;
}

.wt-info {
  min-height: 100px;
  color: #000;
  padding: 0 2rem 2rem 2rem;
}

ul.list-image li {
  line-height: 50px;
}

ul.list-image img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

img.better_bottom_img {
  width: 75px;
}

.about {
  background: #ffca08;
  padding-bottom: 50px;
}

.about a:hover {
  background: #000;
  color: #fff;
  transition: 0.5s;
}

.about a {
  padding: 10px 50px;
  background: #fff;
  color: #000;
  font-weight: 700;
  transition: 0.5s;
}

.about p {
  margin-bottom: 0px;
}

.page-template-differecne-tpl .table {
  margin-top: 50px;
}

.page-template-about-tpl .about {
  background: none;
  padding-bottom: 50px;
}

.page-template-about-tpl .content p {
  margin: 0;
}

div#pills-profile img {
  width: 100%;
}

/*********************faq**********************/

/*.faq {
    margin-top: 100px;
    margin-bottom:100px;
}*/
.faq p {
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  /* padding-top: 9px; */
}

.faq h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 45px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.still {
  text-align: center !important;
  margin-top: -260px;
  width: 284px;
  height: 201px;
  padding: 38px 23px;
  background: #f1f1f1;
  position: relative;
}

.still:after {
  position: absolute;
  content: "\f2c6";
  font-family: "FontAwesome";
  top: -49px;
  font-size: 64px;
  left: 88px;
  padding-left: 23px;
  color: #ffce00;
  border-radius: 100%;
}

.still:before {
  position: absolute;
  content: "";
  background: url("../images/telegram 1.png");
  width: 34px;
  height: 34px;
  top: -16px;
  left: 124px;
}

.still h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 37px;
  text-align: center;
}

.still h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
}

.still a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  color: black;
}

/******************accordion******************/

/*.wrapper {
    max-width: 800px;
    margin: 30px 0px;
    padding: 1px 1px;
    border-radius: 4px;
    background:#dfdfdf;
}*/

.accordion {
  margin: 1px 0;
}

.acc-container {
  margin: 0 0 -8px;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
}

.acc-title {
  max-width: 100%;
  /* background: white; */
  color: black;
  border-radius: 4px;
  padding: 14px 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  /* padding-top: 7px;
    padding-bottom: 7px; */
  line-height: 37px;
  font-weight: 700;
}

.acc-active .acc-title,
.acc-title:hover {
  background: white;
  cursor: pointer;
  /* color: #ffce00; */
}

.acc-title:after {
  content: "\002B";
  /*Plus sign*/
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12.5px;
  width: 25px;
  height: 25px;
  color: #a58b5f;
  display: inline-block;
  font-size: 30px;
}

.acc-active .acc-title:after {
  content: "\2212";
  /*Minus sign*/
}

.acc-content {
  width: 100%;
  height: auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.2s ease-in-out;
}

.acc-active .acc-content {
  max-height: 500px;
  overflow-y: auto;
  opacity: 1;
}

.page-template-press-tpl .lipo {
  background: none;
  display: flex;
  align-items: center;
  padding: 33px 10px;
}

.banner-section {
  position: relative;
}

.banner_social_icons {
  position: relative;
}

ul.banner_icons li a i {
  font-size: 20px;
  font-family: "FontAwesome";
}

ul.banner_icons {
  position: fixed;
  bottom: 50%;
  z-index: 999;
  left: 5px;
  padding: 0;
}

.pass img {
  border-radius: 100px;
}

.page-template-product-tpl .banner-section:after {
  display: none;
}

.page-template-product-tpl .banner-section:before {
  display: none;
}

.star i {
  background: #000;
  padding: 5px;
  color: #ffce01;
}

/* #nav-faq-tab {
    border: 1px solid #ffce01 !important;
} */

.acc-wrapper {
  padding: 1px 1px;
  border-radius: 4px;
  /* background: #dfdfdf; */
}

.faq_sun_head_h2 {
  font-weight: 600;
  color: #212529;
}

ol.main_list {
  padding-left: 1.5em;
}

ul.main_list {
  padding-left: 1.5em;
}

ol.main_list li {
  line-height: 2;
}

ul.main_list li {
  line-height: 2;
}

ul.main_list li {
  list-style: circle;
}

ol.main_list {
  line-height: 35px;
}

.page-id-295 .faq {
  padding: 50px 0;
}

.page-template-faq-tpl.page-id-295 .faq {
  background: #e3d6c0;
}

.acc-content ul {
  line-height: 31px;
  padding-bottom: 15px;
  padding-left: 10px;
}

.acc-content ul li {
  /* list-style-type: disc; */
  margin-left: 30px;
}

.page-template-blog-tpl-php .tab-content {
  padding: 0;
}

.imunity h4 {
  font-size: 17px;
  font-weight: 100;
  padding: 15px 0 30px 0;
}

.bet p {
  position: relative;
}

.bet i {
  position: absolute;
  left: -25px;
  top: 8px;
}

.product-content p {
  width: 100%;
  background: no-repeat;
  padding: 0;
  line-height: 30px;
  font-size: 16px;
}

li.tweet a i {
  background: #1da1f2;
  color: #fff;
  padding: 6px;
  margin-bottom: 15px;
}

li.face-book a i {
  background: #4267b2;
  padding: 8px 11px;
  color: #fff;
  margin-bottom: 15px;
}

li.insta a i {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  color: #fff;
  padding: 6px;
}

ul.banner_icons li a i {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  font-weight: 100;
}

#wps-slider-section #sp-woo-product-slider-94.wps-product-section .slick-arrow {
  border: 1px solid #fff !important;
}

.product_meta {
  display: none;
}

.product .banner_five_bg {
  padding: 30px;
}

.mobile {
  display: none;
}

/*.banner-five .owl-carousel .owl-nav.disabled {
    display: none !important;
}*/
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
  display: none !important;
}

.contact.common ul li {
  position: relative;
}

a.banner_more {
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 20px;
  position: absolute;
  right: 20em;
  bottom: 14em;
}

a.banner_more:hover {
  background: #fff;
  color: #f78014;
  border: 1px solid #f78014;
}

ul#menu-footer-menu {
  padding: 0;
  line-height: unset;
}

.contact.common ul li a:hover {
  color: #fff;
}

.contact.common ul li a {
  color: #fff;
}

.banner-content {
  text-align: center;
  position: absolute;
  right: 20% !important;
  top: 15%;
  color: #000;
  background: #0000001f;
  padding: 40px;
}

.banner-content h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
}

.banner-content p {
  font-size: 18px;
  line-height: 40px;
}

.banner-content a {
  background: #fff;
  padding: 10px 31px;
  color: #000;
  transition: 0.5s;
  font-weight: 700;
}

.banner-content a:hover {
  background: #ffce01;
  transition: 0.5s;
  color: #000;
}

nav.woocommerce-MyAccount-navigation ul li {
  background: #ffce00;
  padding: 10px 15px;
  margin-bottom: 7px;
}

nav.woocommerce-MyAccount-navigation ul li a {
  color: #000;
}

.woocommerce-MyAccount-content p a {
  color: #f78014;
}

.woocommerce-MyAccount-content p a:hover {
  color: #f78014;
}

span.woofc-menu-item-inner-subtotal {
  display: none;
}

.about {
  overflow-x: hidden;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  z-index: 1;
}

.shop .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: left;
  margin: 0 3.8% 2.992em 0;
  padding: 0;
  position: relative;
  width: 28.75%;
  margin-left: 0;
}

ul.products.columns-4 {
  text-align: center;
}

.woocommerce-shop .woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
  margin: 0 3.8% 2.992em 0 !important;
}

.woocommerce-shop .woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
  clear: none !important;
}

.woocommerce-shop .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: left;
  /* margin: 0 3.8% 2.992em 0 !important; */
  margin: 0 3% 2.992em 0 !important;
  padding: 0;
  position: relative;
  width: 31% !important;
  margin-left: 0;
}

.woocommerce-shop .product_cat-drinks h2.woocommerce-loop-product__title {
  padding: 0 15px !important;
}

.foot i.fa.fa-twitter {
  background: #1da1f2;
  color: #fff;
}

.foot i.fa.fa-facebook {
  background: #4267b2;
  padding-left: 10px;
  color: #fff;
}

.foot i.fa.fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  color: #fff;
  padding: 7px 8px;
}

.common.class h5 {
  padding-bottom: 20px;
  margin-top: 100px;
  margin-bottom: 0;
}

.single-blog .single-blog ul {
  list-style: disc;
  line-height: 32px;
  padding-left: 20px;
}

.single-blog .single-blog ul.banner_icons {
  list-style: none;
  padding-left: 0;
  line-height: unset;
  margin-bottom: 16px;
}

.single-blog .gift ul {
  list-style: none;
  display: flex;
}

.single-blog ul {
  list-style: disc;
  line-height: 30px;
  padding-left: 20px;
  margin-bottom: 30px !important;
}

.single-blog ul.banner_icons {
  padding: 0;
  list-style: none;
  line-height: unset;
}

.single-blog .gift ul {
  line-height: unset;
  margin-bottom: 0 !important;
}

.single-blog .fac ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  line-height: 0;
}

.foot ul {
  list-style: none;
}

.single-blog .bottom {
  padding: 30px 0 0;
}

.single-blog header ul {
  margin-bottom: 0 !important;
}

.single-blog .common.class h5 {
  margin-top: 70px;
}

.health_sec .slick-prev.slick-arrow {
  background: none;
}

.health_sec .slick-next.slick-arrow {
  background: none;
}

.product-image img {
  width: 60%;
}

button.btn {
  color: #000;
  background-color: #ffce01;
  border-color: #ffce01;
}

button.btn:hover {
  color: #000;
  background-color: #ffce01;
  border-color: #ffce01;
}

a.yellow {
  color: #ffce01 !important;
  background: #ffce01 !important;
}

.wt-thum-bx.wt-img-overlay1.wt-img-effect.zoom img {
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
}

h1.woocommerce-products-header__title.page-title {
  font-size: 25px;
}

.whatsapp_icon {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp_icon img {
  width: 50px;
  margin-left: 20px;
}

.trust .owl-carousel .owl-nav.disabled {
  display: none !important;
}

.home #wps-slider-section .wps-product-section .slick-next {
  top: 50%;
  right: -45px;
}

.home #wps-slider-section .wps-product-section .slick-prev {
  top: 50%;
  left: -45px;
}

.page-template-liposomal-vitamin-tpl #wps-slider-section .wps-product-section .slick-prev {
  top: 40%;
  right: 466px;
}

.page-template-liposomal-vitamin-tpl #wps-slider-section .wps-product-section .slick-next {
  top: 40%;
  right: -45px;
}

.page-template-liposomal-vitamin-tpl #wps-slider-section #sp-woo-product-slider-94.wps-product-section .slick-arrow {
  border: 1px solid #000 !important;
  color: #000 !important;
}

button#btn-razorpay {
  background: #ffce00;
  color: #212529;
  border: 1px solid #ffce00;
}

button#btn-razorpay-cancel {
  background: #ffce00;
  color: #212529;
  border: 1px solid #ffce00;
}

.woocommerce ul.order_details li {
  float: left;
  margin-right: 9em;
  margin-bottom: 3em;
  text-transform: uppercase;
  font-size: 0.715em;
  line-height: 1;
  border-right: 1px dashed #d3ced2;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

#wps-slider-section .slick-list.draggable {
  overflow: hidden !important;
  position: relative;
}

#wps-slider-section {
  overflow: visible !important;
  position: relative;
}

.woocommerce-product-details__short-description h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 15px 0 10px 0;
}

.xoo-el-inmodal {
  max-width: 400px !important;
}

.page-template-liposomal-vitamin-tpl-php .woocommerce a.button {
  color: #fff !important;
  background-color: #000 !important;
}

.news_img {
  position: relative;
}

.wht.few ul li i {
  position: absolute;
  left: -25px;
  top: 8px;
}

.wht.few ul li {
  position: relative;
}

#wps-slider-section .wpsf-product {
  margin-left: 0 !important;
}

.single-blog .sub_content img {
  margin-bottom: 30px;
  width: 100%;
}

.product {
  background: #e3d6c0;
}

.page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
.page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
  background: #fff;
  border-radius: 20px;
  border: 12px solid #eae0d1;
}

.woocommerce ul.products li.product a img {
  border-radius: 13px 13px 0px 0px;
}

.woocommerce a.button {
  background-color: transparent !important;
}

.slider-product p {
  background: transparent !important;
}

.button.product_type_simple {
  position: relative;
  display: inline-block;
}

.home-banner-text p i {
  margin-bottom: 5rem;
  color: #ffa404;
  padding: 0rem 5px;
}

/* @media (min-width: 2500px) { */

.page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
.page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
  min-height: 675px !important;
}

/* } */

/* @media (max-width: 2500px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 942px;
  }
}

@media (max-width: 2300px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 635px;
  }
} */

/* @media (max-width: 2200px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 635px;
  }
} */

/* @media (max-width: 2100px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 635px;
  }
} */

/* @media (max-width: 2000px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 635px;
  }
} */

@media (max-width: 1900px) {

  /* .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 635px;
  } */
  .page-template-product-tpl h2.woocommerce-loop-product__title {
    font-size: 14px !important;
  }
}

/* @media (max-width: 1750px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 737px;
  }
} */

@media (min-width: 1600px) {
  .container {
    max-width: 90% !important;
  }
}

/* @media (max-width: 1600px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 585px;
  }
} */

@media (max-width: 1440px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 560px !important;
  }
}

/* @media (max-width: 1199px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 545px;
  }
} */

/* @media (max-width: 991px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 650px !important;
  }
} */

/* @media (max-width: 768px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 680px !important;
  }
} */

/* @media (max-width: 480px) {

  .page-template-product-tpl .woocommerce-page.columns-3 ul.products li.product,
  .page-template-product-tpl .woocommerce.columns-3 ul.products li.product {
    min-height: 585px !important;
  }
} */

.woocommerce ul.products li.product .button {
  margin-bottom: 0.5rem;
  margin-top: 0rem !important;
}

.home-scroll-content {
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

/* product image slider css */

.shop-product-slider {
  overflow: hidden;
}

.shop-product-slider img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-product-slider .slick-dots {
  bottom: 10px;
}

.products .swiper-slide {
  background: transparent;
}

.products .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}

.products .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  justify-content: center;
  display: flex;
}

/* .products li.product {
    display: flex;
    flex-direction: column;
    height: 100%;
} */

/* .products li.product .shop-product-slider {
    min-height: 300px; 
} */

.products li.product .swiper-pagination {
  min-height: 20px;
}