/* @import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&amp;display=swap'); */

body {
  font-family: sans-serif, "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0c0c0c;
  font-style: normal;
}

p,
li,
a,
button,
span,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: #2c2c2c;
  margin-top: 0px;
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: "Jost", sans-serif;
  margin-top: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  /* font-weight: 700; */
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  color: #2c2c2c;
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #161616;
  font-size: 17px;
  opacity: 1;
}

*::placeholder {
  color: #161616;
  font-size: 17px;
  opacity: 1;
}
/*--------------------------------------------------------------
 * Preloader CSS MS
 *--------------------------------------------------------------
 */

.wp-smart-loader {
  text-indent: -12345px;
}

/*--------------------------------------------------------------
 * Preloader One
 *--------------------------------------------------------------
 */

.smart-loader-one {
  width: 50px;
  height: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
  -moz-animation: spinner 700ms infinite linear;
  -ms-animation: spinner 700ms infinite linear;
  -o-animation: spinner 700ms infinite linear;
  animation: spinner 700ms infinite linear;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
 * Preloader Two
 *--------------------------------------------------------------
 */

.smart-loader-two {
  position: relative;
  width: 80px;
  height: 80px;
  -webkit-animation: spinner 5s infinite linear;
  animation: spinner 5s infinite linear;
}

.smart-loader-two span {
  width: 40px;
  height: 40px;
  position: absolute;
  background: red;
  display: block;
  -webkit-animation: spinner-two 1s infinite linear;
  animation: spinner-two 1s infinite linear;
}

.smart-loader-two span:nth-child(1) {
  background: #2ecc71;
}

.smart-loader-two span:nth-child(2) {
  left: 44px;
  background: #9b59b6;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.smart-loader-two span:nth-child(3) {
  top: 44px;
  background: #3498db;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.smart-loader-two span:nth-child(4) {
  top: 44px;
  left: 44px;
  background: #f1c40f;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes spinner-two {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spinner-two {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
 * Preloader Three
 *--------------------------------------------------------------
 */

.smart-loader-three {
  position: relative;
}

.smart-loader-three span {
  display: block;
  bottom: 0px;
  width: 9px;
  height: 5px;
  background: #9b59b6;
  position: absolute;
  -webkit-animation: spinner-three 1.5s infinite ease-in-out;
  animation: spinner-three 1.5s infinite ease-in-out;
}

.smart-loader-three span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.smart-loader-three span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.smart-loader-three span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.smart-loader-three span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes spinner-three {
  0% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }

  25% {
    height: 30px;
    transform: translateY(15px);
    background: #3498db;
  }

  50% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }

  100% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }
}

@keyframes spinner-three {
  0% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }

  25% {
    height: 30px;
    transform: translateY(15px);
    background: #3498db;
  }

  50% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }

  100% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }
}

/*--------------------------------------------------------------
 * Preloader Four
 *--------------------------------------------------------------
 */

.smart-loader-four {
  width: 80px;
  height: 80px;
}

.smart-loader-four .spinner-cube {
  width: 33%;
  height: 33%;
  background-color: #9b59b6;
  float: left;
  -webkit-animation: spinner-four 1.3s infinite ease-in-out;
  animation: spinner-four 1.3s infinite ease-in-out;
}

