.uk-container {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.uk-section {
    padding: 0 0 !important;
}
ul{
	padding: 0px !important;
	margin: 0px !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body ,p {
  font-family: "Paralucent";
}

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

img {
  width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: "Paralucent" !important;
}

:root {
  --c1: #000;
  --c2: #fff;
  --c3: #74BDA0;
  --c4: #135BFB;
  --c5: #CCAEDB;
  --c6: #1D1D1D;
}

::selection {
  background: var(--c5);
}


.spacing {
  padding: 100px 0px;
}


/* Responsive Menu */

.responsive-btn a {
  padding: 10px 26px;
  display: block !important;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 30px 20px;
  position: relative;
}
.responsive-logo {
  width: 100%;
  margin-bottom: 30px;
}
.responsive-links ul li a {
  color: var(--c2);
  padding: 10px 0px;
  display: block !important;
  font-weight: 500;
}
.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c3);
  padding: 6px 0px;
}
.responsive-icon a i {
  display: block;
}
.responsive-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}
.responsive-icon a {
  color: var(--c2);
  font-size: 30px;
}
.responsive-links ul li:last-child {
  border: 0;
}
body.scroll-stop {
  overflow: hidden;
}
.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.resp-social ul li a i {
  display: block;
}
.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 18px;
}
.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}
.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
  content: "\f068";
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-header .container {
  position: relative;
}

.inner-header .inner-header-title h2 {
  color: var(--c2);
  font-size: 50px;
  font-weight: 700;
}

/* Header */

.header {
  background-color: var(--c6);
  padding: 20px 0px;
}

.header-logo {
  width: 40%;
}

.header-nav nav ul li a {
  font-size: 18px;
  color: var(--c2);
  font-weight: 400;
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 3px;
}

.header-nav nav ul {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.header-nav nav ul li a::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  background: var(--c2);
  height: 1px;
  width: 0%;
  transition: all .5s;
  border-radius: 100px;
}

.header-nav nav ul li a:hover::before {
  width: 100%;
}

.web-btn a,
.web-btn button {
  font-size: 18px;
  color: var(--c2);
  padding: 10px 30px;
  border-radius: 10px;
  transition: all .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 500;
  border: 0;
}

.green-btn a,
.green-btn button {
  background: var(--c3);
}

.green-btn a::before,
.green-btn button::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--c5);
  border-radius: 10px;
  z-index: -1;
  transition: all .5s;
}

.green-btn a:hover::before,
.green-btn button:hover::before {
  width: 100%;
}

.h-items > a {
    color: var(--c2);
    font-size: 18px;
    transition: all .5s;
}

.h-items > a:hover {
    color: var(--c3);
}

.h-items {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}

.header-nav nav ul li a i {
  font-size: 12px;
}

/* banner */

.banner {
  position: relative;
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.banner-bg::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #0000007d;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.banner-bg {
  position: relative;
  z-index: 1;
}

.banner-bg img {
  aspect-ratio: 2;
  object-fit: cover;
}

.banner-content-wrapper h2 {
  font-weight: 400;
  font-size: 70px;
  text-align: center;
  color: var(--c2);
  margin: 0;
  padding: 0;
}

.banner-content-wrapper {
  text-align: center;
}

.banner-content-wrapper span {
  color: var(--c2);
  font-size: 20px;
  font-weight: 400;
  margin: 30px 0px;
  display: inline-block;
}

.banner-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.inverse-btn a {
  border: 1px solid var(--c3);
  color: var(--c3);
  transition: all .5s;
}

.inverse-btn a:hover {
  background: var(--c3);
  color: var(--c2);
}

.banner-content-wrapper h2 span {
  color: var(--c3);
  display: inline-block;
  font-weight: 400;
  font-size: 70px;
  margin: 0;
}

/* about */

.pink-btn a,
.pink-btn button {
  background: var(--c5);
  border: 0;
}

.pink-btn a:hover::before,
.pink-btn button:hover::before {
  width: 100%;
}

.pink-btn a::before,
.pink-btn button::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--c3);
  z-index: -1;
  transition: all .5s;
}

.web-title h2 {
  color: var(--c6);
  font-size: 55px;
  font-weight: 400;
}

.web-title h2>span {
  color: var(--c5);
}

.professions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 30px 0px;
}

.professions span {
  font-size: 25px;
  font-weight: 400;
}

.professions span:first-of-type {
  color: var(--c4);
}

.professions span:nth-of-type(2) {
  color: var(--c3);
  position: relative;
  margin: 0px 20px;
}

.professions span:last-of-type {
  color: var(--c5);
}

.professions span:nth-of-type(2)::before {
  width: 10px;
  height: 3px;
  top: 50%;
  position: absolute;
  content: '';
  background: var(--c6);
  left: -19px;
}

