@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Lato, sans-serif;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body {
  scrollbar-width: none;
}

.outline-btn,
.outline-btn-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  border: 1px solid #ebad0d;
  background: #fff;
  color: #ebad0d;
  padding: 0 0.9rem;
  height: 2rem;
  cursor: pointer;
}
.outline-btn:active,
.outline-btn-green:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.outline-btn-green {
  border: 1px solid #3a9693;
  color: #3a9693;
}

.solid-btn,
.solid-btn-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: #ebad0d;
  color: #505050;
  padding: 0 0.9rem;
  font-size: 1.25rem;
  height: 2rem;
  border: none;
  outline: none;
  cursor: pointer;
}
.solid-btn:active,
.solid-btn-green:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.solid-btn-green {
  border-radius: 25px;
  background: #3a9693;
  color: #ffffff;
  padding: 0 40px;
  font-size: 1.5rem;
  font-weight: 500;
  height: 60px;
}

.underlined-heading {
  color: #d48d8a;
  font-size: calc(1.5rem + 0.375vw);
  position: relative;
}
.underlined-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #afafaf;
  z-index: 2;
}

.underlined-heading-yoga {
  color: #505050;
  font-size: calc(1.5rem + 0.375vw);
  position: relative;
}
.underlined-heading-yoga:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  max-width: 150px;
  height: 2px;
  background: #2497d8;
  z-index: 2;
}

.input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #00b386;
  background: #fff;
  padding: 8px 10px;
  font-size: 1.25rem;
  color: #00b386;
  outline: none;
  font-family: Montserrat, sans-serif;
}

.normal-input {
  border-radius: 3px;
  border: 0.5px solid #d9d9d9;
  background: #ffffff;
  font-size: 20px;
  font-family: Montserrat, sans-serif;
  color: #333333;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.normal-input:focus {
  border: 1px solid #d48d8a;
  outline: none;
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-checkbox input[type=checkbox] {
  display: none;
}

.custom-checkbox .custom-checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #898989;
  background-color: #fff;
  border-radius: 3px;
}

.custom-checkbox input[type=checkbox]:checked + .custom-checkmark {
  border: 1px solid #d48d8a;
  background-color: #d48d8a;
  position: relative;
}
.custom-checkbox input[type=checkbox]:checked + .custom-checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  height: 5rem;
  padding-inline: 10px;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 400px) {
  nav {
    padding-inline: 20px;
  }
}
nav .nav-left-side,
nav .nav-right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .nav-right-side-desktop {
  display: none;
}
nav .logo {
  width: auto;
  height: 35px;
}
nav .get-in-touch-btn {
  text-decoration: none;
  height: 35px;
}
nav .nav-hamburger {
  margin-left: 10px;
  font-size: 34px;
  color: #505050;
}
nav .nav-mobile-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #808080;
  padding: 0 16px 16px 16px;
  position: absolute;
  top: 77px;
  left: 0;
  width: 100%;
}
nav .nav-mobile-menu a {
  text-decoration: none;
  color: #505050;
  font-size: 20px;
}
@media (min-width: 768px) {
  nav {
    height: 100px;
    padding: 20px 50px;
  }
  nav .logo {
    height: 50px;
  }
  nav .nav-right-side {
    display: none;
  }
  nav .nav-right-side-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
  }
  nav .nav-right-side-desktop .nav-item,
  nav .nav-right-side-desktop .nav-item-yoga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    color: #505050;
    cursor: pointer;
    text-decoration: none;
    position: relative;
  }
  nav .nav-right-side-desktop .nav-item .dropdown-icon,
  nav .nav-right-side-desktop .nav-item-yoga .dropdown-icon {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  nav .nav-right-side-desktop .nav-item:hover,
  nav .nav-right-side-desktop .nav-item-yoga:hover {
    border-bottom: 1px solid #505050;
  }
  nav .nav-right-side-desktop .nav-item-yoga:hover {
    border-bottom: none;
  }
  nav .nav-right-side-desktop #nav-partner-hover-div {
    display: none;
    position: absolute;
    left: -50%;
    bottom: -5.2rem;
    background: #ffffff;
    width: 300px;
    z-index: 2;
    border-radius: 5px;
    padding: 1rem;
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  }
  nav .nav-right-side-desktop #nav-partner-hover-div a {
    text-decoration: none;
    color: #505050;
  }
  nav .nav-right-side-desktop #nav-partner-hover-div a:hover {
    text-decoration: underline;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
}
@media (min-width: 1024px) {
  nav {
    padding-inline: 100px;
  }
}

#hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
  padding-bottom: 4rem;
}
#hero #hero-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
  margin-top: 30px;
}
#hero #hero-description #hero-para {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #505050;
  font-size: calc(1.6rem + 0.4vw);
  padding-inline: 1.5rem;
  text-align: center;
}
#hero #hero-description #hero-para #hero-animation {
  margin-top: 1.5rem;
}
#hero #hero-description .get-in-touch-btn {
  display: none;
}
#hero #hero-description #ticker {
  margin-top: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  white-space: nowrap;
}
#hero #hero-description #ticker .ticker-item {
  display: inline;
  font-size: calc(1.6rem + 0.4vw) !important;
}
#hero #hero-description .blue-color {
  color: #2497d8;
}
#hero #hero-description #hero-img {
  width: 349px;
  height: 248px;
}
#hero-feature-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 0 10px;
  width: 100%;
}
#hero-feature-div .features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
#hero-feature-div .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  border-radius: 10px;
  border: 0.5px solid #adadad;
  background: #fff;
  -webkit-box-shadow: 2px 4px 7px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 4px 7px 0px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: #505050;
  font-weight: 700;
  min-width: 157px;
  min-height: 80px;
}
@media (min-width: 768px) {
  #hero {
    gap: 0;
  }
  #hero #hero-description {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 50px;
    gap: 30px;
  }
  #hero #hero-description #hero-para {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-weight: 500;
    text-align: start;
  }
  #hero #hero-description #hero-para .get-in-touch-btn {
    display: block;
    height: 60px;
    margin-top: 1.5rem;
    padding: 0 2.5rem;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    border-radius: 25px;
  }
  #hero #hero-description #hero-img {
    width: 380px;
    height: 300px;
  }
  #hero-feature-div {
    padding-top: 100px;
    background: url("../../assets/home/hero-bg.png") no-repeat center center/cover;
    background-size: 100% 150px;
  }
  #hero-feature-div .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }
  #hero-feature-div .feature {
    font-size: 30px;
    min-width: 230px;
    min-height: 124px;
  }
}
@media (min-width: 1024px) {
  #hero #hero-description {
    gap: 77px;
  }
  #hero #hero-description #hero-img {
    width: 487px;
    height: 360px;
  }
}

.hero-yoga {
  background: url("../../assets/home/yoga_header_mobile.png") no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  padding-bottom: 212px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}
@media (min-width: 768px) {
  .hero-yoga {
    background: url("../../assets/home/yoga_header_laptop.png") no-repeat !important;
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
        -ms-flex-direction: unset !important;
            flex-direction: unset !important;
    background-size: 100% 100% !important;
    padding-left: 6rem !important;
    padding-bottom: 46px !important;
    margin-bottom: 28px !important;
    line-height: 1.2 !important;
  }
  .hero-yoga #hero-description {
    margin-top: 92px !important;
  }
  .hero-yoga #hero-description #hero-para {
    font-weight: 800 !important;
    font-size: 2.5rem !important;
  }
}

#expert-n-therapists-section {
  background: #4f6137;
  color: #eeeeee;
  text-align: center;
  padding-bottom: 85px;
}
#expert-n-therapists-section h2 {
  font-size: 1.62rem;
  font-weight: 700;
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  color: #ffffff;
}
#expert-n-therapists-section h2:after {
  display: none;
}
@media (min-width: 768px) {
  #expert-n-therapists-section h2 {
    font-size: 1.875rem;
    color: #00b386;
    padding: 0;
    margin-bottom: 5.5rem;
  }
  #expert-n-therapists-section h2:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 170px;
    height: 2px;
    background: #d9e7cb;
    border-radius: 10px;
  }
}
#expert-n-therapists-section .underlined-heading-yoga {
  color: #505050;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#expert-n-therapists-section .underlined-heading-yoga:after {
  background: #2497d8;
  position: absolute;
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#expert-n-therapists-section #expert-n-therapists {
  font-size: 1.125rem;
  font-weight: 300;
  border-bottom: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#expert-n-therapists-section #expert-n-therapists span {
  cursor: pointer;
  padding-bottom: 1.25rem;
}
#expert-n-therapists-section #expert-n-therapists .active {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
#expert-n-therapists-section #expert-n-therapists .active:after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #eeeeee;
  border-radius: 10px;
}
@media (min-width: 768px) {
  #expert-n-therapists-section #expert-n-therapists {
    color: #505050;
    border-bottom: 1px solid #505050;
  }
  #expert-n-therapists-section #expert-n-therapists .active:after {
    background: #505050;
  }
}
#expert-n-therapists-section #offering-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  #expert-n-therapists-section #offering-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 315px));
    gap: 25px;
    padding: 4.375rem 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#expert-n-therapists-section .offering {
  width: 315px;
  height: 100%;
  text-align: center;
  background: #4f6137;
}
#expert-n-therapists-section .offering .icon {
  width: 3.125rem;
  height: 3.125rem;
}
#expert-n-therapists-section .offering .title {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}
#expert-n-therapists-section .offering .description {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  #expert-n-therapists-section .offering {
    border-radius: 10px;
    padding: 2.5rem 3rem;
  }
  #expert-n-therapists-section .offering .title {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  #expert-n-therapists-section .offering .description {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  #expert-n-therapists-section {
    background-color: #ffffff;
    padding-bottom: 25px;
  }
}