.smart-loader-four .spinner-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.smart-loader-four .spinner-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.smart-loader-four .spinner-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.smart-loader-four .spinner-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.smart-loader-four .spinner-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.smart-loader-four .spinner-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.smart-loader-four .spinner-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.smart-loader-four .spinner-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.smart-loader-four .spinner-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes spinner-four {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes spinner-four {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

/*--------------------------------------------------------------
 * Preloader Five
 *--------------------------------------------------------------
 */

.smart-loader-five {
  width: 80px;
  height: 80px;
  position: relative;
}

.smart-loader-five .spinner-cube {
  border: 2px solid transparent;
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.smart-loader-five .spinner-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #9b59b6; */
  /* background-color: #4aac2b; */
  background: url("../images/punyaherbals_logo.png");
  /* -webkit-animation: spinner-five 2.4s infinite linear both;
  animation: spinner-five 2.4s infinite linear both; */
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.smart-loader-five .spinner-cube-2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.smart-loader-five .spinner-cube-3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.smart-loader-five .spinner-cube-4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.smart-loader-five .spinner-cube-2:before {
  /* -webkit-animation-delay: 0.3s; */
  animation-delay: 0.3s;
}

.smart-loader-five .spinner-cube-3:before {
  /* -webkit-animation-delay: 0.6s; */
  animation-delay: 0.6s;
}

.smart-loader-five .spinner-cube-4:before {
  /* -webkit-animation-delay: 0.9s; */
  animation-delay: 0.9s;
}

@-webkit-keyframes spinner-five {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes spinner-five {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
 * Preloader Six
 *--------------------------------------------------------------
 */

.smart-loader-six {
  width: 70px;
  height: 70px;
  position: relative;
}

.smart-loader-six .spinner-cube-1,
.smart-loader-six .spinner-cube-2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3498db;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: spinner-six 2s infinite ease-in-out;
  animation: spinner-six 2s infinite ease-in-out;
}

.smart-loader-six .spinner-cube-2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes spinner-six {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes spinner-six {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.smart-page-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: 100000;
}

.wp-smart-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  z-index: 100001;
}

.wp-smart-body {
  visibility: hidden;
}
/*--------------------------------------------------------------
 * Preloader Seven
 *--------------------------------------------------------------
 */
.main-slider h2 {
  position: relative;
  display: block;
  /* font-size: 54px; */
  font-size: 45px;
  color: #000;
  font-weight: 600;
  line-height: 66px;
  z-index: 1;
}
.main-slider h3 {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 1.14em;
  padding-right: 64px;
  text-transform: capitalize;
  display: inline-block;
  z-index: 1;

  top: -127px;
  position: relative;
}

.btn-style-one {
  background: #de8d38;
  display: block;
  float: left;
  border-radius: 8px;
  width: 80px;
  height: 80px;
}
.bootom-box {
  position: relative;
}
.bootom-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(10 10 10 / 73%);
}

.min-img {
  width: 100%;
}
.theme-btn {
  /* padding: 15px 25px !important; */
  padding: 15px 35px !important;
  display: inline-block !important;
  float: left;
  margin-right: 20px !important;
  border-radius: 5px;
  text-transform: uppercase;
}

.tp-bgimg {
  background-size: cover !important;
  background-position: top !important;
  top: 20px !important;
}
.btn-style-orange {
  background: #ffc53c;
  color: #262525;
}
.btn-style-orange:hover {
  background: #09931f;
  color: #fff;
}
.btn-style-white {
  background: #fff;
  color: #000;
}
a,
div,
button {
  -webkit-transition: all 0.1s ease-out 0s;
  -moz-transition: all 0.1s ease-out 0s;
  -ms-transition: all 0.1s ease-out 0s;
  -o-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}
.fullwidthbanner-container .tp-bgimg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  z-index: 22;
  opacity: 0.5;
}
.heading-s h5 {
  color: #b76209;
  font-size: 15px;
  margin-bottom: 20px;
}
.heading-s h2 {
  font-size: 39px;
}
.service-box {
  background: #fff5eb;
  padding: 3em;
  margin-bottom: 2em;
  border-bottom: 12px solid #ffd2a4;
  padding-bottom: 2em;
}

.img-ser {
  background: #ffd2a4;
  border-radius: 50%;
  padding: 8px;
  width: 70px;
  height: 70px;
  display: block;
  margin-bottom: 20px;
}
.img-ser img {
  width: 100%;
}
.img-ser img {
  transform: scale(1);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.logo img {
  /* width:70%; */
  width: 45%;
  height: 50%;
}
.copy-one p {
  color: #000;
}
.min-s span img {
  width: 77px;
  margin-bottom: 20px;
}
.one-bg {
  background: #f8f8f8;
}
.min-s {
  text-align: center;
  /* padding: 25px; */
  padding: 10px;
}
.min-s h3 {
  color: #09931f;
}
.sub-bg {
  position: relative;
  padding-left: 80px;
  /* padding-left: 30px; */
  /* margin-bottom: 1em; */
  color: #09931f;
  font-size: 39px;
  font-weight: 600;
}
.sub-bg:before {
  content: "";
  position: absolute;
  background-image: url(../images/icon_leaves.png);
  background-size: cover;
  /* width: 100px; */
  width: 95px;
  height: 95px;
  /* left: 0; */
  /* left: -42px; */
  left: -10px;
  top: -0.7em;
}
.bg-sky {
  background: #ecf7f9;
}
.min-heading {
  text-align: center;
}
.center-l {
  width: auto;
  display: inline-block;
}
.min-heading p {
  font-weight: 600;
  font-size: 18px;
  color: #464646;
}

.why-sec {
  text-align: center;
}
.icon-s {
  width: 100px;
  height: 100px;

  display: inline-block;
  margin-bottom: 30px;
  line-height: 100px;
  border-radius: 50px;
  position: relative;
}
.icon-s:before {
  content: "";
  width: 100px;
  height: 100px;
  background: #fff;
  display: inline-block;
  margin-bottom: 30px;
  line-height: 100px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 22%);
}
.icon-s:after {
  /* content: "";
  position: absolute;
  width: 120px;
  height: 60px;
  background: #ffc53c;
  left: -10px;
  bottom: -10px;
  border-radius: 0px 0px 100px 100px; */
  content: "";
  position: absolute;
  width: 86px;
  height: 75px;
  background: #009946;
  left: -10px;
  bottom: -10px;
  /* border-radius: 174px 0px 192px 0px; */
  border: 5px solid #a5cb27;
  border-radius: 0px 44px 0px 46px;
}

.icon-s img {
  width: 50px;
  position: relative;
  z-index: 2;
}
.why-sec h3 {
  color: #09931f;
  font-size: 22px;
}
.service-img {
  padding: 30px;
  padding-top: 0px;
}
.con-ser {
  background: #f8f8f8;
}
.con-ser {
  background: #f8f8f8;
  display: block;
  float: left;
  /* padding: 3em; */
  padding: 1em;
  /* margin-top: 4.5em; */
  margin-top: 2.5em;
}
.service-img {
  position: relative;
}
.service-img:before {
  content: "";
  position: absolute;
  width: 89.9%;
  height: 92%;
  border: 4px solid #09931f;
  bottom: -4%;
  left: 17%;
  z-index: -1;
}

.service-image {
  position: relative;
}
.service-image:before {
  content: "";
  position: absolute;
  width: 89.9%;
  height: 92%;
  border: 4px solid #09931f;
  /* bottom: -4%; */
  bottom: 1%;
  /* left: 17%;  */
  left: 5%;
  z-index: -1;
}

.service-image {
  padding: 30px;
  padding-top: 0px;
}

.service-image-testimonal {
  position: relative;
}
.service-image-testimonal:before {
  content: "";
  position: absolute;
  width: 89.9%;
  height: 92%;
  border: 4px solid #09931f;
  bottom: -7%;
  /* left: 17%;  */
  left: 5%;
  z-index: -1;
}

.service-image-testional {
  padding: 30px;
  padding-top: 0px;
}
.product-con {
  color: #fff;
}
.product-list {
  position: relative;
}
.product-list:before {
  content: "";
  position: absolute;
  background: #09931f;
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
}
.product-con h3 {
  margin-bottom: 20px;
}
.product-con p {
  color: #fff;
  margin-bottom: 20px;
}
.product-list:after {
  content: "";
  position: absolute;
  background-image: url(../images/product_image.jpg);
  background-size: cover;
  width: 50%;
  right: 0;
  height: 100%;
  top: 0;
  bottom: 0;
}
.btn-h-white:hover {
  background-color: #fff;
  color: #000;
}
.test-i img {
  width: 100px;
  border-radius: 50%;
  padding: 5px;
  height: 100px;
}
.slide-test {
  background: #ecf7f9;
  text-align: center;
  /* padding: 30px; */
  padding: 10px;
}
.user-name h5 {
  font-size: 20px;
}
.user-name h6 {
  font-size: 15px;
  font-weight: normal;
  color: #7a7878;
}
.test-dis p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.whychoose {
  position: relative;
}
.whychoose:before {
  content: "";
  position: absolute;
  background-image: url(../images/size_banner.png);
  background-position: bottom;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.service-carousel .item {
  padding-bottom: 2em;
}

.service-carousel .owl-nav {
  display: block !important;
  text-align: right;
}
.service-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid #000 !important;
  border-radius: 50%;
  margin-left: 15px;
  text-align: center;
  line-height: 40px !important;
}
.service-carousel .owl-nav button:hover {
  background: #ffc53c;
  color: #262525;
}
.vide0-bg {
  background-image: url(../images/video.png);
  background-size: cover;
}
.video-p {
  text-align: center;
  /* background: rgb(255 197 60 / 57%); */
  padding: 4em;
  width: 80%;
  /* width:60%; */
  margin: auto;
}
.play-i {
  margin-top: 2em;
}
.video-p h2,
.video-p p {
  color: #fff;
}
.play-i span {
  font-size: 41px;
  color: #000;
  background: #fff;
  width: 47px;
  height: 47px;
  display: inline-block;
  line-height: 47px;
  border-radius: 50%;
  box-shadow: 0px 1px 7px 9px #09931f80;
}
.subbanner {
  position: relative;
}
.subbanner img {
  width: 100%;
  margin-top: -5em;
}

.po-t {
  position: absolute;
  /* top: 40%; */
  top: 50%;
  left: 0;
  right: 0;
}
.po-t h1 {
  /* font-size: 56px; */
  font-size: 35px;
}
.po-t p {
  font-size: 19px;
  font-weight: 400;
}
.card {
  /* margin-bottom: 20px; */
  margin-bottom: 300px;
}

.card_gallery {
  margin-bottom: 20px;
}

.card-header .card-link {
  display: block;
  padding: 15px;
}

.card-header .card-link {
  background: #ffc53c;
  color: #3e3d3d;
}
.card-link.collapsed {
  background: #ecf7f9;
}
.card-header {
  padding: 0px;
  background: #ecf7f9;
}
.offer {
  position: relative;
  padding: 3em;
  background-size: cover;
  text-align: center;
}
.offer h3 {
  position: relative;
}
.offer:before {
  content: "";
  position: absolute;
  background-color: #ffdb01c2;
  width: 80%;
  height: 71%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.list-ser ul li a {
  display: block;
  padding: 10px;
  background: #ecf7f9;
  margin-bottom: 5px;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  position: relative;
}
.list-ser ul li a:before {
  content: "\e606";
  font-family: "simple-line-icons";
  right: 11px;
  position: absolute;
}
.list-ser ul li a:hover {
  background: #ffc53c;
  color: #3e3d3d;
}
.po-s {
  position: sticky;
  top: 120px;
}
.wh-bg {
  background: #ecf7f9;
}
.price ins {
  text-decoration: none;
}
.pro-list {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 0px;
  margin-bottom: 30px;
}
.pro-list:hover {
  box-shadow: -1px 3px 10px 1px #00000040;
  margin-top: -10px !important;
}
.pro-img img {
  width: 100%;
  background: #fdfafa;
}
.pro-img {
  padding: 10px;
  position: relative;
}
.product-d {
  padding: 10px 20px;
  padding-bottom: 20px;
}
.product-d .star-rating-wap {
  margin-bottom: 10px;
}
.product-d .star-rating {
  width: 87px;
  margin: 0 auto;
}
.price del {
  color: #888;
  margin-right: 7px;
  font-weight: normal;
}
.product-d .star-rating {
  height: 26px;
  line-height: 20px;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 87px;
  letter-spacing: 4px;
  display: inline-block;
  vertical-align: middle;
}
.product-d .star-rating:before {
  font-size: 12px;
}

.product-d .star-rating:before {
  left: 0;
  top: 0;
  font-size: 12px;
  color: #fda043;
  font-family: "Font Awesome 5 Free";
  content: "\f005\f005\f005\f005\f005";
}
.star-rating span {
  overflow: hidden;
  position: absolute;
  text-indent: -999em;
  color: #333;
  padding-top: 1.5em;
  left: 0;
  top: 0;
}
.star-rating-wap .review-count {
  font-size: 14px;
  font-weight: 500;
  margin-left: 14px;
  color: gray;
}
.star-rating span {
  font-size: 12px;
  color: #fda043;
  font-weight: 900;
  animation: fadeIn 0.5s both;
  animation-delay: 0.3s;
}
.product-d h3 a {
  font-size: 17px;
}

.line1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.po-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffbf0a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.off-off {
  position: absolute;
  left: 10px;
  background: #4f8705;
  color: #fff;
  font-size: 11px;
  padding: 5px 5px;
  border-radius: 0px 10px 10px 0;
  top: 15px;
}

.sp-quantity {
  width: 124px;
  height: 42px;
  float: left;
}

.sp-minus {
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  float: left;
  text-align: center;
}

.sp-input {
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-left: 0px solid black;
  float: left;
}

.sp-plus {
  width: 40px;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-left: 0px solid #e1e1e1;
  float: left;
  text-align: center;
}

.sp-input input {
  width: 39px;
  height: 38px;
  text-align: center;

  border: none;
}

.sp-input input:focus {
  border: 1px solid #e1e1e1;
  border: none;
}

.sp-minus a,
.sp-plus a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 1px;
  font-size: 21px;
}
.single_add_to_cart_button {
  float: right;
  padding: 7px 20px;
  background: green;
  color: #fff;
  cursor: pointer;
}
.single_add_to_cart_button:hover {
  background: #ffc53c;
  color: #2c2c2c;
}
hr {
  border-bottom: 1px solid #cfcfcf !important;
  border-top: 0 none;
  margin: 20px 0 !important;
  padding: 0;
}
.dt-sc-tabs.dt-sc-list-inline button {
  border-radius: 0px;
}
.tablinks:hover,
.tablinks.active {
  background-color: #f4b323;
  color: #292929;
  border: 0;
}
.tablinks {
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  float: none;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  padding: 10px 20px !important;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: var(--DT_Body_Line_Height);
  border-radius: var(--DT_Button_Border_Radius);
  font-weight: 500;
  color: #2a2a2a;
  background-color: #00000000;
  border: 2px solid #2a2a2a !important;
  font-size: 18px;
}
.dt-sc-tabs {
}
.dt-sc-tabs-content {
  border-radius: 0px;
  display: none;
  padding: 30px;
  border: 1px solid #f4f4f4;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

.blog-img img {
  width: 100%;
}
.blog-cont h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}
.play-i a {
  background: #09931f;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  font-size: 22px;
}
.blog-cont p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}

.min-blog {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 0px;
  margin-bottom: 30px;
}
.min-blog:hover {
  box-shadow: -1px 3px 10px 1px #00000040;
  margin-top: -10px !important;
}
.blog-img {
  padding: 10px;
}
.blog-cont {
  padding: 10px 20px;
}
.blog-cont h3 {
  font-size: 20px;
  line-height: 30px;
}
.blog-cont p {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 0px;
}
.blog-cont .bl-btn {
  margin: 20px 0;
  margin-bottom: 10px;
  display: inline-block;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  float: none;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  padding: 10px 20px !important;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: var(--DT_Body_Line_Height);
  border-radius: var(--DT_Button_Border_Radius);
  font-weight: 500;
  color: #2a2a2a;
  background-color: #00000000;
  border: 2px solid #2a2a2a !important;
  font-size: 18px;
}
.blog-cont .bl-btn:hover,
.blog-cont .bl-btn.active {
  background-color: #f4b323;
  color: #292929;
  border: 0;
}
.register-f {
  background: #f7f8fa;
  padding: 30px;
  position: sticky;
  top: 120px;
}

.form-event h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form-in .read-m-we {
  margin-bottom: 0px;
  width: 100%;
  border-radius: 5px;
}

.form-in:last-child {
  margin-bottom: 0px;
}

.form-event ul {
  margin-bottom: 25px;
}

.form-event ul li {
  margin-bottom: 8px;
}

.form-event ul li i {
  margin-right: 15px;
}

.form-in {
  margin-bottom: 25px;
}

.fill-in {
  width: 100%;
  padding: 10px;
  height: 50px;
  border: 1px solid #d7d7d7;
}
.form-in .read-m-we {
  margin-bottom: 0px;
  width: 100%;
  border-radius: 5px;
}

.btn-gradient:hover {
  background: #09931f;
  color: #ffffff;
}
.subbanner {
  position: relative;
  /* height: 550px; */
  height: 150px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  /* margin-top: -5em !important; */
  margin-top: -3em !important;
}
.btn-gradient {
  color: #2c2c2c;
  cursor: pointer;
  background-size: 200% auto;
  border: none;
  border-radius: 8px;
  background: #f4b323;
  padding: 13px 30px;
  font-size: 18px;
  float: none;
  display: inline-block;
  margin-bottom: 3em;
}
.min-img {
  position: relative;
  text-align: center;
}
.min-img img {
  width: 68%;
  margin: auto;
  float: none;
}
.register-form {
  background: #f7f8fa;
  padding: 30px;
}
textarea.fill-in.text-m {
  height: 150px;
}
.min-add {
  text-align: center;
  background: #ffc53c;
  padding: 30px;
}
.min-add span {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 13px;
  display: block;
}

.min-add h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}