.professions span:nth-of-type(2)::after {
  width: 10px;
  height: 3px;
  top: 50%;
  position: absolute;
  content: '';
  background: var(--c6);
  right: -19px;
}

.about-us-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--c6);
  margin-bottom: 20px;
}

.about-us-content p a {
  color: var(--c5);
}

.about-us-content p a:hover {
  text-decoration: underline !important;
}

.about-us-images>img {
  width: 100%;
  border-radius: 20px;
}

.about-img {
  border: 15px solid var(--c2);
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 30px;
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 100%;
}

.about-img img {
  aspect-ratio: 1.5;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
}

.about-us-images {
  position: relative;
}

/* news */

.news .container.overlay {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px;
  z-index: 1;
  padding: 100px 100px;
}

.news .banner-content-wrapper h2 {
  font-size: 50px;
}

.news .banner-content-wrapper h2>span {
  font-size: 50px;
}

.news .banner-content-wrapper span {
  font-size: 17px;
}

.news .container.overlay::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000d1;
  border-radius: 20px;
  z-index: -1;
}

.news-img {
  width: 100%;
  border-radius: 20px;
}

.news-blog {
  background: var(--c2);
  border-radius: 20px;
  padding: 20px 20px;
}

.news-img img {
  object-fit: cover;
  border-radius: 20px;
  height: 260px;
}

.news-blogs {
  width: 100%;
  z-index: 999;
  margin-top: -70px;
  position: relative;
}

.news {
  position: relative;
}

.news-blog h3 {
  font-size: 23px;
  margin: 30px 0px;
  color: var(--c6);
  font-weight: 400;
}

.news-blog h3 span {
  color: var(--c3);
}

.news-blog p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}


/* news-letter */

.news-letter {
  margin: 100px 0px 100px !important;
  padding: 50px 0px;
  background-color: #ccaedb60;
  position: relative;
}

.news-letter-img {
  position: absolute;
  width: 30%;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.newsletter-form {
  margin-top: 50px;
}

.input-field {
  width: 100%;
}

.input-field input {
  width: 100%;
  padding: 15px 20px;
  border: 0;
  border-radius: 10px;
  color: #777;
}

.input-field input:focus {
  border: 0;
  outline: 0;
}

.purple-title.web-title ul {
  margin-top: 50px;
  gap: 20px;
}

.purple-title.web-title ul li button {
  border: 2px solid var(--c5);
  border-radius: 10px;
  padding: 10px 40px;
  transition: all .5s;
  color: var(--c6);
}

ul#myTab {
  border-bottom: 0;
}

.purple-title.web-title ul li button.active {
  background: var(--c5);
  color: var(--c2);
  border-color: var(--c5);
}

/* footer */

.footer {
  background-color: var(--c6);
  padding: 50px 0px;
}

.footer-logo {
  width: 10%;
  margin: 0 auto 50px;
}

.footer-content p {
  font-size: 20px;
  font-weight: 200;
  color: var(--c2);
  text-align: center;
}

.contact-details {
  margin: 50px 0px;
  padding: 50px 0px;
  border-top: 1px solid var(--c2);
  border-bottom: 1px solid var(--c2);
}

.contact-info h2 {
  color: var(--c2);
  margin-bottom: 50px;
}

.contact-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-items i {
  color: var(--c3);
  font-size: 16px;
}

.contact-items a,
.contact-items p {
  color: var(--c2);
  font-size: 18px;
  transition: all .5s;
  margin: 0;
}

.contact-items a:hover {
  text-decoration: underline !important;
}

.contact-items-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons {
  text-align: end;
}

.social-icons ul {
  display: flex;
  justify-content: end;
  gap: 30px;
}

.social-icons ul li a {
  font-size: 30px;
  color: var(--c5);
  transition: all .5s;
}

.social-icons ul li a:hover {
  color: var(--c2);
}

.copyright p {
  font-size: 20px;
  font-weight: 400;
  color: var(--c2);
}

.footer-links ul li a {
  font-size: 18px;
  color: var(--c2);
  font-weight: 400;
  position: relative;
}

.footer-links ul {
  display: flex;
  gap: 50px;
  justify-content: end;
}

.footer-links ul li a::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  background: var(--c2);
  height: 1px;
  width: 0%;
  transition: all .5s;
  border-radius: 100px;
}

.footer-links ul li a:hover::before {
  width: 100%;
}

.about-us-content {
  padding-right: 30px;
}

.purple-title.web-title ul li button:hover {
  background: var(--c5);
  color: var(--c2);
}

.news-blogs .container .row .col-lg-4:nth-of-type(2) .news-blog h3 span {
  color: var(--c5);
}

/* about page */