.expert-n-therapists-section-yoga {
  background-color: #ffffff !important;
  padding-bottom: 0px !important;
}
.expert-n-therapists-section-yoga h2:after {
  display: block !important;
}
.expert-n-therapists-section-yoga .offering-yoga {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expert-n-therapists-section-yoga .offering-yoga .offering-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #505050;
  max-width: 325px;
  padding: 1rem;
  border-radius: 10px;
  border: 0.2px solid #b7b7b7;
  background: #fff;
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.15);
}
.expert-n-therapists-section-yoga .offering-yoga .offering-item .blue-color {
  color: #2497d8;
}
.expert-n-therapists-section-yoga .offering-yoga .offering-item .done-img {
  display: none;
}
@media (max-width: 768px) {
  .expert-n-therapists-section-yoga .offering-yoga {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .expert-n-therapists-section-yoga .offering-yoga .offering-item {
    width: 100%;
    max-width: calc(100% - 4rem);
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    font-size: 1.125rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #afafaf;
    border-radius: 0;
    padding: 1rem 0;
  }
  .expert-n-therapists-section-yoga .offering-yoga .offering-item div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .expert-n-therapists-section-yoga .offering-yoga .offering-item div img {
    width: 30px !important;
    height: 30px !important;
    margin-right: 1rem;
  }
  .expert-n-therapists-section-yoga .offering-yoga .offering-item .blue-color {
    color: #505050;
  }
  .expert-n-therapists-section-yoga .offering-yoga .offering-item .done-img {
    display: block;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) and (max-width: 385px) {
  .expert-n-therapists-section-yoga .offering-yoga .offering-item {
    max-width: calc(100% - 2rem);
  }
}
@media (max-width: 768px) {
  .expert-n-therapists-section-yoga .offering-yoga #offering-item-4 {
    border-bottom: none;
  }
}
.expert-n-therapists-section-yoga .partner-with-us-btn {
  text-decoration: none;
  border-radius: 0;
  margin-top: 22px;
  height: 54px;
}
@media (min-width: 768px) {
  .expert-n-therapists-section-yoga .partner-with-us-btn {
    display: none;
  }
}

#testimonials {
  padding: 48px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, #eeeeee));
  background: linear-gradient(to right, #ffffff 50%, #eeeeee 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}
#testimonials-div {
  width: 100%;
  max-width: 90vw;
  overflow: hidden;
}
#testimonials-div-slider {
  padding: 50px 0 0 0;
}
#testimonials-div-slider .testimonials-element {
  max-width: 90vw !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  padding: 18px 20px;
  border-radius: 20px;
  border: 0.2px solid #505050;
  background: #fff;
  -webkit-box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.1);
  color: #505050;
  font-weight: 300;
}
#testimonials-div-slider .testimonials-element .personal-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  font-size: 18px;
}
#testimonials-div-slider .testimonials-element .personal-details .starIcons {
  color: #ebad0d;
}
#testimonials-div-slider .testimonials-element .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #505050;
  background: white;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -50px;
  right: 26px;
  z-index: 2;
}
#testimonials-div .swiper-btn-div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
#testimonials-div .swiper-btn-div span {
  font-size: 20px;
  cursor: pointer;
}
#testimonials-div .swiper-btn-div span:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  #testimonials {
    background: #ffffff;
  }
  #testimonials-div {
    width: 700px;
  }
}