.min-add ul li {
  font-size: 15px;
  color: #3c3c3c;
}
.product-d2 {
  margin: auto;
  padding: 10px 20px;
  padding-bottom: 20px;
}
.pro-list2 {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 0px;
  margin-bottom: 30px;
  display: inline-flex;
}
.product-d2 .star-rating {
  color: #ffbf0a;
  overflow: hidden;
  position: relative;
  text-align: left;
  line-height: 30px;
  letter-spacing: 4px;
  display: inline-block;
  vertical-align: middle;
}

.po-icon2 {
  position: absolute;
  top: 237px;
  right: -105px;
  background: #ffbf0a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.theme-btn2 {
  padding: 15px 25px !important;
  border-radius: 5px;
  text-transform: uppercase;
  margin: auto;
  margin-top: 20px;
}
.counter {
  background-image: url(../images/offer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px;
}
.offer1 p {
  color: #fff;
  font-size: 45px;
}
.offer1 {
  position: relative;
  padding: 3em;
  background-size: cover;
  text-align: center;
}
.offer1 h3 {
  position: relative;
}
.offer1:before {
  content: "";
  position: absolute;

  width: 80%;
  height: 71%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.offer1 span {
  font-size: 20px;
  color: #fff;
}
.best-offer {
  text-align: center;
}
.best-offer h2 {
  color: #fff;
}
.vide1-bg {
  background-image: url(../images/h2.jpg);
  background-size: cover;
  background-position: center;
}
.video-p2 {
  text-align: center;
  background: #47433973;
  padding: 4em;
  width: 80%;
  margin: auto;
}

.video-p2 h2,
.video-p2 p {
  color: #fff;
}
/* Home three */
.onlone-pro {
  display: flex;
}
.n-online {
  text-align: center;
  justify-content: center;
  width: 74px;
  padding: 19px;
  background-color: #09931f;
  font-size: 25px;
  border-radius: 40px;
  margin: 10px;
  height: 74px;
}
.veri {
  justify-items: center;
  /* padding: 20px; */
  padding: 5px;
}
.express {
  display: flex;
}
.supp-team {
  display: flex;
}
.supp-team i {
  margin: 5px;
  border-radius: 50px;
  background-color: #09931f;
  font-size: 29px;
  width: 60px;
  height: 60px;
  padding: 16px;
}
.video1-bg {
  /* background-image: url(../images/video1.jpg); */
  background-image: url(../images/certified_section_6.png);
  background-size: cover;
  /* height:330px; */
}
.v-all {
  color: #fff;
  background-color: #09931f;
  height: 80px;
  margin-bottom: 40px;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  justify-content: center;
}
.v-all:hover {
  color: #000;
}
.sub-bg1 {
  position: relative;
  /* padding-left: 50px; */
  padding-left: 110px;
  margin-bottom: 1em;
  color: #09931f;
  font-size: 39px;
  font-weight: 600;
}
.sub-bg1:before {
  content: "";
  position: absolute;
  background-image: url(../images/icon_leaves.png);
  background-size: cover;
  /* width: 100px; */
  width: 95px;
  height: 95px;
  /* left: 0; */
  left: 15px;
  top: -0.7em;
}

/* Pre Loader */
/* .gif {
    width: 50px; 
    height: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    
}
  .gif img {
    -webkit-animation: spinHorizontal 5s infinite linear; 
    animation: spinHorizontal 5s infinite linear; 
    
  }
   */
/* @-webkit-keyframes spinHorizontal {
    from {
      -webkit-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
    to {
      -webkit-transform: rotateY(360deg);
      transform: rotateY(360deg);
    }
  }
  
  @keyframes spinHorizontal {
    from {
      -webkit-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
    to {
      -webkit-transform: rotateY(360deg);
      transform: rotateY(360deg);
    }
  } */

/* Certification */

.image {
  /* width:350px; */
  width: 150px;
  /* height: 350px; */
  height: 200px;
  margin: 10px;
  border: 10px solid green;
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
  transition-duration: 1s;
}

.image:hover {
  border: 5px solid green;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: none;
  filter: none;
}
.contain_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Products Code */
.section-card {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(4, 1fr);
  column-gap: 48px;
  /* width: 80%; */
  width: 90%;
  margin: 60px auto;
  /* background-color:#fff; */
  /* background-color:greenyellow; */
}

.card {
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card__img {
  width: 100%;
  display: block;
}

.card__details {
  padding: 10px 0;
}

.card__details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 80%;
  padding: 20px 0;
}

.card__details ul li {
  width: 100%;
  text-align: 16px;
  font-size: 16px;
  padding: 12px 0;
}

.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #bbb;
}

.btn {
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #eee;
  font-weight: 500;
  display: inline-block;
  /* padding: 14px 28px; */
  padding: 8px 8px;
  /* border-radius: 100px; */
  border-radius: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
  /* margin-bottom: 30px; */
  margin-bottom: -300px;
  top: -10px;
  position: relative;
}

.card-1 .btn {
  background-color: green;
}

.card-2 .btn {
  background-color: green;
}

.card-3 .btn {
  background-color: green;
}

/* POPUP */
.popup {
  width: 100%;
  height: 100vh;
  /* height:115px; */
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.popup__content {
  width: 50%;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: absolute;
  /* top: 50%; */
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0;
  transition: all 0.5s 0.1s;
}

.popup__img {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
}

.popup__img .imag {
  display: block;
  width: 33.3333%;
}

.popup__header {
  text-align: center;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 36px;
}

.popup__header h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.popup__header h2 {
  font-size: 20px;
}

.popup__text {
  padding: 0 30px;
  line-height: 1.2;
}

.popup__text p:root(:last-child) {
  margin-bottom: 16px;
}

.popup__btn {
  background-color: #333;
  margin-top: 30px;
}

#popup:target {
  opacity: 1;
  visibility: visible;
}

#popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup__close:link,
.popup__close:visited {
  position: absolute;
  top: 12px;
  right: 20px;
  text-transform: none;
  color: #000;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s;
  font-size: 30px;
}

.popup__close:hover,
.popup__close:active {
  color: #555;
}

#popup_andrographis_paniculata_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_andrographis_paniculata_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_ashwagandha_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_ashwagandha_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_bacopa_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_bacopa_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_banaba_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_banaba_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_boswellia_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_boswellia_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_centella_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_centella_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_cinnamon_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_cinnamon_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_coleus_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_coleus_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_commiphora_mukul_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_commiphora_mukul_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_curcumin_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_curcumin_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_dragon_blood_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_dragon_blood_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_fenugreek_seeds:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_fenugreek_seeds:target {
  opacity: 1;
  visibility: visible;
}
#popup_garcinia_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_garcinia_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_green_coffee_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_green_coffee_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_glycyrrhiza_glabra_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_glycyrrhiza_glabra_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_green_tea_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_green_tea_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_gymnema_sylvestre_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_gymnema_sylvestre_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_horse_chestnut_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_horse_chestnut_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_mangosteen_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_mangosteen_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_mucuna_Pruriens_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_mucuna_Pruriens_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_ocimum_sanctum_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_ocimum_sanctum_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_pterostilbene_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_pterostilbene_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_rotenone_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_rotenone_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_safed_musli_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_safed_musli_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_senna_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_senna_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_sida_cardifolia_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_sida_cardifolia_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_sunthi_zingiber_officinale_Extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_sunthi_zingiber_officinale_Extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_tribulus_alatus_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_tribulus_alatus_extract:target {
  opacity: 1;
  visibility: visible;
}