.inner-banner {
  background-attachment: fixed;
  background-position: top;
  padding: 200px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.inner-banner::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c2;
  z-index: -1;
}

.inner-banner-title {
  text-align: center;
}

.inner-banner-title h2 {
  color: var(--c2);
  font-size: 45px;
}

/* about Anne and our Mission */

p {
  font-size: 20px;
  font-weight: 400;
  color: var(--c6);
  margin: 0;
}

.about-anne-content p {
  padding: 0;
  margin: 20px 0px;
}

.about-anne-content ul li span {
  color: var(--c3);
}

.about-anne-content ul li {
  color: var(--c6);
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0px 10px 20px;
  list-style: disc;
}

.about-anne-img {
  margin-right: 50px;
  position: relative;
  z-index: 1;
}

.about-anne-img img {
  border-radius: 30px;
  transition: all .5s;
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.about-anne-img img:hover {
  transform: scale(1.1);
}

.about-anne .container .row:nth-child(even) {
  margin-top: 50px;
  flex-direction: row-reverse;
}

.about-anne .container .row:nth-child(even) .col-lg-6 .about-anne-img {
  margin-left: 50px;
  margin-right: 0;
}

.about-anne-img::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: #ccaedb57;
  border-radius: 100%;
  z-index: -1;
  transition: all .5s;
  animation: scalePulse 3s infinite ease-in-out;
}

.about-anne-img::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #ccaedb57;
  border-radius: 100%;
  z-index: -1;
  transition: all .5s;
  animation: scalePulse 3s infinite ease-in-out;
}

.about-anne-img:hover::before {
  transform: scale(1.1);
}

.about-anne-img:hover::after {
  transform: scale(1.1);
}

.hover-img {
  border-radius: 30px;
  overflow: hidden;
}

@keyframes scalePulse {
  0% {
    transform: scale(0);
  }

  25% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  75% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.what-we-represent {
  margin: 100px 0px 0px;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.what-we-represent::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000b3;
  z-index: -1;
}

.what-we-do-title h2 {
  color: var(--c2);
}

.what-we-do-title p {
  color: var(--c2);
}

.what-we-do-title {
  margin-bottom: 80px;
}

.what-we-do-container {
  background-color: var(--c2);
  padding: 30px 20px;
  border-radius: 15px;
  position: relative;
}

.box-icon {
  width: 70px;
  height: 70px;
  background-color: var(--c5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 5px 5px 0px 0px #74bda06e;
  transition: all .5s;
}

.box-icon:hover {
  width: 75px;
  height: 75px;
}

.wrapper {
  overflow: hidden;
}

.what-we-do-container h4 {
  margin: 20px 0px 12px;
  color: var(--c6);
}

.what-we-do-container p {
  font-size: 18px;
}

.box-icon i {
  font-size: 30px;
}

.what-we-do-container::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-color: var(--c3);
  border-radius: 100%;
  transition: all .5s;
  z-index: -1;
}

.what-we-do-container:hover::before {
  left: 220px;
}

.img-icon img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  transition: all .5s;
  aspect-ratio: 2;
}

.press-container {
  border: 1px solid var(--c3);
  padding: 30px 20px;
  border-radius: 15px;
}

.press-title {
  text-align: center;
}

.press-container h4 {
  margin: 30px 0px 10px;
  font-size: 30px;
}

.press-container p {
  font-size: 18px;
}

.img-icon:hover img {
  transform: scale(1.1);
}

.img-icon {
  overflow: hidden;
  border-radius: 15px;
}

/* swiper */

.swiper {
  padding: 40px 0;
}

.press-container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.img-icon img {
  width: 90%;
  border-radius: 10px;
  margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-button-next:after {
  font-size: 18px;
}

.swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--c2);
  font-weight: 600;
  transition: all .5s;
  top: 50%;
  right: -50px;
  transform: translateY(50%);
}

.swiper-button-next:hover {
  background-color: var(--c1);
}

.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--c2);
  font-weight: 600;
  transition: all .5s;
  top: 50%;
  left: -50px;
  transform: translateY(50%);
}

.swiper-button-prev:hover {
  background-color: var(--c1);
}

.press-highlights .container {
  position: relative;
}

.book-inner-banner {
  background-position: bottom;
}

.inner-banner-title p {
  color: var(--c2);
  margin: 30px 0px;
}

.book-content p {
  margin: 20px 0px;
}

.book-img {
  margin-right: 100px;
}

.book-content ul li {
  font-size: 20px;
  list-style: none;
  margin: 20px 0px 0px 0px;
  color: var(--c6);
}

.book-content ul {
  margin-bottom: 50px !important;
}

.tab-nav ul {
  justify-content: center;
}

.variant-content {
  margin-top: 50px;
}

