@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
body.scrollLock {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

.container {
  max-width: 1314px;
}

.main-btn {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Black, #001019);
}
.main-btn:hover {
  color: #fff;
}

h2 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 111.111% */
}
h2 span {
  font-style: italic;
}

p {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

header .header-top h6 {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0;
}
header .header-top h6 a {
  color: var(--Text-Grey, #696969);
}
header .header-top h6 a:hover {
  color: var(--Text-Grey, #696969);
}
header .header-top h6 a i {
  display: none;
}
header .header-top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
header .header-top ul li {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 20px 0;
}
header .header-top ul li a {
  color: var(--Text-Grey, #696969);
}
header .header-top ul li a:hover {
  color: var(--Text-Grey, #696969);
}
header .header-bottom {
  padding: 4px 0;
  background: var(--Brand-Blue, #14cdec);
  position: relative;
}
header .header-bottom .container {
  position: relative;
}
header .header-bottom ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
header .header-bottom ul.menu li {
  position: relative;
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
header .header-bottom ul.menu li:hover ul.sub-menu {
  display: block;
}
header .header-bottom ul.menu li.current-menu-item a {
  color: #fff;
}
@media screen and (min-width: 991px) {
  header .header-bottom ul.menu li.menu-item-has-children::after {
    /* Set the font for this icon style */
    font-family: "Font Awesome 6 Free";
    /* Set the weight for this icon style */
    font-weight: 900;
    /* Make sure icons render pixel-perfect */
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
  }
  header .header-bottom ul.menu li ul.sub-menu {
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 40px;
    left: 0px;
    background: #14cdec;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 0 7px #fff;
    z-index: 9;
    display: none;
  }
  header .header-bottom ul.menu li ul.sub-menu li a {
    display: block;
  }
}
header .header-bottom ul.menu li button {
  display: none;
}
header .header-bottom ul.menu li a {
  padding: 10px;
  transition: all 0.3s ease-in-out;
  color: var(--Black, #001019);
}
header .header-bottom ul.menu li a:hover {
  color: #fff;
}
header .header-bottom ul.menu li.active a {
  color: #fff;
}
header .header-bottom ul.icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}
header .header-bottom ul.icon li {
  position: relative;
}
header .header-bottom ul.icon li a span.cart-count {
  padding: 3px 7.3px;
  border-radius: 100px;
}
header .header-bottom ul.icon li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background: #14cdec;
}
footer .footer-top {
  padding: 20px 0 25px 0;
}
footer .footer-top ul.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
footer .footer-top ul.menu li {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .footer-top ul.menu li a {
  font-size: 14px;
  padding: 10px;
  color: var(--Black, #001019);
}
footer .footer-top ul.menu li a:hover {
  color: var(--Black, #001019);
}
footer .footer-top ul.s-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
footer .footer-top ul.s-media li {
  width: 28px;
  height: 28px;
  border: 1px solid #001019;
  border-radius: 50%;
}
footer .footer-top ul.s-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
footer .footer-top ul.s-media li a:hover {
  background-color: #001019;
}
footer .footer-top ul.s-media li a:hover i {
  color: #fff;
}
footer .footer-top ul.s-media li a i {
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  color: #001019;
}
footer .footer-bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid #fff;
  padding: 24px 0 19px 0;
}
footer .footer-bottom ul li {
  color: var(--Text-dark, #070d1d);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}
footer .footer-bottom ul li a {
  color: var(--Text-dark, #070d1d);
}
footer .footer-bottom ul li a:hover {
  color: var(--Text-dark, #070d1d);
}

section.inner-banner {
  padding: 31px 0 24px;
  background: #f4fdff;
}
section.inner-banner h1 {
  color: var(--Black, #001019);
  font-family: "Playfair Display";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
}
section.inner-banner p {
  margin: 0 0 35px;
}
section.inner-banner .img-box {
  position: relative;
  width: 100%;
}
section.inner-banner .img-box img.one {
  position: absolute;
  top: -12px;
  right: 65px;
  width: 280px;
  height: 361px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 174.884px 174.884px 0px 0px;
  display: none;
}
section.inner-banner .img-box img.two {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
section.inner-banner .img-box .woo-product-gallery-slider {
  width: 100%;
}

section.home-banner {
  padding: 54px 0 96px;
  background: #f4fdff;
}
section.home-banner h1 {
  max-width: 385px;
  position: relative;
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px;
  /* 112.5% */
  margin-bottom: 60px;
}
section.home-banner h1 span {
  font-style: italic;
}
section.home-banner h1 img {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 0;
  margin: auto;
  transform: rotate(6deg);
}
section.home-banner .home-bttn {
  width: 86%;
  font-size: 20px;
}
section.home-banner .form-wrap {
  position: relative;
  margin-bottom: 30px;
}
section.home-banner .form-wrap img {
  width: 16px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 12px;
  margin: auto;
}
section.home-banner .form-wrap input:not([type=submit]) {
  border-radius: 8px;
  background: #d0f7ff;
  padding: 5px 125px 5px 38px;
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
}
section.home-banner .form-wrap input:not([type=submit])::-moz-placeholder {
  color: var(--Black, rgba(0, 16, 25, 0.2));
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-banner .form-wrap input:not([type=submit])::placeholder {
  color: var(--Black, rgba(0, 16, 25, 0.2));
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-banner .form-wrap input[type=submit] {
  border: none;
  height: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
}
section.home-banner h6 {
  color: var(--Black, rgba(0, 16, 25, 0.9));
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 127px 0 18px 0;
}
section.home-banner ul {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 2px;
}
section.home-banner img.main {
  border-radius: 209px 209px 0px 0px;
}
section.home-banner img.frame {
  width: 306px;
  height: 82px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 51px;
}
section.home-banner figure {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 1.875rem;
}
section.home-banner figure img {
  width: 102px;
  height: 102px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.home-banner figure img:hover {
  transform: rotate(180deg);
}
section.home-banner p {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin: 0 0 20px;
}

section.home-sec2 {
  padding: 80px 0;
}
section.home-sec2 .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
section.home-sec2 .text h2 span {
  display: block;
  color: #14cdec;
}
section.home-sec2 .text p {
  max-width: 530px;
  margin: 0;
}
section.home-sec2 a.main-btn {
  margin-bottom: 40px;
}
section.home-sec2 a.cart {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
section.home-sec2 a.cart:hover img {
  transform: scale(1.1);
}
section.home-sec2 a.cart img {
  width: 100%;
  height: 303px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.home-sec2 h5 {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  position: relative;
}
section.home-sec2 h5 span {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-sec2 h5 span img {
  width: 23px;
  height: 23px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec2 h4 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
section.home-sec2 h4 a {
  color: var(--Black, #001019);
}
section.home-sec2 h6 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

section.home-sec3 {
  padding: 60px 0;
  background: #f4fdff;
  background-image: url(../images/d1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 300px 345px;
}
section.home-sec3 .img-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
section.home-sec3 .img-box img.one {
  width: 306px;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px 200px 0px 0px;
  margin-right: 18px;
}
section.home-sec3 .img-box img.two {
  width: 306px;
  height: 564px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px 200px 100px 0px;
}
section.home-sec3 .img-box img.three {
  position: absolute;
  top: 75px;
  left: 0;
}
section.home-sec3 h2 {
  margin-bottom: 24px;
}
section.home-sec3 h2 span {
  display: block;
}
section.home-sec3 p {
  margin-bottom: 40px;
  position: relative;
}
section.home-sec3 p img {
  position: absolute;
  bottom: -55px;
  left: -55px;
}

section.home-sec4 {
  padding: 80px 0;
}
section.home-sec4 h2 {
  text-align: center;
  margin-bottom: 35px;
}
section.home-sec4 .text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
  margin-bottom: 35px;
}
section.home-sec4 .text h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  margin: 0;
}
section.home-sec4 .text h6 img {
  width: 26px;
  height: 26px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec4 ul.nav {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 40px !important;
  border-radius: 7px;
  border: 1px solid #d7d7d7;
  background: var(--White, #fff);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
}
section.home-sec4 ul.nav li button {
  color: var(--Black, #001019);
  text-align: center;
  font-family: "Instrument Serif";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 250% */
  padding: 5px 30px;
}
section.home-sec4 ul.nav li button.active {
  color: var(--White, #fff);
  border-radius: 7px;
  background: var(--Black, #001019);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
}
section.home-sec4 .main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
section.home-sec4 .main-box .plan-box {
  width: 50%;
  border-radius: 13px;
  background: #f4fdff;
  padding: 30px;
}
section.home-sec4 .main-box .plan-box a.main-btn {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
section.home-sec4 .main-box .plan-box .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.home-sec4 .main-box .plan-box .content .text-wrap h4 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 125% */
  margin-bottom: 20px;
}
section.home-sec4 .main-box .plan-box .content .text-wrap h3 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 62.5% */
  margin-bottom: 35px;
}
section.home-sec4 .main-box .plan-box .content .text-wrap h3 span {
  font-size: 20px;
}
section.home-sec4 .main-box .plan-box .content .text-wrap p {
  max-width: 234px;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  margin-bottom: 12px;
}
section.home-sec4 .main-box .plan-box .content ul li {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  margin-bottom: 16px;
  padding-left: 30px;
  background-image: url(../images/tick.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px;
}

section.home-sec5 {
  padding: 60px 0;
  background: #f6f6f6;
}
section.home-sec5 h2 {
  text-align: center;
  margin-bottom: 34px;
}
section.home-sec5 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
section.home-sec5 ul li {
  padding: 0 60px;
  border-right: 1px solid #001019;
}
section.home-sec5 ul li:last-child {
  border: none;
}
section.home-sec5 ul li h5 {
  color: var(--Black, #001019);
  text-align: center;
  font-family: "Instrument Serif";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 62.5% */
  margin: 0;
}
section.home-sec5 ul li h6 {
  color: var(--Black, #001019);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  /* 200% */
  margin: 20px 0 0;
}
section.home-sec5 .video-box {
  width: 100%;
  height: 626px;
  border-radius: 20px;
  overflow: hidden;
}
section.home-sec5 .video-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.home-sec6 {
  padding: 80px 0;
}
section.home-sec6 .heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
section.home-sec6 .heading h2 {
  max-width: 418px;
  margin-bottom: 24px;
}
section.home-sec6 .heading p {
  max-width: 530px;
  margin: 0;
}
section.home-sec6 figure {
  width: 100%;
  height: 252px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
  margin-top: 30px;
}
section.home-sec6 figure:hover img {
  transform: scale(1.1);
}
section.home-sec6 figure img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.home-sec6 figure + .text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section.home-sec6 figure + .text h5 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
section.home-sec6 figure + .text h5 span {
  display: block;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
section.home-sec6 figure + .text h6 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
section.home-sec6 p {
  font-size: 14px;
  line-height: 22px;
  /* 157.143% */
  margin-bottom: 18px;
}
section.home-sec6 p + a {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-sec6 p + a:hover {
  color: var(--Black, #001019);
}

section.home-sec7 {
  padding: 60px 0;
  background: #f4fdff;
}
section.home-sec7 h2 {
  margin: 0;
}
section.home-sec7 p {
  margin: 12px 0 38px;
}
section.home-sec7 .img-box {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  justify-content: center;
}
section.home-sec7 .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec7 .img-box img.one {
  width: 212px;
  height: 349px;
  border-radius: 138.652px 138.652px 0px 0px;
}
section.home-sec7 .img-box img.two {
  width: 268px;
  height: 441px;
  border-radius: 174.884px 174.884px 0px 0px;
}
section.home-sec7 ul li {
  padding: 24px 20px;
  border-radius: 10px;
  background: var(--White, #fff);
  margin-bottom: 10px;
}
section.home-sec7 ul li h5 {
  position: relative;
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 7px 30px 11px 0;
  margin: 0;
  cursor: pointer;
}
section.home-sec7 ul li h5 img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
section.home-sec7 ul li .content {
  display: none;
  margin-top: 10px;
}
section.home-sec7 ul li .content p {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
  text-transform: capitalize;
  margin: 0;
}
section.home-sec7 ul li.active h5 img {
  transform: rotate(-45deg);
}

section.about-sec1 {
  padding: 80px 0;
}
section.about-sec1 img {
  width: 34px;
  height: 34px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-sec1 h1 {
  text-align: center;
}
section.about-sec1 img.main {
  width: 100%;
  height: 564px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
section.about-sec1 h2 {
  margin-bottom: 18px;
}
section.about-sec1 p {
  margin-bottom: 24px;
}
section.about-sec1 h5 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 12px 0 10px;
}
section.about-sec1 ul li {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
}
section.about-sec1 ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #626262;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
section.about-sec1 ul li:last-child {
  margin: 0;
}

section.about-sec2 {
  padding: 60px 0;
  background: #f6f6f6;
  background-repeat: no-repeat;
  background-position: left bottom;
}
section.about-sec2 h2 {
  margin-bottom: 55px;
}
section.about-sec2 h4 {
  color: #14cdec;
}
section.about-sec2 h6 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 150% */
  margin-bottom: 8px;
}
section.about-sec2 .img-box {
  position: relative;
  margin-top: 36px;
}
section.about-sec2 .img-box img {
  width: 100%;
  height: 528px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 400px 400px 0px 0px;
}
section.about-sec2 .img-box img.abs-img {
  position: absolute;
  top: -18px;
  right: 0;
  border-radius: 0;
  width: 73px;
  height: 67px;
}

section.about-sec3 {
  margin-top: 80px;
  background-color: #fff;
}
section.about-sec3 ul li {
  background: #f4fdff;
}

section.contact-sec1 {
  padding: 80px 0;
}
section.contact-sec1 p {
  margin: 16px 0 38px;
}
section.contact-sec1 ul {
  max-width: 377px;
}
section.contact-sec1 ul li {
  background: #f4fdff;
  padding: 20px;
  margin-bottom: 30px;
}
section.contact-sec1 ul li:last-child {
  margin: 0;
}
section.contact-sec1 ul li img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.contact-sec1 ul li h6 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 10px 0 8px;
}
section.contact-sec1 ul li a {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}
section.contact-sec1 .form-wrap {
  background: #f6f6f6;
  padding: 30px;
}
section.contact-sec1 .form-wrap h2 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 111.111% */
  margin-bottom: 22px;
}
section.contact-sec1 .form-wrap input:not([type=submit]),
section.contact-sec1 .form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #ececec;
  background: #fff;
  border: none;
  outline: none;
  margin-bottom: 24px;
  color: #000;
}
section.contact-sec1 .form-wrap input:not([type=submit])::-moz-placeholder, section.contact-sec1 .form-wrap textarea::-moz-placeholder {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
section.contact-sec1 .form-wrap input:not([type=submit])::placeholder,
section.contact-sec1 .form-wrap textarea::placeholder {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
section.contact-sec1 .form-wrap input[type=submit] {
  border: none;
  width: 100%;
  text-align: center;
}
section.contact-sec1 .form-wrap textarea {
  height: 165px;
  margin-bottom: 40px;
  resize: none;
}

section.store-sec1 {
  padding: 40px 0 80px;
}
section.store-sec1 .box {
  border-bottom: 1px solid #dedede;
  padding: 20px;
}
section.store-sec1 .box:last-child {
  border: none;
}
section.store-sec1 .box h5 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}
section.store-sec1 .box ul li {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 12px 10px 0;
}
section.store-sec1 .box ul li a {
  transition: all 0.3s ease-in-out;
  color: var(--Text-Grey, #696969);
  margin: 0;
}
section.store-sec1 .box ul li a:hover {
  color: var(--Brand-Blue, #14cdec);
}
section.store-sec1 .box ul li.active a {
  color: var(--Brand-Blue, #14cdec);
}
section.store-sec1 .text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
section.store-sec1 p {
  opacity: 0.9;
  margin: 8px 0 0;
}
section.store-sec1 p span {
  color: var(--Brand-Blue, #14cdec);
}
section.store-sec1 .form-wrap {
  width: 100%;
  max-width: 420px;
  position: relative;
}
section.store-sec1 .form-wrap input {
  width: 100%;
  border-radius: 7px;
  background: #f6f6f6;
  padding: 15px 15px 15px 35px;
  border: none;
  outline: none;
  color: #000;
}
section.store-sec1 .form-wrap input::-moz-placeholder {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.2;
}
section.store-sec1 .form-wrap input::placeholder {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.2;
}
section.store-sec1 .form-wrap img {
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 10px;
  margin: auto;
}
section.store-sec1 a {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
section.store-sec1 a:hover img {
  transform: scale(1.1);
}
section.store-sec1 a img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 303px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.store-sec1 h5 {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  position: relative;
}
section.store-sec1 h5 span {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
}
section.store-sec1 h5 span img {
  width: 23px;
  height: 23px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-sec1 h4 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
section.store-sec1 h4 a {
  margin: 0;
  color: var(--Black, #001019);
}
section.store-sec1 h4 a:hover {
  color: var(--Black, #001019);
}
section.store-sec1 h6 {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 40px;
}

.pagination {
  margin-top: 40px;
  justify-content: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pagination ul li {
  width: 40px;
  height: 40px;
}
.pagination ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  border-radius: 50%;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
  margin: 0;
}
.pagination ul li.active a {
  color: var(--White, #fff);
  background-color: #14cdec;
}

section.store-details-sec1 {
  padding: 50px 0 80px;
}
section.store-details-sec1 ul.page {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 21px;
}
section.store-details-sec1 ul.page li {
  opacity: 0.9;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
section.store-details-sec1 ul.page li a {
  color: var(--Brand-Blue, #14cdec);
}
section.store-details-sec1 ul.page li a:hover {
  color: var(--Brand-Blue, #14cdec);
}
section.store-details-sec1 .img-box {
  display: grid;
  grid-template-columns: 82px auto;
  gap: 30px;
}
section.store-details-sec1 .img-box ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.store-details-sec1 .img-box ul li img {
  width: 82px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-details-sec1 .img-box img.main-img {
  width: 100%;
  height: 505px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-details-sec1 h6 {
  color: var(--Brand-Blue, #14cdec);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 8px;
  text-transform: uppercase;
}
section.store-details-sec1 h6 a {
  color: var(--Brand-Blue, #14cdec);
}
section.store-details-sec1 h5 {
  overflow: hidden;
  color: var(--Black, #001019);
  text-overflow: ellipsis;
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 133.333% */
  margin-bottom: 24px;
}
section.store-details-sec1 h4 {
  overflow: hidden;
  color: var(--Text-dark, #070d1d);
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 100% */
  margin-bottom: 18px;
}
section.store-details-sec1 h4 del {
  overflow: hidden;
  color: var(--Text-Grey, #696969);
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  /* 150% */
  margin-right: 8px;
}
section.store-details-sec1 .btn-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
section.store-details-sec1 .btn-box .number {
  width: 145px;
  padding: 4px 10px 7px 10px;
  border-radius: 3px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.store-details-sec1 .btn-box .number input {
  color: var(--Black, #001019);
  font-family: "Playfair Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 32px;
  text-align: center;
  padding: 0;
  margin: 0;
  border: none;
}
section.store-details-sec1 .btn-box .number span {
  text-align: center;
  font-size: 22px;
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
section.store-details-sec1 .btn-box a.main-btn {
  width: 100%;
  padding: 13px 30px;
  line-height: unset;
}
section.store-details-sec1 form.variations_form.cart {
  flex-direction: column;
}
section.store-details-sec1 form.cart {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
section.store-details-sec1 form.cart .woocommerce-variation-price {
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 17px;
}
section.store-details-sec1 form.cart .quantity {
  width: 50%;
  padding: 5px 10px 6px 10px;
  border-radius: 3px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
section.store-details-sec1 form.cart .quantity input {
  color: var(--Black, #001019);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  text-align: center;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-appearance: none;
}
section.store-details-sec1 form.cart .quantity input::-webkit-inner-spin-button {
  display: none;
}
section.store-details-sec1 form.cart .quantity button {
  text-align: center;
  font-size: 22px;
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  background: transparent;
  top: -3px;
  position: relative;
}
section.store-details-sec1 form.cart .variations .value select {
  padding: 10px 15px;
  border-radius: 5px;
  margin-right: 9px;
  border: 1px solid #000;
}
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation.single_variation {
  margin: 0;
}
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button {
  display: flex;
  gap: 16px;
}
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button .quantity {
  margin: 0;
}
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button .single_add_to_cart_button button.alt {
  margin: 0;
}
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button .gpay-card-info-container.black,
section.store-details-sec1 form.cart .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button .gpay-card-info-animation-container.black {
  background-color: #000;
  box-shadow: none;
  height: 44px !important;
}
section.store-details-sec1 form.cart .single_add_to_cart_button {
  width: 50%;
  line-height: unset;
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 26px;
  border-radius: 3px;
  background: #000 !important;
  white-space: nowrap;
}
section.store-details-sec1 form.cart .single_add_to_cart_button:hover, section.store-details-sec1 form.cart .single_add_to_cart_button:focus, section.store-details-sec1 form.cart .single_add_to_cart_buttonactive {
  background: var(--Black, #001019);
}
section.store-details-sec1 a.bye {
  text-align: center;
  width: 100%;
  color: var(--White, #fff);
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: unset;
  padding: 13px 30px;
  border-radius: 3px;
  background: var(--Brand-Blue, #14cdec);
}
section.store-details-sec1 ul.option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  margin: 12px 0 24px;
}
section.store-details-sec1 ul.option li {
  color: var(--Text-Grey, #696969);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 200% */
}
section.store-details-sec1 ul.option li a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--Text-Grey, #696969);
}
section.store-details-sec1 ul.option li a:hover {
  color: var(--Text-Grey, #696969);
}
section.store-details-sec1 ul.option li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-details-sec1 ul.details {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}
section.store-details-sec1 ul.details li {
  width: 50%;
  color: var(--Text-Grey, #696969);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
section.store-details-sec1 ul.details li img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-details-sec1 ul.details + p {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 24px;
  margin-bottom: 0;
}
section.store-details-sec1 ul.details + p span {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--Black, #001019);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
}
section.store-details-sec1 ul.details + p span img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.store-details-sec2 .tab-outer {
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  background: #f4fdff;
  padding-top: 26px;
}
section.store-details-sec2 .tab-outer ul.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #d6d6d6;
}
section.store-details-sec2 .tab-outer ul.tab-btn li {
  width: 194px;
  color: var(--Text-Grey, #696969);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.store-details-sec2 .tab-outer ul.tab-btn li a {
  position: relative;
  color: var(--Text-Grey, #696969);
  display: block;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer ul.tab-btn li a:hover {
  color: var(--Text-Grey, #696969);
}
section.store-details-sec2 .tab-outer ul.tab-btn li a.active {
  color: #14cdec;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer ul.tab-btn li a.active:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #14cdec;
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0;
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs li {
  width: 194px;
  color: var(--Text-Grey, #696969);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs li a {
  position: relative;
  color: var(--Text-Grey, #696969);
  display: block;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs li a:hover {
  color: var(--Text-Grey, #696969);
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs li.active {
  color: #14cdec;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer ul.tabs.wc-tabs li.active a:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #14cdec;
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
section.store-details-sec2 .tab-outer .tabs {
  padding: 0px;
}
section.store-details-sec2 .tab-outer .tabs h3 {
  color: var(--Black, #001019);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 80% */
  margin-bottom: 15px;
}
section.store-details-sec2 .tab-outer .tabs p {
  color: var(--Text-Grey, #696969);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 15px;
}
section.store-details-sec2 .tab-outer .tabs p + h3 {
  margin: 42px 0 18px;
}
section.store-details-sec2 .tab-outer .tabs ul li {
  color: var(--Text-Grey, #696969);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
section.store-details-sec2 .tab-outer .tabs ul li:last-child {
  margin: 0;
}
section.store-details-sec2 .tab-outer .tabs ul li img {
  width: 16px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel {
  padding: 30px;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel h3,
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel h2 {
  color: var(--Black, #001019);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 80% */
  margin-bottom: 15px;
  font-family: inherit;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel p {
  color: var(--Text-Grey, #696969);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 15px;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel p + h3 {
  margin: 42px 0 18px;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel ul li {
  color: var(--Text-Grey, #696969);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel ul li:last-child {
  margin: 0;
}
section.store-details-sec2 .tab-outer .woocommerce-Tabs-panel ul li img {
  width: 16px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

section.store-details-sec3 a.main-btn {
  margin: 0 !important;
}

section.login {
  position: relative;
  padding: 3.75rem 0;
  overflow: hidden;
}
section.login > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
section.login .login-form {
  border-radius: 15px;
  background: var(--White, #ffffff);
  -webkit-backdrop-filter: blur(14.3000001907px);
          backdrop-filter: blur(14.3000001907px);
  padding: 30px 40px;
}
section.login .login-form img {
  width: 84px;
  height: 84px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
section.login .login-form h2 {
  margin: 30px 0 0;
}
section.login .login-form input:not([type=submit], [type=checkbox]) {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #ececec;
  background: #fff;
  outline: none;
  margin-top: 24px;
  color: #000;
}
section.login .login-form input:not([type=submit], [type=checkbox])::-moz-placeholder {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
section.login .login-form input:not([type=submit], [type=checkbox])::placeholder {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
section.login .login-form input[type=submit] {
  border: none;
  width: 100%;
  text-align: center;
  padding: 13px 30px;
}
section.login .login-form .input-group {
  position: relative;
  margin-top: 24px;
}
section.login .login-form .input-group input {
  margin: 0;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
section.login .login-form .input-group button,
section.login .login-form .input-group .toggle-password {
  width: 18px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  bottom: 0.75rem;
  margin: auto;
  right: 20px;
  border: none;
  display: table;
  padding: 0;
}
section.login .login-form .input-group button i,
section.login .login-form .input-group .toggle-password i {
  position: relative;
}
section.login .login-form .box {
  margin-top: 1.5rem;
}
section.login .login-form .checkbox {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
section.login .login-form .checkbox input {
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 99;
}
section.login .login-form .checkbox input:checked + label::before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  top: 5px;
  left: 4px;
  bottom: 0;
  margin: auto;
  color: #fff;
  z-index: 1;
  font-size: 12px;
}
section.login .login-form .checkbox input:checked + label::after {
  background-color: #696969;
}
section.login .login-form .checkbox label {
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
  padding: 3px 3px 3px 30px;
}
section.login .login-form .checkbox label::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid var(--Text-Grey, #696969);
  position: absolute;
  top: 3px;
  left: 0;
  margin: auto;
}
section.login .login-form .text-wrap {
  margin: 8px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.login .login-form .text-wrap a {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
section.login .login-form > p {
  display: flex;
  gap: 1rem;
}
section.login .login-form > p a {
  font-weight: 700;
  color: #000;
}
section.login #error_msg_2 {
  margin: 15px 0 0;
}
section.login #succ_msg,
section.login #error_msg {
  text-align: center;
  margin: 0 0 10px;
}

.know_more {
  padding: 80px 0;
}
.know_more .img_div {
  display: flex;
  -moz-column-gap: 31px;
       column-gap: 31px;
  align-items: baseline;
  position: relative;
}
.know_more .img_div .icon {
  position: absolute;
  left: 0;
  top: 74px;
  display: none;
}
.know_more .img_div img.img-1 {
  width: 100%;
  background: var(--White, #fff);
  max-height: 505px;
  -o-object-fit: cover;
     object-fit: cover;
}
.know_more .img_div img.img-2 {
  border-radius: 200px 200px 100px 0px;
  background: var(--White, #fff);
  display: none;
}
.know_more .txt_div p {
  margin-top: 24px;
  margin-bottom: 0;
}
.know_more .txt_div p:nth-child(2) {
  margin-top: 16px;
}

.health_benefit {
  margin-bottom: 78px;
}
.health_benefit .img_div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
.health_benefit .txt_div {
  background-color: #001019;
  padding: 40px 23px 62px 32px;
  border-radius: 0 20px 20px 0;
  height: 100%;
}
.health_benefit .txt_div h2 {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
.health_benefit .txt_div p {
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}
.health_benefit .txt_div ul.point {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.health_benefit .txt_div ul.point li {
  padding: 7px 15px;
  border-radius: 41px;
  background-color: #011c2c;
  color: var(--White, #fff);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: lowercase;
  opacity: 0.9;
}

.key {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  position: relative;
}
.key:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4588235294);
  position: absolute;
  top: 0;
  left: 0;
}
.key .txt {
  position: relative;
  z-index: 9;
  padding: 126px 0;
}
.key h2 {
  margin: auto;
  text-align: center;
  color: #fff;
  max-width: 760px;
  margin-bottom: 40px;
}
.key .main-btn {
  background-color: #14cdec;
  margin: auto;
  display: table;
}

.deep_look {
  padding-top: 99px;
  padding-bottom: 80px;
}
.deep_look h2 {
  margin-bottom: 24px;
}
.deep_look .txt p:first-child {
  margin-bottom: 32px;
}
.deep_look .txt p:last-child {
  margin-bottom: 0;
}
.deep_look .txt p:nth-child(2) {
  margin-bottom: 30px;
}
.deep_look .main-btn {
  margin-top: 40px;
}
.deep_look .img_div {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: baseline;
}
.deep_look .img_div img.img-1 {
  border-radius: 200px 200px 0px 0px;
  background: var(--White, #fff);
  max-height: 430px;
}
.deep_look .img_div img.img-2 {
  border-radius: 200px 200px 0px 0px;
  background: var(--White, #fff);
}

section.about-sec1 .col-lg-4 {
  margin-bottom: 30px;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider {
  width: 100% !important;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider .wpgs-lightbox-icon {
  width: 100% !important;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider .zoomtoo-container {
  width: 100% !important;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider .zoomtoo-container img.attachment-shop_single {
  width: 100% !important;
  max-width: 100% !important;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider .wpgs-nav .slick-slide img {
  width: 100% !important;
  max-width: 100% !important;
}

section.store-details-sec1 .img-box .woo-product-gallery-slider .wpgs-for .slick-arrow {
  display: none !important;
}

.p-cart.p-checkout {
  padding: 40px 0;
}
.p-cart.p-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100%;
  padding: 0;
  margin: 0;
}
.p-cart.p-checkout .wc-block-components-sidebar {
  margin: initial;
  margin-left: auto;
}
.p-cart.p-checkout table.wc-block-cart-items {
  border-bottom: 1px solid hsla(0, 0%, 7%, 0.11);
  border-spacing: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}
.p-cart.p-checkout table.wc-block-cart-items th {
  font-weight: 900;
  font-size: 15px;
  padding: 9px 12px;
  line-height: 1.5em;
  visibility: visible !important;
}
.p-cart.p-checkout table.wc-block-cart-items th:last-child {
  padding-right: 12px;
  text-align: center;
}
.p-cart.p-checkout table.wc-block-cart-items thead {
  background: #ebebeb !important;
}
.p-cart.p-checkout table.wc-block-cart-items td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-components-product-name {
  color: var(--Brand-Blue, #14cdec);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__prices .price.wc-block-components-product-price {
  overflow: hidden;
  color: var(--Text-dark, #070d1d);
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__prices .price.wc-block-components-product-price del.wc-block-components-product-price__regular {
  font-size: 16px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-components-product-badge {
  margin: 0 0 10px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-components-product-metadata {
  margin: 0 0 10px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-components-quantity-selector {
  margin: 0 0 10px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__remove-link {
  color: var(--Brand-Blue, #14cdec);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__total-price-and-sale-badge-wrapper .price.wc-block-components-product-price {
  margin: 0 0 10px;
  color: var(--Text-dark, #070d1d);
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart__submit-container .components-button {
  width: 100%;
  line-height: unset;
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Black, #001019);
}
.p-cart.p-checkout .wp-block-woocommerce-cart-order-summary-block,
.p-cart.p-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}
.p-cart.p-checkout .wp-block-woocommerce-cart-order-summary-block .wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title,
.p-cart.p-checkout .wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
  text-align: left;
  font-size: 16px;
  margin: 0;
  padding: 15px;
}

.wc-block-components-button:not(.is-link) {
  align-items: center;
  display: inline-flex;
  height: auto;
  justify-content: center;
  position: relative;
  text-align: center;
  transition: box-shadow 0.1s linear;
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Black, #001019);
  border: none;
}

.logged-in.woocommerce-account fieldset {
  border: none;
  padding: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}
.logged-in.woocommerce-account legend {
  font-weight: bold;
  border-radius: 2px;
  padding: 10px 0px;
}
.logged-in.woocommerce-account .addresses .title .edit {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .addresses .title .edit:hover {
  color: var(--Brand-Blue, #24468d);
}
.logged-in.woocommerce-account a.button {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 26px;
  border-radius: 3px;
  background: var(--Black, #001019);
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account a.button:focus, .logged-in.woocommerce-account a.button:active:focus {
  outline: 0;
  box-shadow: none;
  background: var(--Black, #001019);
  color: var(--White, #fff);
}
.logged-in.woocommerce-account a.button:hover {
  background: var(--Black, #001019);
  color: var(--White, #fff);
}
.logged-in.woocommerce-account .woocommerce-MyAccount-downloads-file.button.alt {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 26px;
  border-radius: 3px;
  background: var(--Black, #001019);
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-downloads-file.button.alt:focus, .logged-in.woocommerce-account .woocommerce-MyAccount-downloads-file.button.alt:active:focus {
  outline: 0;
  box-shadow: none;
  background: var(--Black, #001019);
  color: var(--White, #fff);
}
.logged-in.woocommerce-account .woocommerce-MyAccount-downloads-file.button.alt:hover {
  background: var(--Black, #001019);
  color: var(--White, #fff);
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
  margin-top: 0.9375rem;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
  list-style: none;
  padding: 0;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link:last-child {
  border-bottom: none;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link.is-active a {
  color: #fff;
  background: #000;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 10px 15px;
  background-color: var(--Brand-Blue, #14cdec);
  text-decoration: none;
  color: var(--text-Gray);
  font-weight: bold;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover {
  color: #fff;
  background: #000;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  flex-grow: 1;
  border-radius: 3px;
  padding: 30px;
  background: #ededed;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content p {
  margin-bottom: 15px;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content p a {
  text-decoration: none;
  color: #000000;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content p a:hover {
  color: var(--Brand-Blue, #24468d);
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  font-size: 2.7rem;
}
.logged-in.woocommerce-account .woocommerce-MyAccount-content > p:nth-child(2) {
  font-size: 1.2rem;
  margin-bottom: 50px;
}
.logged-in.woocommerce-account .woocommerce-Button[type=submit] {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Black, #001019);
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce-Button[type=submit]:focus, .logged-in.woocommerce-account .woocommerce-Button[type=submit]:active:focus {
  outline: 0;
  box-shadow: none;
  color: var(--White, #fff);
  background: var(--Black, #001019);
}
.logged-in.woocommerce-account .woocommerce-Button[type=submit]:hover {
  color: var(--White, #fff);
  background: var(--Black, #001019);
}
.logged-in.woocommerce-account form {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.logged-in.woocommerce-account .col2-set,
.logged-in.woocommerce-account .woocommerce-page .col2-set {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
}
.logged-in.woocommerce-account .addresses .title h3 {
  font-size: 20px;
}
.logged-in.woocommerce-account input:not([type=submit]) {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal;
  height: auto;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #c1c1c1;
  margin: 0 0 9px;
}
.logged-in.woocommerce-account .woocommerce table.shop_table tbody tr a.button + a.button {
  margin-top: 0.625rem;
}
.logged-in.woocommerce-account .woocommerce-order-details .order-again a.button {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 26px;
  border-radius: 3px;
  background: var(--Black, #001019);
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce-address-fields p .button {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 26px;
  border-radius: 3px;
  background: var(--Black, #001019);
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce-input-wrapper .checkbox .input-checkbox {
  display: inline-block;
  width: auto;
}

.p-cart.p-checkout .login input:not([type=submit]) {
  padding: 10px;
}
.p-cart.p-checkout .login .woocommerce-form-login__submit {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Black, #001019);
}

.store-details-sec3 .product {
  margin: 0 0 20px;
}
.store-details-sec3 .product a.woocommerce-LoopProduct-link + a {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
.store-details-sec3 .product a.woocommerce-LoopProduct-link + a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.store-details-sec3 .product a:hover a img {
  opacity: 1.1;
}

.p-cart.p-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 65%;
}

.p-cart.p-checkout table.wc-block-cart-items th.wc-block-cart-item__image,
.p-cart.p-checkout table.wc-block-cart-items td.wc-block-cart-item__image {
  width: 30%;
}

.p-cart.p-checkout table.wc-block-cart-items th.wc-block-cart-items__header-product,
.p-cart.p-checkout table.wc-block-cart-items td.wc-block-cart-items__header-product {
  width: 50%;
}

.wc-block-cart-item__total {
  text-align: center !important;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
  align-items: center !important;
}

.p-cart.p-checkout table.wc-block-cart-items td .wc-block-components-product-name,
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__remove-link {
  font-family: unset;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__prices .price.wc-block-components-product-price,
.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__total-price-and-sale-badge-wrapper .price.wc-block-components-product-price {
  font-family: unset;
}

.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__prices .price.wc-block-components-product-price del.wc-block-components-product-price__regular {
  font-size: 12px;
  font-weight: 700;
}

.p-cart.p-checkout table.wc-block-cart-items td .wc-block-cart-item__prices .price.wc-block-components-product-price {
  font-family: unset;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

section.related .related_text {
  margin-top: 80px;
}

.p-cart.p-checkout a {
  color: #000;
}
.p-cart.p-checkout .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  content: "";
  height: 3em;
  margin: 0 auto 1em;
  -webkit-mask-size: 3em;
          mask-size: 3em;
  width: 3em;
}
.p-cart.p-checkout h2.wp-block-heading.has-text-align-center {
  color: var(--Black, #001019);
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
}
.p-cart.p-checkout ul.wc-block-grid__products li a {
  color: var(--Black, #001019);
  display: block;
}
.p-cart.p-checkout ul.wc-block-grid__products li a:hover .wc-block-grid__product-image img {
  transform: scale(1.1);
}
.p-cart.p-checkout ul.wc-block-grid__products li a .wc-block-grid__product-onsale {
  display: none;
}
.p-cart.p-checkout ul.wc-block-grid__products li a .wc-block-grid__product-image {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.p-cart.p-checkout ul.wc-block-grid__products li a .wc-block-grid__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.p-cart.p-checkout ul.wc-block-grid__products li a .wc-block-grid__product-title {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
  text-align: left;
}
.p-cart.p-checkout ul.wc-block-grid__products li .wc-block-grid__product-price.price {
  text-align: left;
}
.p-cart.p-checkout ul.wc-block-grid__products li .wc-block-grid__product-price.price del {
  display: none;
}
.p-cart.p-checkout ul.wc-block-grid__products li .wc-block-grid__product-price.price ins {
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  text-decoration: none;
}
.p-cart.p-checkout ul.wc-block-grid__products li .wp-block-button.wc-block-grid__product-add-to-cart {
  display: none;
}

header .header-bottom ul.icon li:first-child {
  position: static !important;
}

.search-bar {
  max-width: 50%;
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
  display: none;
  position: absolute;
  height: 64px;
  top: 90px;
  right: 10px;
  z-index: 99;
  border-radius: 3px;
  box-shadow: 0px 4px 8px 5px rgba(20, 205, 236, 0.2588235294);
}
.search-bar .d_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}
.search-bar .aws-container {
  width: 100%;
  position: relative;
}
.search-bar .aws-container form {
  margin: 0;
}
.search-bar .aws-container form input:not([type=submit]) {
  width: 100%;
  padding: 10px;
  padding-left: 20px;
  border-radius: 3px !important;
  border: 1px solid #d5d5d5;
  font-size: 14px;
  background: #fff;
  color: #000;
  outline: none;
}
.search-bar .aws-container form input:not([type=submit])::-moz-placeholder {
  font-size: 14px;
}
.search-bar .aws-container form input:not([type=submit])::placeholder {
  font-size: 14px;
}
.search-bar .aws-container form .aws-form-btn {
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100px;
  border-radius: 3px;
  border: none;
  background: var(--Black, #001019);
  justify-content: center;
  align-items: center;
  border-radius: 3px !important;
  margin-left: 20px;
}
.search-bar .aws-container form .aws-form-btn:hover {
  background: var(--Black, #001019);
}
.search-bar a.cancel {
  display: none;
}
.search-bar a.cancel i {
  font-size: 22px;
  color: #14cdec;
}

.search-results section.home-sec2 .entry-header h2 {
  color: var(--Black, #001019);
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
.search-results section.home-sec2 .entry-header h2 a {
  color: var(--Black, #001019);
}
.search-results section.home-sec2 .pagination {
  display: flex;
  justify-content: center;
}
.search-results section.home-sec2 .pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.search-results section.home-sec2 .pagination .nav-links span {
  color: #14cdec;
}
.search-results section.home-sec2 .pagination .nav-links a {
  color: #001019;
}
.search-results section.home-sec2 .pagination .nav-links a span {
  color: #001019;
}

section.home-sec6 figure a {
  display: block;
  height: 100%;
}

.woocommerce section.store-details-sec1 div.product div.images img {
  display: block;
  width: 100% !important;
  height: auto !important;
  box-shadow: none;
  max-width: 100% !important;
}

section.login .login-form .input-group button {
  top: unset !important;
  bottom: 14px !important;
}

.page-id-422 section.login .login-form .input-group label {
  margin-top: 0;
  margin-bottom: 10px;
}

section.store-details-sec1 ul.option li:last-child {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}

.heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  display: inline-block !important;
}
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  display: inline-block !important;
}
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_facebook {
  display: none !important;
}
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_more span {
  background: transparent !important;
  width: 20px !important;
  height: 20px !important;
  background-image: url(../images/share.png) !important;
}
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a.heateor_sss_more span svg {
  display: none !important;
}

section.store-details-sec1 #wc-square-digital-wallet {
  padding: 0 !important;
  max-width: 100%;
  display: none !important;
}

#preloaderBg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloaderBg .prelogo {
  width: 200px;
  opacity: 1;
}
#preloaderBg .prelogo img {
  width: 100%;
}

section.store-details-sec1 form.cart .single_add_to_cart_button {
  margin: 0;
}

.postid-477 section.store-details-sec1 form.cart .single_add_to_cart_button,
.postid-494 section.store-details-sec1 form.cart .single_add_to_cart_button {
  margin: 0;
}

section.about-sec1.alpha-brain {
  background: #f6f6f6;
  margin: 0 0 80px;
}
section.about-sec1.alpha-brain ol.hyp-point {
  padding-left: 28px;
  margin: 0;
}
section.about-sec1.alpha-brain ol.hyp-point li {
  margin: 0 0 15px;
  line-height: 31px;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

section.inner-banner h5 {
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid #000;
  display: inline-block;
}

section.about-sec1.alpha-brain h2 {
  text-align: center;
}

section.deep_look .main-btn {
  margin-top: 0;
}

.deep_look .img_div img.img-1 {
  width: calc(70% - 15px);
}

.deep_look .img_div img.img-2 {
  width: calc(30% - 15px);
}

.key.book-app {
  position: relative;
}
.key.book-app img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.key.book-app .txt {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1.25rem;
}
.key.book-app .txt h2 {
  margin-bottom: 3rem;
}

section.deep_look ul {
  margin: 0 0 1.875rem;
}
section.deep_look ul li {
  position: relative;
  padding-left: 15px;
}
section.deep_look ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
section.deep_look ul li + li {
  margin-top: 0.625rem;
}

section.about-sec1.exp-resources {
  background: #f6f6f6;
  margin: 0 0 3.75rem;
}
section.about-sec1.exp-resources h2 {
  text-align: center;
}
section.about-sec1.exp-resources p a {
  word-break: break-all;
}

section.exp_image {
  background: #f7f7f7;
  padding: 60px 0;
}
section.exp_image .row [class*=col] img {
  width: 100%;
}

section.health_benefit.health-buteyko .txt_div {
  height: 100%;
}

section.about-sec1.exp-resources p {
  margin-bottom: 0.9375rem;
}

section.know_more .img_div {
  height: 100%;
}
section.know_more .img_div img {
  height: 100%;
  max-height: 100%;
}
section.know_more .img_div img.img-1 {
  max-height: 100%;
}

section.bottom-image {
  padding: 0 0 3.75rem;
  text-align: center;
}
section.bottom-image img {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

section.inner-banner a.main-btn {
  background-color: #14cdec;
}

section.home-banner a.main-btn {
  background-color: #14cdec;
}

section.health-buteyko .img_div img {
  -o-object-fit: contain;
     object-fit: contain;
}

.coming-soon {
  position: relative;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6196078431);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon .container h1 {
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-size: 90px;
  color: #fff;
}
.coming-soon .container .scl_links {
  margin-top: 20px;
}
.coming-soon .container .scl_links .s_media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
}
.coming-soon .container .scl_links .s_media::before {
  position: absolute;
  content: "";
  width: 81px;
  height: 1px;
  background-color: #fff;
  left: 35%;
  top: 22px;
}
.coming-soon .container .scl_links .s_media::after {
  position: absolute;
  content: "";
  width: 81px;
  height: 1px;
  background-color: #fff;
  right: 35%;
  top: 22px;
}
.coming-soon .container .scl_links .s_media li {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.coming-soon .container .scl_links .s_media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.coming-soon .container .scl_links .s_media li a:hover {
  background-color: #fff;
}
.coming-soon .container .scl_links .s_media li a:hover i {
  color: #000;
}
.coming-soon .container .scl_links .s_media li a i {
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  color: #fff;
}
.coming-soon .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -2;
  opacity: 0.5;
}

.videobg {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 0;
}

.normalimg-video {
  position: relative;
  z-index: 1;
  max-width: 365px;
}

.our-videos {
  padding: 80px 0;
}
.our-videos .our-video-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our-videos .our-video-row .w530 {
  width: 530px;
}
.our-videos .our-video-row .w418 {
  width: 418px;
}
.our-videos .our-video-row .right .inputsearch {
  max-width: 418px;
  width: 100%;
}
.our-videos .our-video-row .right .inputsearch::-moz-placeholder {
  color: rgba(0, 16, 25, 0.2);
}
.our-videos .our-video-row .right .inputsearch::placeholder {
  color: rgba(0, 16, 25, 0.2);
}
.our-videos .our-video-row .right .inputsearch input[type=text] {
  width: 100%;
  padding: 16px;
  align-items: center;
  border-radius: 7px;
  color: var(--Black, #001019);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #f6f6f6 url(../images/search-icon.svg) no-repeat 10px center;
  border: none;
  padding-left: 34px;
  outline: none;
}
.our-videos .our-video-row .right .inputsearch input[type=text]:focus-visible {
  border: none;
}
.our-videos .tabcontainer {
  margin-top: 60px;
}
.our-videos .tabcontainer .gap30 {
  gap: 30px 0;
}
.our-videos .tabcontainer .results {
  margin-bottom: 30px;
}
.our-videos .tabcontainer .results span {
  color: #14cdec;
  font-weight: 600;
}
.our-videos .tabcontainer .tablist ul,
.our-videos .tabcontainer .tablist-audio ul {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}
.our-videos .tabcontainer .tablist ul li a,
.our-videos .tabcontainer .tablist-audio ul li a {
  display: flex;
  padding: 6px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 41px;
  border: 1px solid var(--Brand-Blue, #14cdec);
  background: #f4fdff;
  color: #14cdec;
}
.our-videos .tabcontainer .tablist ul li a.active,
.our-videos .tabcontainer .tablist-audio ul li a.active {
  background-color: #14cdec;
  color: #fff;
}
.our-videos .videocontainer {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.our-videos .videocontainer .videoimg {
  position: relative;
}
.our-videos .videocontainer .videoimg .alert_text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5254901961);
  justify-content: center;
}
.our-videos .videocontainer .videoimg .alert_text p {
  color: #e2e2e2;
  width: 70%;
  text-align: center;
  font-size: 16px;
  margin: 0;
}
.our-videos .videocontainer .videoimg .alert_text p a {
  color: #14cdec;
}
.our-videos .videocontainer .videoimg img {
  width: 100%;
}
.our-videos .videocontainer .videoimg .playbtn,
.our-videos .videocontainer .videoimg .playbtn-audio {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-videos .videocontainer .videoimg .playbtn img,
.our-videos .videocontainer .videoimg .playbtn-audio img {
  width: 30px;
  height: 30px;
}
.our-videos .videocontainer .videotext {
  margin-top: 24px;
}
.our-videos .videocontainer .videotext h6 {
  color: var(--Text-Grey, #696969);
  leading-trim: both;
  text-edge: cap;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}
.our-videos .videocontainer .videotext h3 {
  color: var(--Black, #001019);
  leading-trim: both;
  text-edge: cap;
  font-family: "Instrument Serif";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}
.our-videos .videocontainer .videotext h3 a {
  color: var(--Black, #001019);
}
.our-videos .videocontainer .videotext h3 a:hover {
  color: #14cdec;
}
.our-videos .videocontainer .videotext p {
  color: var(--Text-Grey, #696969);
  leading-trim: both;
  text-edge: cap;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 157.143% */
  margin-bottom: 0;
}
.our-videos .videocontainer .videotext .firstrow {
  display: flex;
  align-self: flex-start;
  justify-content: space-between;
}
.our-videos .videocontainer .videotext .firstrow .right span {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Brand-Blue, #14cdec);
  color: var(--White, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.pagination a {
  display: flex;
  width: 40px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--Text-Grey, #696969);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}
.pagination a.active {
  border-radius: 100px;
  background: var(--Brand-Blue, #14cdec);
  color: white;
}

section.inner-banner.member-inner .img-box {
  position: relative;
}
section.inner-banner.member-inner .img-box img.one {
  width: 280.171px;
  height: 361.739px;
  display: block !important;
}
section.inner-banner.member-inner .img-box img.two {
  width: 307px;
  height: 376px;
}

section.membership-sec1 {
  padding-top: 80px;
}
section.membership-sec1 .membership-cart {
  border-radius: 15px;
  border: 1px solid #d0d5dd;
  background: #fff;
  padding: 40px 24px;
  width: 100%;
  height: 100%;
}
section.membership-sec1 .membership-cart h5 {
  color: #191d23;
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}
section.membership-sec1 .membership-cart p {
  color: #64748b;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  min-height: 42px;
}
section.membership-sec1 .membership-cart h3 {
  color: #191d23;
  font-family: "Plus Jakarta Sans";
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
section.membership-sec1 .membership-cart a.purchase-btn {
  display: block;
  text-align: center;
  color: var(--White, #fff);
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 30px;
  border-radius: 3px;
  background: var(--Brand-Blue, #14cdec);
}
section.membership-sec1 .membership-cart ul {
  margin-top: 40px;
}
section.membership-sec1 .membership-cart ul li {
  min-height: 32px;
  padding-left: 50px;
  color: #191d23;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
  background-image: url(http://higiawellness.com/wp-content/uploads/2024/12/blue-tick.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 32px;
  display: flex;
  align-items: center;
}
section.membership-sec1 .membership-cart ul li:last-child {
  margin: 0;
}
section.membership-sec1 .membership-cart .flex-box {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
section.membership-sec1 .membership-cart .flex-box .wraper-box {
  position: relative;
  padding: 0px 20px;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
section.membership-sec1 .membership-cart .flex-box .wraper-box input[type=radio] {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
section.membership-sec1 .membership-cart .flex-box .wraper-box input[type=radio]:checked + h4::after {
  background-color: #fff;
  outline: 2px solid #fff;
  border: 3px solid #14cdec;
  height: 20px;
  width: 20px;
}
section.membership-sec1 .membership-cart .flex-box .wraper-box h4 {
  color: #f7f8f9;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-right: 30px;
}
section.membership-sec1 .membership-cart .flex-box .wraper-box h4 span {
  font-size: 56px;
}
section.membership-sec1 .blue-cart {
  border: 1px solid #14cdec;
  background: #14cdec;
  margin-bottom: 30px;
  height: auto;
}
section.membership-sec1 .blue-cart a.purchase-btn {
  background-color: #fff;
  color: #14cdec;
}
section.membership-sec1 .blue-cart h5,
section.membership-sec1 .blue-cart p {
  color: #fff;
}
section.membership-sec1 .blue-cart ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
section.membership-sec1 .blue-cart ul li {
  color: #fff;
  background-image: url(http://higiawellness.com/wp-content/uploads/2024/12/white-tick.svg);
  width: 48%;
  margin-bottom: 0;
}
section.membership-sec1 .blue-cart h3 {
  color: #fff;
}
section.membership-sec1 .blue-cart p:empty {
  display: none;
}

@media screen and (max-width: 1300px) {
  .our-videos .tabcontainer .tablist ul {
    flex-wrap: wrap;
  }
  .videobg {
    position: absolute;
    top: -10px;
    left: 15%;
    z-index: 0;
    width: 215px;
  }
  .normalimg-video {
    position: relative;
    z-index: 1;
    max-width: 295px;
  }
  .normalimg-video {
    position: relative;
    z-index: 1;
    max-width: 278px;
  }
  section.inner-banner .img-box.videopageimgbx {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 328px;
    margin: 0 auto;
  }
  .our-videos {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1200px) {
  .videobg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 215px;
  }
}
@media screen and (max-width: 991px) {
  .our-videos .our-video-row .w530 {
    width: 50%;
  }
  .our-videos .our-video-row .w418 {
    width: 40%;
  }
  .our-videos {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .our-videos {
    padding: 30px 0;
  }
  .our-videos .tabcontainer {
    margin-top: 30px;
  }
  .our-videos .tabcontainer .tablist ul li a {
    font-size: 14px;
  }
  .our-videos .our-video-row {
    flex-direction: column;
  }
  .our-videos .our-video-row .w530,
  .our-videos .our-video-row .w418 {
    width: 100%;
  }
  .our-videos .our-video-row .w530 {
    text-align: center !important;
  }
}
.revw_bnnr {
  background: #f4fdff;
  padding: 78px 0;
}
.revw_bnnr .row {
  align-items: center;
}
.revw_bnnr h2 {
  margin-bottom: 24px;
  font-family: "Playfair Display";
}
.revw_bnnr p {
  margin: 0;
}
.revw_bnnr .revws {
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.revw_bnnr .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.revw_bnnr .inputs .input {
  width: 48%;
}
.revw_bnnr .revws img {
  width: 24px;
  height: 24px;
}
.revw_bnnr .revws .star-rating {
  font-size: 29px;
  color: #ccc;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.revw_bnnr .revws .star-rating .star.hover,
.revw_bnnr .revws .star-rating .star.selected {
  color: #ffc107;
  transition: color 0.2s;
}
.revw_bnnr input:not([type=submit]),
.revw_bnnr textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ececec;
  background: #fff;
  padding: 11px 16px;
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.revw_bnnr input:not([type=submit])::-moz-placeholder, .revw_bnnr textarea::-moz-placeholder {
  color: var(--Text-Grey, #696969);
}
.revw_bnnr input:not([type=submit])::placeholder,
.revw_bnnr textarea::placeholder {
  color: var(--Text-Grey, #696969);
}
.revw_bnnr input:not([type=submit]):focus,
.revw_bnnr textarea:focus {
  outline: none;
}
.revw_bnnr textarea {
  resize: none;
  min-height: 114px;
}
.revw_bnnr input[type=submit] {
  border-radius: 3px;
  background: var(--Brand-Blue, #14cdec);
  padding: 12px 17px;
  color: var(--White, #fff);
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border: none;
}

.clntrevw_sec {
  padding: 80px 0;
}
.clntrevw_sec h2 {
  margin-bottom: 40px;
  font-family: "Playfair Display";
  text-align: center;
}
.clntrevw_sec .row {
  row-gap: 20px;
}
.clntrevw_sec .revw_card {
  background: #f4fdff;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}
.clntrevw_sec .revw_card .qute {
  position: absolute;
  top: -18px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.clntrevw_sec .revw_card .qute img {
  width: 24px;
}
.clntrevw_sec .revw_card p {
  margin-bottom: 68px;
  color: var(--Text-Grey, #696969);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.clntrevw_sec .revw_card .dtls h5 {
  margin-bottom: 9px;
  color: #000;
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.clntrevw_sec .revw_card .dtls .stars {
  display: flex;
  align-items: center;
}
.clntrevw_sec .revw_card .dtls .stars img {
  width: 20px;
  height: 20px;
}

.audio-modal {
  background-color: rgba(0, 0, 0, 0.3254901961);
}
.audio-modal .modal-dialog {
  height: 100%;
  max-width: -moz-min-content;
  max-width: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-modal .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 35px 25px;
}
.audio-modal .modal-dialog .modal-content .modal-body img.bg-img {
  width: 320px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.audio-modal .modal-dialog .modal-content .modal-body .btn-close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 99;
}
.woocommerce-cart .p-cart {
  padding: 60px 0;
  position: relative;
}
.woocommerce-cart .p-cart .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.woocommerce-cart .p-cart .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}
.woocommerce-cart .p-cart .woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}
.woocommerce-cart .p-cart .woocommerce .woocommerce-cart-form {
  width: 55%;
}
.woocommerce-cart .p-cart .woocommerce .woocommerce-cart-form .coupon input[type=text] {
  width: 159px;
}
.woocommerce-cart .p-cart .woocommerce .woocommerce-cart-form .actions button[type=submit] {
  background: #000;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  opacity: 1;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals {
  width: 42%;
  position: sticky;
  top: 0;
  float: unset;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals::before, .woocommerce-cart .p-cart .woocommerce .cart-collaterals::after {
  display: none;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  float: unset;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals .cart_totals table th,
.woocommerce-cart .p-cart .woocommerce .cart-collaterals .cart_totals table td {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout::before, .woocommerce-cart .p-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout::after {
  display: none;
}
.woocommerce-cart .p-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button {
  background: #000;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 0;
}

.inner-banner.single_page {
  text-align: left;
  padding: 100px 0;
}
.inner-banner.single_page img {
  width: 100%;
}
.inner-banner.single_page p {
  margin-bottom: 0;
}

.vdio_audiopart {
  padding: 80px 0;
  text-align: center;
}
.vdio_audiopart h2 {
  margin-bottom: 10px;
}
.vdio_audiopart:last-child {
  margin-bottom: 0;
}
.vdio_audiopart .video_prt {
  margin-bottom: 40px;
}
.vdio_audiopart .video_prt:last-child {
  margin-bottom: 0;
}
.vdio_audiopart .video {
  width: 100%;
  margin: 40px 0;
}
.vdio_audiopart .video h4 {
  text-align: left;
  font-weight: 300;
  font-size: 16px;
  margin: 8px 0 0;
}
.vdio_audiopart .video iframe {
  width: 100%;
  height: 600px;
}
.vdio_audiopart .audio {
  margin: 40px 0;
}/*# sourceMappingURL=style.css.map */