#popup_tribulus_terrestris_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_tribulus_terrestris_extract:target {
  opacity: 1;
  visibility: visible;
}

#popup_vitexin_passiflora_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_vitexin_passiflora_extract:target {
  opacity: 1;
  visibility: visible;
}
#popup_yohimbe_extract:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#popup_yohimbe_extract:target {
  opacity: 1;
  visibility: visible;
}

/* Gallery code */
.hero-section {
  min-height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-column-gap: 24px;
  grid-row-gap: 24px; */
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  /* width: 100%; */
  width: 135%;
}
@media (max-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card {
  list-style: none;
  position: relative;
  transition: all 0.5s ease-out;
}
.card__bg {
  position: relative;
  height: 50vh;
  min-width: 250px;
  background-size: cover;
  background-position: center center;
  /* border-radius: 1rem; */
  border-radius: 0.5rem;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.5s ease-out;
}
.card__bg::after {
  content: "";
  /* background-image: linear-gradient(360deg, black, transparent); */
  background-image: linear-gradient(360deg, #00000040);
  height: 150px;
  bottom: 0;
  width: 100%;
  position: absolute;
}
.card__content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.card__category {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #acacac;
}
.card:hover {
  transform: scale(1.02);
  filter: drop-shadow(0px 0px 100px #acacac);
}
.card-grid:hover > .card:not(:hover).card {
  filter: brightness(0.8) grayscale(0.6) contrast(1.2) blur(10px);
}

@media (min-width: 300px) and (max-width: 500px) {
  .card {
    list-style: none;
    position: relative;
    transition: all 0.5s ease-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    /* margin: auto; */
    text-align: center;
  }
  .section-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 48px;
    width: 80%;
    margin: 60px auto;
  }
  #popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_andrographis_paniculata_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600;
  }
  #popup_ashwagandha_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_bacopa_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_banaba_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_boswellia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_centella_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_cinnamon_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_coleus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_commiphora_mukul_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_curcumin_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_dragon_blood_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_fenugreek_seeds:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_garcinia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_green_coffee_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_glycyrrhiza_glabra_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_ocimum_sanctum_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_green_tea_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_gymnema_sylvestre_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_horse_chestnut_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_mangosteen_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_mucuna_Pruriens_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_pterostilbene_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_rotenone_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }

  #popup_safed_musli_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_senna_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_sida_cardifolia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_sunthi_zingiber_officinale_Extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_tribulus_alatus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_tribulus_terrestris_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_vitexin_passiflora_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
  #popup_yohimbe_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 540px;
    height: 600px;
  }
}