.variant-content p {
  margin: 30px 0px;
}

.variant-content ul {
  margin-bottom: 30px !important;
}

.variant-content ul li {
  font-size: 20px;
  color: var(--c6);
  padding: 5px 0px;
  list-style: disc;
  margin-left: 20px;
}

.exercise-content {
  margin-top: 0px;
}

.exercise-img {
  margin-right: 50px;
}

.tab-navy ul {
  justify-content: center;
}

.tab-navy ul {
  margin: 30px !important;
}

.purchase-blocks {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 4px 0px var(--c3);
  transition: all .5s;
  /* position: absolute; */
  width: 100%;
  /* height: 0%; */
  display: flex;
  /* bottom: 0; */
  /*visibility: hidden;*/
  background-color: var(--c2);
  flex-direction: column;
  justify-content: center;
  /* opacity: 0; */
  text-align: center;
}

.purchase-blocks h2 {
    margin: 0;
}


.purchase-blocks.events-blocks {
    position: absolute;
    width: 100%;
    height: 0%;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
}

.purchase-blocks h2 {
  font-size: 32px;
}

.purchase-blocks p {
  font-size: 18px;
  margin: 20px 0px;
}

.purchase-blocks:hover {
  box-shadow: 0px 0px 15px 0px var(--c3);
}

.purchase-title {
  margin-bottom: 50px;
}

.panel-title {
  margin-bottom: 50px;
}

.panel-btns {
  display: flex;
  justify-content: center;
}


.header-nav nav ul li {
  position: relative;
}

.header-nav nav ul li ul:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  top: -5px;
  left: 50px;
  opacity: 1;
  z-index: -1;
  background: var(--c2);
  border-radius: 2px;
  transform: rotate(45deg);
}

.header-nav nav ul li ul {
  position: absolute;
  color: var(--c1);
  background-color: var(--c2);
  flex-direction: column;
  top: 100%;
  gap: 0px;
  width: 225px;
  transition: all 0.5s;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 18px -10px #000000b3;
  z-index: 999;
}

.header-nav nav ul li ul li {
  border-bottom: 1px solid #f5f5f5;
}

.header-nav nav ul li:hover ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

.header-nav nav ul li ul li a {
  font-size: 15px;
  color: var(--c1);
  padding: 12px 10px;
  width: 100%;
  transition: all .5s;
}

.header-nav nav>ul>li {
  padding: 20px 0px;
}

.header-nav nav ul li ul li a:hover {
  background: var(--c3);
  color: var(--c2);
}

.sleep-tie .variant-content {
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0px 0px 5px 2px var(--c3);
  transition: all .5s;
}

/* section-contact-us */

.contact-item input,
.contact-item textarea,
.contact-item select,
.contact-item option {
  background: unset;
  outline: 0;
  border: 0;
  width: 100%;
  padding: 15px 0px;
  color: var(--c1);
  border-bottom: 2px solid var(--c1);
  transition: all 0.5s;
}

.contact-item input::placeholder,
.contact-item textarea::placeholder,
.contact-item select::placeholder,
.contact-item option::placeholder {
  color: var(--c1);
}

.contact-item-main .contact-item {
  margin-bottom: 20px;
}

.contact-item input:focus,
.contact-item textarea:focus,
.contact-item select:focus,
.contact-item option:focus {
  border-color: var(--c5);
}

.contact-item textarea {
  height: 150px;
}

.contact-us .web-title {
  margin-bottom: 60px;
}

.contact-us {
  padding: 70px 0px;
  position: relative;
}

.contact-img img {
  height: 550px;
  object-fit: cover;
}

.contact-img {
  border: 1px solid var(--c1);
  padding: 40px;
  margin-left: 20px;
  border-radius: 6px;
}

.social-media {
  background-color: var(--c1);
  padding: 50px 40px;
  display: flex;
  justify-content: center;
  /* border-radius: 12px;s */
}

.podcast-iframe iframe {
  width: 100%;
}