#how-it-works {
  text-align: center;
  padding: 40px 0;
}
#how-it-works-steps-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  margin: 60px 0 22px 0;
  text-align: left;
  padding: 0 1rem 0 5rem;
}
#how-it-works-steps-div .how-it-works-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  color: #505050;
  background: #ffffff;
  border: none;
  position: relative;
}
#how-it-works-steps-div .how-it-works-card .icon {
  position: absolute;
  top: 0;
  left: -3.5rem;
}
#how-it-works-steps-div .how-it-works-card .icon img {
  width: 36px;
  height: 36px;
}
#how-it-works-steps-div .how-it-works-card .step {
  font-size: 16px;
  font-weight: 300;
}
#how-it-works-steps-div .how-it-works-card .title {
  font-size: 20px;
  font-weight: 600;
}
#how-it-works-steps-div .how-it-works-card .description {
  font-size: 20px;
}
@media (min-width: 768px) {
  #how-it-works {
    background: #ffffff;
    padding: 28px 0;
    background: url("../../assets/home/user-exp-bg.png") no-repeat;
    background-size: 100% 335px;
  }
  #how-it-works-steps-div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 110px;
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
    text-align: center;
    padding: 0 1rem;
    margin-top: 137px;
  }
  #how-it-works-steps-div .how-it-works-card {
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px 30px 50px 30px;
    max-width: 281px;
    color: #505050;
  }
  #how-it-works-steps-div .how-it-works-card::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 200px;
    height: 1px;
    background: #505050;
  }
  #how-it-works-steps-div .how-it-works-card .icon {
    top: -60px;
    left: 0;
  }
  #how-it-works-steps-div .how-it-works-card .icon img {
    width: 48px;
    height: 48px;
  }
  #how-it-works-steps-div .how-it-works-card .step {
    font-size: 20px;
    margin-bottom: 8px;
  }
  #how-it-works-steps-div .how-it-works-card .title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
  }
}

#health-coach-team {
  padding: 35px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #eeeeee), color-stop(50%, #ffffff));
  background: linear-gradient(to right, #eeeeee 50%, #ffffff 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
}
#health-coach-team-div {
  width: 100%;
  overflow: hidden;
}
#health-coach-team-div-slider {
  text-align: center;
}
#health-coach-team-div-slider .team-member {
  padding: 0 1rem;
}
#health-coach-team-div-slider .team-member .image {
  width: 189px;
  height: 189px;
  border-radius: 50%;
  border: 1px solid rgb(150, 150, 150);
  background: white;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 19px;
}
#health-coach-team-div-slider .team-member .details {
  line-height: 1.5rem;
}
#health-coach-team-div-slider .team-member .name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #505050;
}
#health-coach-team-div-slider .team-member .professional-details {
  font-size: 19px;
  font-weight: 400;
}
#health-coach-team-div-slider .team-member .professional-details .designation {
  color: #505050;
}
#health-coach-team-div-slider .team-member .bio {
  color: #505050;
}
#health-coach-team-div-slider .team-member .experience {
  color: #505050;
}
#health-coach-team-div .expert-team-yoga .team-member .name {
  color: #505050 !important;
}
#health-coach-team-div .expert-team-yoga .team-member .professional-details .designation {
  color: #505050 !important;
}
#health-coach-team-div .expert-team-yoga .team-member .professional-details .experience {
  color: #505050 !important;
}
#health-coach-team-div .slider-dots-div {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
#health-coach-team-div .slider-dots-div .slider-dots {
  width: 26px;
  height: 12px;
  background: #00b386;
  border-radius: 10px;
}
#health-coach-team-div .slider-dots-div .slider-dots-yoga {
  background: #505050;
}
@media (min-width: 768px) {
  #health-coach-team-div .slider-dots-div {
    margin-top: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#health-coach-team-div .swiper-btn-div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
}
#health-coach-team-div .swiper-btn-div span {
  font-size: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #health-coach-team-div .swiper-btn-div {
    display: none;
  }
}
#health-coach-team-div .multi-swiper-pagination {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 95px;
}
#health-coach-team-div .multi-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #00b386;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#health-coach-team-div .multi-swiper-pagination .swiper-pagination-bullet-active {
  width: 26px;
}
@media (min-width: 768px) {
  #health-coach-team-div .multi-swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  #health-coach-team {
    background: white;
    gap: 110px;
    padding: 35px 0 95px 0;
  }
}