@media (min-width: 501px) and (max-width: 968px) {
  .card {
    list-style: none;
    position: relative;
    transition: all 0.5s ease-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 500px;
    /* margin: auto; */
    text-align: center;
  }
  .section-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 48px;
    width: 80%;
    margin: 60px auto;
  }
  #popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_andrographis_paniculata_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_ashwagandha_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_bacopa_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_banaba_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_boswellia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_centella_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_cinnamon_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_coleus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_commiphora_mukul_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_curcumin_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_dragon_blood_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_fenugreek_seeds:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_garcinia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_green_coffee_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_glycyrrhiza_glabra_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_ocimum_sanctum_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_green_tea_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_gymnema_sylvestre_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_horse_chestnut_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_mangosteen_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_mucuna_Pruriens_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_pterostilbene_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_rotenone_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }

  #popup_safed_musli_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_senna_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_sida_cardifolia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_sunthi_zingiber_officinale_Extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_tribulus_alatus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_tribulus_terrestris_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_vitexin_passiflora_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
  #popup_yohimbe_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
    width: 950px;
    height: auto;
  }
}

@media (min-width: 969px) and (max-width: 1500px) {
  #popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_andrographis_paniculata_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_ashwagandha_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_bacopa_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_banaba_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_boswellia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_centella_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_cinnamon_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_coleus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_commiphora_mukul_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_curcumin_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_dragon_blood_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_fenugreek_seeds:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_garcinia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_green_coffee_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_glycyrrhiza_glabra_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_ocimum_sanctum_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_green_tea_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_gymnema_sylvestre_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_horse_chestnut_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_mangosteen_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_mucuna_Pruriens_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_pterostilbene_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_rotenone_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_safed_musli_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_senna_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_sida_cardifolia_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_sunthi_zingiber_officinale_Extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_tribulus_alatus_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_tribulus_terrestris_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_vitexin_passiflora_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
  #popup_yohimbe_extract:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    width: 910px;
    height: auto;
  }
}