.podcast-iframe {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.blogs .container .row:nth-of-type(odd) {
  justify-content: end;
}

.blogs .container .row {
  margin: 50px 0px;
}

.org-logos img {
  object-fit: cover;
  aspect-ratio: 2;
  border-radius: 15px;
  transition: all .5s;
  filter: grayscale(1);
}

.org-logos img:hover {
    filter: grayscale(0);
}

.org-logos {
  box-shadow: 0px 0px 5px var(--c3);
  padding: 20px;
  border-radius: 15px;
  margin: 0px 10px;
}

.media-title h2,
.media-title p {
  color: var(--c2);
}

.outreach-map iframe {
  width: 100%;
  aspect-ratio: 2;
  border-radius: 12px;
}

/*SHOP PAGE CSS*/

.shop-product-main ul.products {
    display: flex;
    flex-wrap: wrap;
    column-gap: 19px;
    row-gap: 19px;
    margin-bottom: 0px !important;
}
.shop-product-main ul.products li.product {
    width: 32% !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
}
.single-product-data-main .qib-button-wrapper .quantity.wqpmb_quantity {
    height: 35px;
}
.shop-product-main ul.products:before,
.shop-product-main ul.products:after {
    display: none !important;
}
.shop-page-sidebar .price_slider_wrapper {
    margin-top: 15px;
}
.result-count-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
}
.shop-product {
    padding: 80px 0px;
}
.shop-page-sidebar h3 {
   	color: var(--c2);
   	font-size: 18px;
   	padding: 15px 0px;
   	font-weight: 600;
   	border-top: 1px solid #e1e1e1;
   	position: relative;
   	cursor: pointer;
}
.wp-block-woocommerce-price-filter input {
    outline: 0;
    font-weight: 300;
}
.result-count-main p.woocommerce-result-count, .result-count-main form.woocommerce-ordering select {
    font-size: 16px;
    font-weight: 400;
    color: var(--c1);
}
.shop-product-main ul.products li.product a.woocommerce-LoopProduct-link {
}
.result-count-main form.woocommerce-ordering select {
    border: 1px solid #e1e1e1;
    padding: 6px 10px;
    outline: 0;
}
.result-count-main p.woocommerce-result-count, .result-count-main form.woocommerce-ordering {
    margin: 0px;
}
.woocommerce-shop .woocommerce-notices-wrapper, body.single-product .woocommerce-notices-wrapper {
    padding: 0px;
}
.woocommerce-shop .information,
body.single-product .information{
    margin-top: 0px;
}
.woocommerce-sidebar-1 .wc-block-product-categories-list--depth-2 {
    display: none;
}
body.archive .inner-header, body.single-product .inner-header {
    /* display: none; */
}

nav.woocommerce-breadcrumb, nav.woocommerce-breadcrumb a {
    color: #222 !important;
    font-size: 14px !important;
}
nav.woocommerce-breadcrumb a:hover {
    text-decoration: underline !important;
}
body.archive .woocommerce-notices-wrapper {
    padding-top: 0px;
}

/*SINGLE PRODUCT*/

.single-product-data-main ol.flex-control-nav li img {
    border: 1px solid #e9eaec;
	padding: 5px;
}
.summary.entry-summary .woocommerce-product-details__short-description ul {
    margin-top: 15px !important;
    padding-left: 20px !important;
}
.single-product-data-main .quantity input.qty {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c1);
    outline: 0;
    color: var(--c1);
}
.single-product-data-main .quantity input.qty:focus {
    border-color: var(--c3);
}
.single-product-data-main ol.flex-control-nav li img.flex-active {
    border-color: var(--c3);
}
body.single-product .woocommerce-message {
    margin-top: 30px;
    margin-bottom: 0px;
}
.woocommerce-message, .woocommerce-info {
    border-top-color: red;
}
.woocommerce-notices-wrapper {
    padding-top: 50px;
}
.woocommerce-product-gallery__wrapper a {
    display: block !important;
}
.single-product-data-main {
    padding: 80px 0px 50px 0px;
    overflow: hidden;
}
.related.products > h2,
.woocommerce-Tabs-panel h2,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-checkout h3#order_review_heading,
header.woocommerce-Address-title h3{
    color: var(--c2);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}