#wellness {
  text-align: center;
  padding-top: 36px;
}
#wellness .wellness-wrapper {
  margin: 50px 16px 0 16px;
  padding: 12px 12px 28px 12px;
  border-radius: 12px;
  background-color: #f5f5f5;
  color: #505050;
}
#wellness .wellness-wrapper .wellness-card {
  padding: 16px 0;
  border-bottom: 1px solid #dedede;
}
#wellness .wellness-wrapper .wellness-card .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
#wellness .wellness-wrapper .wellness-card .description {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 768px) {
  #wellness {
    background: url("../../assets/home/user-exp-bg.png") no-repeat;
    background-size: 100% 383px;
    padding-top: 60px;
  }
  #wellness .wellness-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 36px;
    background: transparent;
  }
  #wellness .wellness-wrapper .wellness-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
    max-width: 281px;
  }
  #wellness .wellness-wrapper .wellness-card .title {
    font-size: 26px;
    padding-inline: 16px;
  }
  #wellness .wellness-wrapper .wellness-card .description {
    font-size: 20px;
  }
}

#faq-section {
  padding: 36px 20px;
}
#faq-section #faq-parent-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
  width: 100%;
}
#faq-section #faq-parent-div #faq-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
#faq-section #faq-parent-div #faq-div .faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  color: #505050;
  padding: 1.25rem 0;
  border-bottom: 1px solid #afafaf;
}
#faq-section #faq-parent-div #faq-div .faq-item-ques {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: calc(1rem + 0.4vw);
}
#faq-section #faq-parent-div #faq-div .faq-item-ques p {
  width: 100%;
  cursor: pointer;
}
#faq-section #faq-parent-div #faq-div .faq-item-ques span {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#faq-section #faq-parent-div #faq-div .faq-item-ans {
  font-size: calc(1rem + 0.25vw);
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  #faq-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 36px 100px;
  }
  #faq-section #faq-parent-div {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    gap: 0;
  }
  #faq-section #faq-parent-div #faq-div {
    gap: 30px;
    padding: 30px 20px;
  }
}

#contact-us-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #4f6137;
  padding: 58px 34px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #contact-us-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    padding-bottom: 30px;
  }
}
#contact-us-section .footer-text {
  margin-top: 2rem;
  text-align: center;
  color: rgba(238, 238, 238, 0.93);
  font-weight: 300;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 12px;
}
@media (min-width: 768px) {
  #contact-us-section .footer-text {
    margin-top: 0;
  }
}
#contact-us-section .newsletter {
  max-width: 338px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #contact-us-section .newsletter {
    margin: 45px 54px;
  }
}
#contact-us-section .newsletter h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}
#contact-us-section .newsletter p {
  color: #ebad0d;
  margin-bottom: 34px;
}
#contact-us-section .newsletter form {
  margin-bottom: 34px;
}
#contact-us-section .newsletter form input {
  width: 208px;
  padding-bottom: 11px;
  margin-bottom: 14px;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #d9d9d9;
  font-weight: 600;
}
@media (min-width: 768px) {
  #contact-us-section .newsletter form input {
    width: 254px;
    margin-bottom: 21px;
    font-size: 20px;
  }
}
#contact-us-section .newsletter form .google-captcha {
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}
#contact-us-section .newsletter form .google-captcha .error-message {
  color: red;
  margin-top: 10px;
}
#contact-us-section .newsletter form button {
  width: 125px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px solid #d9e7cb;
  border-radius: 50px;
  color: #4f6137;
  font-weight: 600;
  cursor: pointer;
}
#contact-us-section .newsletter form button:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media (min-width: 768px) {
  #contact-us-section .newsletter form button {
    width: 188px;
    height: 45px;
    font-size: 18px;
  }
}
#contact-us-section .policies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
#contact-us-section .policies a {
  cursor: pointer;
  color: #d9e7cb;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 768px) {
  #contact-us-section .policies {
    margin-top: 45px;
  }
}
#contact-us-section .img-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact-us-section .img-div img {
  display: none;
}
@media (min-width: 1024px) {
  #contact-us-section .img-div img {
    display: block;
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  #contact-us-section .img-div img {
    height: 434px;
  }
}

#snackbar {
  display: none;
  width: 250px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  z-index: 1;
}

#snackbar.show {
  display: inline-block;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
          animation: fadein 0.5s, fadeout 0.5s 5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
#loader {
  display: none;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #00B386;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}