/* #popup_andrographis_paniculata_extract:target
    #popup_ashwagandha_extract:target
    #popup_bacopa_extract:target
    #popup_banaba_extract:target
    #popup_boswellia_extract:target
    #popup_centella_extract:target
    #popup_cinnamon_extract:target
    #popup_coleus_extract:target
    #popup_commiphora_mukul_extract:target
    #popup_curcumin_extract:target
    #popup_dragon_blood_extract:target
    #popup_fenugreek_seeds:target
    #popup_garcinia_extract:target
    #popup_green_coffee_extract:target
    #popup_glycyrrhiza_glabra_extract:target
    #popup_ocimum_sanctum_extract:target
    #popup_green_tea_extract:target
    #popup_gymnema_sylvestre_extract:target
    #popup_horse_chestnut_extract:target 
    #popup_mangosteen_extract:target
    #popup_mucuna_Pruriens_extract:target
    #popup_pterostilbene_extract:target
    #popup_rotenone_extract:target
    #popup_safed_musli_extract:target
    #popup_senna_extract:target
    #popup_sida_cardifolia_extract:target
    #popup_sunthi_zingiber_officinale_Extract:target
    #popup_tribulus_alatus_extract:target
    #popup_tribulus_terrestris_extract:target
    #popup_vitexin_passiflora_extract:target
    #popup_yohimbe_extract:target */