.product-box-content {
  color: var(--c2);
  text-align: center;
  /* border-bottom: 1px solid var(--c6); */
  /* border-top: 1px solid var(--c6); */
  margin: 20px 0px 0px;
  /* padding: 10px 0px 3px; */
}
.product-box-content .price ins {
    text-decoration: none;
    font-weight: 500 !important;
}
.product-box-main {
    transition: all .5s;
    position: relative;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px var(--c3);
    text-align: center;
}
.product-box-main:hover {
    border-color: var(--primary);
}
.product-box-content h2 {
    font-size: 22px !important;
    font-weight: 500;
    padding: 0px !important;
    margin-bottom: 5px !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.product-box-content .price {font-size: 16px !important;color: var(--c6) !important;display: flex !important;gap: 7px;justify-content: center;}
.product-box-image img {
    transition: all .6s;
    margin: 0px auto !important;
    height: 100% !important;
    object-fit: cover;
}
table.woocommerce-product-attributes {
    color: var(--c2);
}
.woocommerce-tabs ul:before,
.woocommerce-tabs ul:after,
.woocommerce-tabs ul li:before,
.woocommerce-tabs ul li:after {
    display: none !important;
}
.woocommerce-Reviews {
    color: var(--c2);
}
.single-product-data-main button.single_add_to_cart_button {
    background-color: var(--c3) !important;
    opacity: 1 !important;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--c3);
    transition: all .5s;
    margin-left: 10px;
    width: 340px;
    height: 50px;
}
.single-product-data-main button.single_add_to_cart_button:hover {
    background-color: var(--c1) !important;
    color: var(--c2) !important;
}
.place-order button#place_order,
.woocommerce-address-fields button.button,
form.woocommerce-EditAccountForm .woocommerce-Button,
.page-id-22 .wc-block-cart__submit-container a{
	margin-top: 12px;
}
form.woocommerce-EditAccountForm legend {
    font-weight: 600;
    font-size: 30px;
    margin-top: 10px;
}
.cart_totals .wc-proceed-to-checkout a{
 	padding: 20px 30px !important;
}
.wc-block-checkout__actions a.wc-block-components-checkout-return-to-cart-button,
.wc-block-checkout__actions a.wc-block-components-checkout-return-to-cart-button:hover,
.wc-block-components-totals-coupon a {
    color: var(--c1);
}
.woocommerce-product-details__short-description ul li {
    margin-bottom: 4px;
    list-style: disc;
    line-height: 1.7;
    color: var(--c1);
    font-size: 18px;
}
.woocommerce-product-details__short-description {
    margin-bottom: 20px;
}
.woocommerce-product-details__short-description ul li:last-child {
}
.single-product-data-main .qib-button-wrapper .qib-button {
    background: unset !important;
    border: 0px;
    height: 35px;
}
.single-product-data-main .qib-button-wrapper {
    border: 1px solid #c2c2c2;
    border-radius: 50px;
}
.single-product-data-main .qib-button-wrapper .input-text {
    border: 0px !important;
    font-size: 15px !important;
    height: 35px !important;
    padding: 0px !important;
    width: 40px;
}
.summary.entry-summary table.variations th.label {
    margin-bottom: 8px;
}
.summary.entry-summary table.variations li.button-variable-item {
    color: var(--c1);
    /* width: 50px !important; */
    font-size: 14px !important;
    border-radius: 0px !important;
    font-weight: 600;
    background-color: rgb(240, 240, 240) !important;
}
/* .summary.entry-summary table.variations li.button-variable-item:hover {
    color: var(--c2);
	background: unset;
} */
.summary.entry-summary table.variations tr:first-child {
    display: block;
}
ol.flex-control-nav.flex-control-thumbs img {
    opacity: unset !important;
}
.woocommerce-product-gallery ol.flex-control-nav {
    margin-top: 0px !important;
    display: flex;
    gap: 20px;
}
.single_variation_wrap .quantity {
    position: relative;
}
.related.products {
    margin-bottom: 80px;
}
.comment-form-rating span a {
    color: orange;
}
.woocommerce-Tabs-panel span#reply-title {
    color: black;
    display: flex;
    gap: 10px;
    align-items: center;
}
.woocommerce-message, .woocommerce-info {
    border-top-color: var(--primary);
}
.woocommerce-message::before, .woocommerce-info::before {
    color: var(--primary);
}
body.single-product .woocommerce-Reviews input#submit, .woocommerce-message a.button, body.woocommerce-account .woocommerce-form-login__submit, form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button, .woocommerce-MyAccount-content button.button, .woocommerce-info a.button {
    background: unset !important;
    border: 1px solid var(--c3) !important;
    border-radius: 0px !important;
    font-weight: 500 !important;
    color: var(--c3) !important;
    padding: 15px 30px !important;
    transition: all .4s;
}
body.single-product .woocommerce-Reviews input#submit:hover, .woocommerce-message a.button:hover, body.woocommerce-account .woocommerce-form-login__submit:hover, form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button:hover, .woocommerce-MyAccount-content button.button:hover, .woocommerce-info a.button:hover {
    background-color: var(--c3) !important;
    color: var(--c2) !important;
}
.summary.entry-summary .woocommerce-product-details__short-description p {
    font-size: 18px;
}

.product-box-main a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {background-color: var(--c3);color: var(--c2);font-weight: 500;transition: all .5s;: /;box-shadow: 0px 0px 0px 0px var(--c1);margin: 4px auto 0 auto;font-size: 16px !important;letter-spacing: 0px;text-transform: capitalize;}

.product-box-main a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
    box-shadow: 5px 5px 0px 0px var(--c5);
}

.product-box-main:hover {
    box-shadow: 0px 0px 5px 3px var(--c3);
}

.shop-page-sidebar .woocommerce-sidebar-1 {
    border-radius: 5px;
    padding: 20px 10px;
    border: 1px solid #e1e1e1;
}

.price_label {
    flex: 0 !important;
    font-size: 16px !important;
}