@media (min-width: 300px) and (max-width: 751px) {
  .video1-bg {
    background: #09931f;
  }
}

/* @media(min-width:600px) and (max-width:770px){
    .video-p{
        position: relative;
        top: -25px;
        left: 300px;
        margin: -243px;    
    }
} */

/* @media(min-width:900px) and (max-width:991px){
        .video-p{
            position:relative; 
            top:-15px; 
            left:100px;
            width:90%;
            margin:-54px;
        }
        .heading2{
            left: 20px;
            position: relative;  
            font-size: 10px;      
        }
        .heading_certified{
            font-size:10px;
        }
} */

@media (min-width: 992px) and (max-width: 1199px) {
  #video {
    position: relative;
    top: -25px;
    /* right:-30%; */
    left: 15%;
    margin-left: 270px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  #video {
    position: relative;
    top: -25px;
    left: 8%;
    margin-left: 240px;
  }
}

@media (min-width: 1300px) and (max-width: 1399px) {
  #video {
    position: relative;
    top: -25px;
    left: 8%;
    margin-left: 180px;
  }
}

@media (min-width: 1400px) and (max-width: 1412px) {
  #video {
    position: relative;
    top: -25px;
    left: 8%;
    margin-left: 160px;
  }
}

@media (min-width: 1413px) and (max-width: 1500px) {
  #video {
    position: relative;
    top: -25px;
    left: 8%;
    margin-left: 120px;
  }
}

@media (min-width: 401px) and (max-width: 1000px) {
  .video1-bg {
    /* background-image: url(../images/video1.jpg); */
    background-image: url(../images/certified_section_1.png);
    background-size: cover;
    /* background:#4f964c; */
  }
  .video-p {
    background: #4e964cc7;
    /* background-image:url(../images/logo_icon.png); */
    left: -50px;
    position: relative;
  }
}

@media (min-width: 336px) and (max-width: 400px) {
  .video1-bg {
    /* background-image: url(../images/video1.jpg); */
    background-image: url(../images/certified_section.png);
    background-size: cover;
    /* background:#4f964c; */
  }
  .video-p {
    text-align: center;
    /* background: rgb(255 197 60 / 57%); */
    padding: 2em;
    width: 80%;
    /* width: 60%; */
    margin: auto;
  }
}
@media (min-width: 300px) and (max-width: 500px) {
  .about-sec pb-90 {
    position: relative;
    top: 25px;
  }
}

@media (min-width: 300px) and (max-width: 500px) {
  .paa {
    display: block;
    /* width: 100%;
        width:70%; */
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
    /* border:20px green; */
  }
}

.parallax {
  /* The image used */
  background-image: url("../images/background_2.png");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  /* background-attachment: fixed; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* margin-top: 800px; */
}

@media (max-width: 649px) {
  .main-slider h3 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 1.14em;
    padding-right: 64px;
    text-transform: capitalize;
    display: inline-block;
    z-index: 1;
    top: -35px;
    position: relative;
    margin-bottom: 60px;
  }
}

@media (min-width: 767px) and (max-width: 768px) {
  .main-slider h3 {
    top: -5px;
    position: relative;
    margin-bottom: 100px;
  }
}

@media (min-width: 991px) and (max-width: 1041px) {
  .main-slider h3 {
    top: -67px;
    position: relative;
    margin-bottom: 50px;
  }
}

/* Our clients code carousel start */
.paa_punya_herbals {
  width: 40%;
  /* border-radius: 30%; */
  border-radius: 10%;
}

.container_clients_punya_herbals {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.items_punya_herbals {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: carouselAnim 50s infinite alternate linear;
}

.entry {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 300px;
  background: #fff;
  margin: 1em;
  padding: 0.5em;
  border-radius: 10px;
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
  .items_punya_herbals {
    animation: carouselAnim 35s infinite alternate linear;
  }

  @keyframes carouselAnim {
    from {
      transform: translate(0, 0);
    }

    to {
      transform: translate(calc(-100% + (2 * 300px)));
    }
  }
}

.entry {
  text-align: center;
  padding: 1em;
}

.name {
  font-weight: bold;
}

@keyframes carouselAnim {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(calc(-100% + (5 * 300px)));
  }
}

.container_clients_punya_herbals .faders {
  width: 100%;
  position: absolute;
  height: 100%;
}

.faders .right,
.faders .left {
  /* background: linear-gradient(
to right,
rgba(245, 245, 245, 1) 0%,
rgba(255, 255, 255, 0) 100%
); */
  width: 15%;
  height: 100%;
  position: absolute;
  z-index: 200;
}

.right {
  right: 0;
  /* background: linear-gradient(
to left,
rgba(245, 245, 245, 1) 0%,
rgba(255, 255, 255, 0) 100%
); */
}
/* Our clients carousel ends */

:root {
  --t: 3.5s;
  --e1: cubic-bezier(0.8, 0, 0.1, 1);
  --e2: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --er: linear;

  --color: #ffffff00;
  --font: "Gotham", Gotham;

  --slides: 4;
  --image1: url("../images/punya_banner_3.jpg");
  --image2: url("../images/punya_banner_5.jpg");
  --image3: url("../images/punya_banner_3.jpg");
  --image4: url("../images/punya_banner_5.jpg");
}

.untitled {
  margin-bottom: 300px;
  position: absolute;
  height: 100%;
  width: 100%;
  animation: rotateHue calc(var(--t) * var(--slides) * 2) linear infinite;
  animation-delay: calc(var(--t) / 5);
  overflow: hidden;
}

.untitled__shutters {
  position: absolute;
  height: 150vmax;
  width: 150vmax;
  left: calc(50% - 75vmax);
  top: calc(50% - 75vmax);
  pointer-events: none;
  z-index: 2;
  animation: rotateFrame calc(var(--t) * 1) var(--er) infinite;
}

@keyframes rotateFrame {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.untitled__shutters::before,
.untitled__shutters::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: white;
  pointer-events: auto;
}

.untitled__shutters::before {
  bottom: 50%;
  animation: openTop calc(var(--t) * 2) infinite;
}

@keyframes openTop {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: var(--e1);
  }
  40% {
    transform: translate3d(-50%, -65vmax, 0);
    animation-timing-function: var(--e2);
  }
  70% {
    transform: translate3d(-50%, -65vmax, 0);
    animation-timing-function: var(--e2);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: var(--e2);
  }
}

.untitled__shutters::after {
  top: 50%;
  animation: openBottom calc(var(--t) * 2) infinite;
}

@keyframes openBottom {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: var(--e1);
  }
  40% {
    transform: translate3d(-50%, 65vmax, 0);
    animation-timing-function: var(--e2);
  }
  70% {
    transform: translate3d(-50%, 65vmax, 0);
    animation-timing-function: var(--e2);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: var(--e2);
  }
}

.untitled__slides {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
}

.untitled__slide {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  animation: showHideSlide calc(var(--t) * var(--slides) * 2) steps(1) infinite;
}

@keyframes showHideSlide {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  25% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

.untitled__slide:nth-child(1) {
  animation-delay: calc(var(--t) * 0 * 2);
}
.untitled__slide:nth-child(1) .untitled__slideBg {
  background-image: var(--image1);
}
.untitled__slide:nth-child(2) {
  animation-delay: calc(var(--t) * 1 * 2);
}
.untitled__slide:nth-child(2) .untitled__slideBg {
  background-image: var(--image2);
}
.untitled__slide:nth-child(3) {
  animation-delay: calc(var(--t) * 2 * 2);
}
.untitled__slide:nth-child(3) .untitled__slideBg {
  background-image: var(--image3);
}
.untitled__slide:nth-child(4) {
  animation-delay: calc(var(--t) * 3 * 2);
}
.untitled__slide:nth-child(4) .untitled__slideBg {
  background-image: var(--image4);
}

.untitled__slideBg {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color);
  background-blend-mode: hard-light;
  opacity: 1;
  z-index: -1;
  animation: bgInOut calc(var(--t) * 4) calc(-1 * var(--t) * 2) infinite;
}

@keyframes bgInOut {
  0% {
    transform: rotate(-45deg) scale(1.1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  33% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  66% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  100% {
    transform: rotate(45deg) scale(0.9);
  }
}

.untitled__slideContent {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  color: white;
  font-family: var(--font);
  /* line-height: 0.8; */
  letter-spacing: -0.025em;
  z-index: 2;
  opacity: 2;
  text-shadow: 2px 2px 2.5em rgba(var(--color), 2);
  /* mix-blend-mode: lighten; */
  background: #0000005c;
  padding: 20px;
  text-align: center;
}

.sub-header {
  font-size: 18px !important;
  padding-top: 20px;
}
.untitled__slideContent span {
  display: block;
  font-size: 8vmin;
}

.buttonn {
  font-family: "Gotham", sans-serif;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2vmin;
  display: inline-block;
  position: relative;
  border: 3px solid white;
  box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
  background: transparent;
  margin-top: 5vmin;
  mix-blend-mode: hard-light;
  color: white;
  padding: 2vmin 2vmin 1.8vmin 2vmin;
  letter-spacing: 0.1em;
  text-shadow: none;
  line-height: 1;
  transform: translate3d(0.5vmin, -0.5vmin, 0);
  transition: all 100ms linear;
}

.buttonn:hover {
  transform: translate3d(1vmin, -1vmin, 0);
  box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
  background: black;
  color: white;
}

.buttonn:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

.main-sliderr {
  display: flex;
}

.icon-s img:nth-child(2) {
  display: none;
}

.icon-s:hover img:nth-child(1) {
  display: none;
}

.icon-s:hover img:nth-child(2) {
  display: block;
}