.shop-page-sidebar .woocommerce-sidebar-1 ul {
    display: flex;
    flex-direction: column;
    margin: 10px 0px !important;
    border-top: 1px solid #e1e1e1;
    padding-top: 10px !important;
    gap: 0px;
}
.shop-best-sellers ul.products::before, .shop-best-sellers ul.products::after {
    display: none !important;
}
.shop-best-sellers ul.products {
    display: flex !important;
    column-gap: 17px !important;
    flex-wrap: wrap !important;
}
.shop-best-sellers ul.products li.product {
    margin: 0px !important;
    width: 24% !important;
}
.shop-page-sidebar .woocommerce-sidebar-1 ul li {
    font-size: 16px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.shop-page-sidebar .woocommerce-sidebar-1 ul li a {
    transition: all .5s;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.shop-page-sidebar .woocommerce-sidebar-1 ul li a:hover {
    color: var(--c3);
    text-decoration: underline !important;
}

.shop-page-sidebar .uk-panel {
    margin: 0px 0px 20px;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: var(--c3) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--c3) !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: var(--c3) !important;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    background-color: var(--c3);
    color: var(--c2);
    font-weight: 500;
    padding: 3px 10px;
    transition: all .5s;
    border: 1px solid var(--c3);
    font-size: 16px !important;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.woocommerce .widget_price_filter .price_slider_amount .button:hover {
    background: none;
    color: var(--c6);
}

.single-product-data-main .woocommerce-product-gallery__image.flex-active-slide {
}

.single-product-data-main .flex-viewport {
    margin-bottom: 30px;
}

.single-product-data-main .woocommerce-tabs.wc-tabs-wrapper {}

.woocommerce-tabs.wc-tabs-wrapper {
    margin-bottom: 100px;
}

.woocommerce p.stars a {
    font-size: 18px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    border: 2px solid var(--c5);
    border-radius: 10px;
    padding: 10px 40px !important;
    transition: all .5s;
    color: var(--c6);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 0 !important;
    background: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    background: var(--c5);
    color: var(--c2) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background: var(--c5);
    color: var(--c2) !important;
}

.product-box-image img {
    height: 300px !important;
}
div#review_form textarea {
    height: 200px !important;
    margin-top: 20px;
    border: 1px solid #e1e1e1 !important;
    transition: all .5s;
}

div#review_form textarea:focus-visible {
    border: 1px solid var(--c3) !important;
}

/*CART PAGE CSS*/


body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main {
    width: 100%;
    padding: 0px;
}
body.woocommerce-cart .wc-block-components-totals-wrapper {
    border-top: 1px solid white;
}
body.woocommerce-cart .wc-block-components-quantity-selector {
    color: var(--c1);
}
body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    color: var(--c2);
}
body.woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items td {
    border-top: 1px solid var(--c3) !important;  
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items {
    border: 1px solid var(--c3);
}
.page-id-22 .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout {
    justify-content: end;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items thead,
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items thead th {
	background-color: var(--c3) !important;
	visibility: visible;
	font-size: 14px;
	text-align: center;
	color: var(--c2);
	font-weight: 500;
	padding: 12px 0px;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-main .wc-block-cart-items td.wc-block-cart-item__product {
    font-size: 16px;
    color: var(--c1);
}
body.woocommerce-cart .wc-block-components-product-badge {
    border-radius: 0px;
    border-color: var(--c1);
    color: var(--c1);
}
body.woocommerce-cart a.wc-block-components-product-name {
    color: var(--c1);
    font-weight: 600;
}
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide .wc-block-components-sidebar-layout .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid var(--c3);
    font-size: 15px;
    color: var(--c1);
    padding: 15px;
}
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title{
	text-align: left;
	font-size: 14px;
	padding: 8px 16px;
	background-color: var(--c3);
	font-weight: 500;
	color: var(--c1);
}
body.woocommerce-cart .wc-block-components-totals-coupon a {
    text-decoration: underline;
    color: var(--c1);
}
body.woocommerce-cart .wc-block-cart__submit-container a:focus{
	outline: unset !important;
    box-shadow: unset !important;
}
body.woocommerce-cart .wc-block-components-sidebar-layout {
    justify-content: end;
}

.cart-woocommerce {
    margin: 100px 0px;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background-color: var(--c3);
    justify-content: center;
    align-items: center;
    display: inline-flex !important;
    color: var(--c2);
    transition: all .5s;
    border: 1px solid var(--c3);
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    border: 1px solid var(--c5);
    color: var(--c6);
    background: 0;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    background-color: var(--c3);
    justify-content: center;
    align-items: center;
    display: inline-flex !important;
    color: var(--c2);
    transition: all .5s;
    border: 1px solid var(--c3);
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
    background: 0;
    color: var(--c1);
    border-color: var(--c5);
}

body.woocommerce-checkout p {
    font-size: 16px !important;
}

.shop-cta .banner-bg img {
    aspect-ratio: 3;
}

.shop-cta .banner-content-wrapper h2 {margin-bottom: 50px;}

.responsive-menu-main .web-btn.green-btn.header-btn {
    margin-top: 30px;
}

body.page-id-109 section.about-anne.spacing {
        padding: 100px 0px 0px;
    }
    span.price {
    font-size: 16px !important;
    letter-spacing: 0px !important;
}


.download-book h5 {
    margin: 10px 0px 0px;
    letter-spacing: 0px;
    font-size: 20px;
    transition: all .5s;
}

.download-book a span {
    width: 100%;
    display: block;
    transition: all .5s;
}


.download-book a:hover span, .download-book a:hover h5 {
    color: var(--c3);
}

.download-book {
    margin: 30px 0px;
    text-align: center;
}

.book-content ul li i {
    color: var(--c6);
    font-size: 20px;
    margin-right: 20px;
}

.resources  .variant-content ul li {
    list-style: none;
    margin-left: 0px;
}

.resources .variant-content ul li i {
    font-size: 20px;
    margin-right: 10px;
}

.chapters-banner {
    padding: 50px 0px;
    background-color: var(--c3);
}

.web-title.chapter-banner-title h2 {
    margin: 0px;
    color: var(--c2);
    text-transform: capitalize;
}

.chapters-banner .web-btn.pink-btn {
    display: flex;
    justify-content: end;
}

.chapters-the-content {
    background-color: var(--c5);
    padding: 50px 0px;
}

.theContent-title h2,
.theContent-title h3,
.theContent-title p
{
    color: var(--c6);
}

.glossary-title h3 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 30px;
}

.glossary-img {
    margin: 0px 50px;
}

.chapters-banner .web-btn.pink-btn a::before {
    background-color: var(--c2);
}

.chapter-header h3,.chapter-header p {
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

.points-img {
    margin: 50px 100px;
}

.chapter-footer span {
    display: block;
    font-style: italic;
}

.featured-content p span {
    font-weight: 900;
    color: var(--c4);
}

.post-excerpt-section .download-book {
    text-align: start;
}

.press-highlights {
    position: relative;
}

.press-highlights::before {
    position: absolute;
    content: '';
    top: 100px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #ccaedb4f;
    left: 0;
    transition: all .5s;
    animation: floatDrift 4s ease-in-out infinite;
}

@keyframes floatDrift {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(0, -20px);
    }
    75% {
        transform: translate(-10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.press-highlights::after {
    position: absolute;
    content: '';
    bottom: 0;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #74bda03d;
    right: 0;
    transition: all .5s;
    animation: floatDriftBottom 4s ease-in-out infinite;
}

@keyframes floatDriftBottom {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(0, 20px);
    }
    75% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}


.copyright p a {
    color: var(--c3);
    font-weight: 500;
    transition: all .5s;
}

.copyright p a:hover {
    color: var(--c2);
}

.book-content.web-title h2 i {
    padding-right: 30px;
}

/* character split styling */
.variant-content ul li .text .char {
  display: inline-block;
  will-change: transform;
}


@keyframes char-bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.variant-content ul li:hover .text .char {
  animation: char-bounce 0.4s ease;
  animation-delay: calc(var(--i) * 40ms); /* stagger */
}

ul.no-list li {
    list-style: none !important;
    margin-left: 0px;
}

.variant-content ul li i {
    margin-right: 10px;
}

.events-img img {
    border-radius: 20px;
}

.events-img {
    position: relative;
    transition: all .5s;
}

.events-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    border-radius: 20px;
    transition: all .5s;
}

.events-main {
    position: relative;
}

.events-main:hover .purchase-blocks {
    height: 100%;
    visibility: visible;
    opacity: 1;
    display: block;
}

section.blogs .container .row:nth-child(even) {
    flex-direction: row-reverse;
}

.cust-privacy-cont {
    text-align: left;
}
.cust-privacy-cont h2 {
    font-size: 40px;
    margin-bottom: 15px !important;
    font-family: var(--f1);
}
.cust-privacy-cont p {
    margin-bottom: 15px !important;
}
.cust-privacy-cont h3 {
    margin-bottom: 15px !important;
    font-family: var(--f1);
}
.cust-privacy-cont ol li{
	list-style: auto;
}
.cust-privacy-cont ul li, .cust-privacy-cont ol li {
    margin-bottom: 8px;
    list-style: disc;
}
.cust-privacy-cont ul, .cust-privacy-cont ol {
    margin-bottom: 15px !important;
    padding-left: 20px !important;
}