@font-face {
  font-family: "Neuzeit-Grotesk-Black";
  src: url("../fonts/Neuzeit-Grotesk-Cond-Black.otf") format("opentype");
}
@font-face {
  font-family: "Neuzeit-Grotesk-Light";
  src: url("../fonts/Neuzeit-Grotesk-Light.otf") format("opentype");
}
@font-face {
  font-family: "Neuzeit-Grotesk-Regular";
  src: url("../fonts/Neuzeit-Grotesk-Regular.otf") format("opentype");
}
@font-face {
  font-family: "OrticaLinear-Light";
  src: url("../fonts/OrticaLinear-Light.otf") format("opentype");
}
@font-face {
  font-family: "OrticaLinear-Regular";
  src: url("../fonts/OrticaLinear-Regular.otf") format("opentype");
}
@font-face {
  font-family: "OrticaLinear-Bold";
  src: url("../fonts/OrticaLinear-Bold.otf") format("opentype");
}

#masthead {
  background: #242424;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.site-main {
  padding-top: 114px;
}

#primary-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}
#primary-menu .current-menu-item a {
  color: #d0bb98;
}
#primary-menu a {
  color: #fff;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-decoration: none;
  text-transform: uppercase;
}
#primary-menu a:hover {
  color: #d0bb98;
}

@media only screen and (max-width: 991px) {
  #primary-menu {
    flex-direction: column;
  }
  .site-main {
    padding-top: 80px;
  }
}
.top-bar {
  color: #fff;
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Regular";
  gap: 50px;
}
.top-bar .follow-icons,
.top-bar .phone {
  gap: 15px;
  font-size: 14px;
  line-height: 14px;
}
.top-bar a {
  color: #fffef8;
  text-decoration: none;
}
.top-bar a:hover {
  color: #d0bb98;
}

.m_button {
  z-index: 9999;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background-color: transparent;
  width: 80px;
  height: 80px;
  transition: box-shadow 0.6s cubic-bezier(0.79, 0.21, 0.06, 0.81);
}
.m_button span {
  background-color: #fffef8;
  width: 40px;
  height: 3px;
  border-radius: 4px;
  margin: 3.5px 0px 3.5px 0px;
  transition: margin 0.4s cubic-bezier(0.79, 0.21, 0.06, 0.81),
    transform 0.4s cubic-bezier(0.79, 0.21, 0.06, 0.81);
}
.m_button span:nth-child(2) {
  transform-origin: 50% 50%;
}

.active .m_button span {
  margin: -1.5px;
}
.active .m_button span:nth-child(1) {
  transform: rotate(-45deg);
}
.active .m_button span:nth-child(2) {
  transform: scale(0);
}
.active .m_button span:nth-child(3) {
  transform: rotate(45deg);
}

.navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #242424;
  overflow-y: hidden;
  z-index: 1000;
}

.navbar-collapse.show,
.menu-open {
  overflow-y: hidden;
}

.modal-dialog {
  max-width: 550px;
}
.modal-dialog .modal-content {
  border-radius: 0;
}
.modal-dialog .modal-content .modal-header {
  border: none;
  box-shadow: none;
  width: 100%;
}
.modal-dialog .modal-content .modal-header .close {
  background: transparent;
  border: 0;
  font-size: 45px;
  padding: 0;
  right: 0px;
  top: 0px;
}
.modal-dialog .modal-content .modal-body {
  max-width: 350px;
}
.modal-dialog
  .modal-content
  .modal-body
  .signup-form
  input:not(.submit-btn input) {
  width: 100%;
  height: 25px;
  background: transparent;
  border-bottom: 1px solid #242424;
  border-width: 0 0 1px 0;
  border-radius: 0;
  font-size: 14px;
  font-family: "Neuzeit-Grotesk-Light";
  letter-spacing: 2px;
  color: #242424;
  font-weight: 300;
}
.modal-dialog
  .modal-content
  .modal-body
  .signup-form
  input:not(.submit-btn input)::-moz-placeholder {
  opacity: 0.7;
  color: #242424;
}
.modal-dialog
  .modal-content
  .modal-body
  .signup-form
  input:not(.submit-btn input)::placeholder {
  opacity: 0.7;
  color: #242424;
}
.modal-dialog
  .modal-content
  .modal-body
  .signup-form
  input:not(.submit-btn input):focus-visible {
  outline: none;
}
.modal-dialog .modal-content .modal-body .signup-form .submit-btn {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .signup-form .submit-btn input {
  border: 1px solid #81ad8d;
  border-radius: 0;
  background: transparent;
  min-width: 250px;
  padding: 15px 60px;
  text-decoration: none;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 2.1px;
  line-height: 19px;
  text-transform: uppercase;
}
.modal-dialog .modal-content .modal-body .signup-form .submit-btn input:hover {
  background: #81ad8d;
  color: #fffef8;
}
.modal-dialog
  .modal-content
  .modal-body
  .signup-form
  .submit-btn
  .wpcf7-spinner {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0%);
  margin: auto;
}
.modal-dialog .modal-content .modal-body .signup-form .privacy {
  text-align: center;
}
.modal-dialog .modal-content .modal-body .signup-form .privacy a {
  color: #242424;
  font-size: 12px;
  text-transform: uppercase;
}
.modal-dialog .modal-content .modal-body .signup-form .privacy a:hover {
  color: #242424;
}

.site-footer {
  background: #242424;
}
.site-footer #footer-3 .sub-menu a:hover {
  color: #fffef8;
}
.site-footer #footer-3 .sub-menu li:last-child a:hover {
  color: #d0bb98 !important;
}
.site-footer .contact-list li {
  padding-bottom: 14px;
}
.site-footer .contact-list .sub-menu li:not(:last-child) {
  padding-bottom: 15px;
}
.site-footer .sub-menu {
  padding-top: 22px;
  padding-left: 20px;
  letter-spacing: 0;
}
.site-footer .sub-menu li {
  padding-bottom: 15px;
}
.site-footer .sub-menu a {
  color: #fffef8;
}
.site-footer .sub-menu a:hover:not(#footer-3 .sub-menu a) {
  color: #d0bb98;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  padding-bottom: 25px;
}
.site-footer ul li:last-child {
  padding-bottom: 0;
}
.site-footer a {
  color: #fffef8;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 7;
}
.site-footer a:hover {
  color: #d0bb98;
}
.site-footer span {
  text-align: center;
}
.site-footer .follow-icons {
  color: #d0bb98;
  font-size: 16px;
  letter-spacing: 2.8px;
  font-family: "Neuzeit-Grotesk-Regular";
}
.site-footer .follow-icons .icons {
  gap: 60px;
}

.footer-signup-section .signup-form p {
  margin-bottom: 25px;
}
.footer-signup-section .signup-form .form-input input {
  width: 100%;
  background: transparent;
  border-width: 0 0 1px 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.footer-signup-section .signup-form .form-input input:focus-visible {
  outline: none;
}
.footer-signup-section .signup-form .form-input input::-moz-placeholder {
  font-family: "Neuzeit-Grotesk-Light";
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #313131;
  opacity: 1;
}
.footer-signup-section .signup-form .form-input input::placeholder {
  font-family: "Neuzeit-Grotesk-Light";
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #313131;
  opacity: 1;
}
.footer-signup-section .signup-form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  font-weight: normal;
  display: block;
  text-align: left;
}
.footer-signup-section .signup-form .wpcf7-response-output {
  border: none;
  color: #141414;
  text-align: center;
}
.footer-signup-section .signup-form a,
.footer-signup-section .signup-form a:visited {
  font-family: "Neuzeit-Grotesk-Light";
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #313131;
  font-weight: 300;
  text-underline-offset: 5px;
}
.footer-signup-section .signup-form .submit-btn {
  position: relative;
}
.footer-signup-section .signup-form .submit-btn input[type="submit"] {
  border: 1px solid #313131;
  background: transparent;
  min-width: 250px;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 0;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  letter-spacing: 2.1px;
  line-height: 19px;
  text-transform: uppercase;
}
.footer-signup-section .signup-form .submit-btn input[type="submit"]:hover {
  background: #313131;
  color: #fffef8;
}
.footer-signup-section .signup-form .submit-btn .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .submit-btn input[type="submit"] {
    min-width: 200px !important;
  }
}

::-moz-selection {
  background: #d0bb98 !important;
}
::selection {
  background: #d0bb98 !important;
}

h1 {
  font-family: "OrticaLinear-Regular";
  font-size: 36px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 0.72px;
  line-height: 51px;
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 30px;
    line-height: 41px;
  }
}
h2 {
  font-family: "OrticaLinear-Regular";
  font-size: 30px;
  color: #242424;
  font-weight: 400;
  letter-spacing: 0.72px;
  line-height: 43px;
}
@media only screen and (max-width: 500px) {
  h2 {
    font-size: 25px;
    line-height: 33px;
  }
}

.slider-heading {
  font-family: "OrticaLinear-Regular";
  font-size: 52px;
  font-weight: 400;
  color: #fffef8;
  letter-spacing: 0.72px;
  line-height: 60px;
}

.hstory-heading {
  font-family: "OrticaLinear-Regular";
  font-size: 28px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 0.72px;
  line-height: 40px;
}

h3 {
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 2.8px;
  line-height: 19px;
  text-transform: uppercase;
}

h3 span {
  font-size: 24px !important;
}

p {
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.24px;
  line-height: 21px;
}
p span {
  font-family: "OrticaLinear-Regular";
  font-size: 26px;
}

button {
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #242424;
  letter-spacing: 2.1px;
  line-height: 19px;
}

.text-white1,
.text-white1 p,
.text-white1 a {
  color: #fffef8;
}

.text-cream,
.text-cream a {
  color: #d0bb98;
}

.text-black2,
.text-black2 a {
  color: #242424;
}

.text-green1,
.text-green1 a {
  color: #81ad8d;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.pattern-topleft {
  background: url("/wp-content/uploads/2024/04/top-left.png");
}

.full-width-section,
.full-width-section-1 {
  max-width: 100%;
}

section {
  max-width: 1280px;
  margin: auto;
  padding: 0px;
}

.custom-width-section,
.custom-width-header {
  max-width: 1280px;
}

@media only screen and (max-width: 1280px) {
  .custom-width-section,
  .full-width-section {
    padding: 0 65px;
  }
  .custom-width-section-1 {
    padding: 0 35px;
  }

  .custom-width-header {
    padding: 0 35px;
  }
}
.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-200 {
  padding-top: 200px;
}

@media only screen and (max-width: 768px) {
  .py-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }
}
.pattern-images img {
  position: absolute;
  z-index: 1;
  width: 16.5%;
}
.pattern-images .top-left {
  left: 0;
}
.pattern-images .top-right {
  right: 0;
}
.pattern-images .bottom-left {
  left: 0;
  bottom: 0;
}
.pattern-images .bottom-right {
  right: 0;
  bottom: 0;
}
.pattern-images .top-center {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 27.5%;
}
.pattern-images .bottom-center {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 27.5%;
}

.bg-black2-pattern {
  background: url("/wp-content/uploads/2024/07/grey-pattern-for-dark-background.svg");
  background-size: 60%;
  background-color: #141414;
}

.bg-black2 {
  background-color: #242424;
}

.bg-white1 {
  background-color: #fffef8;
}

.bg-white1-pattern {
  background: url("/wp-content/uploads/2024/07/beige-pattern-for-light-background-and-news-signup.svg");
  background-size: 60%;
  background-color: #fffef8;
}

.bg-cream1 {
  background-color: #e8ddcc;
}

.bg-cream1-pattern {
  background: url("/wp-content/uploads/2024/07/beige-pattern-for-light-background-and-news-signup-op.svg");
  background-size: 65%;
  background-color: #e8ddcc;
}

.no-max-width {
  max-width: 100%;
}

.heading-n-para {
  max-width: 600px;
}
.heading-n-para h2 {
  max-width: 500px;
}
.heading-n-para p {
  max-width: 600px;
}
.heading-n-para .quote p {
  font-family: "OrticaLinear-Regular";
  font-size: 24px;
  line-height: 36px;
}

.overlay-banner-home {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.overlay-banner-home .banner-section {
  width: 100%;
  height: 100%;
}
.overlay-banner-home .banner-section h1:not(.common-banner h1) {
  font-size: 56px;
  line-height: 51px;
}
.overlay-banner-home .banner-section .banner-text,
.overlay-banner-home .banner-section .common-button {
  text-align: center;
  z-index: 1;
}
.overlay-banner-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 500px) {
  .overlay-banner-home .banner-text {
    max-width: 400px;
  }
}
.overlay-banner-home:not(.common-banner, .how-it-works-section) {
  height: calc(100vh - 114px);
}

@media only screen and (max-width: 991px) {
  .overlay-banner-home:not(.common-banner, .how-it-works-section) {
    height: calc(100vh - 80px);
  }
}
.common-banner .banner-section {
  padding: 0 60px;
}
.common-banner .title,
.common-banner .paragraph {
  margin: auto;
}
.common-banner .title {
  max-width: 688px;
}
.common-banner .paragraph {
  max-width: 512px;
}

@media only screen and (max-width: 768px) {
  .common-banner {
    height: 100% !important;
  }
}
.post-banner .banner-section {
  min-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.post-banner .category p {
  font-size: 24px;
  font-family: "Neuzeit-Grotesk-Regular";
  text-transform: uppercase;
}

.banner-text {
  position: relative;
}

.how-it-works-section .hiw-col {
  z-index: 1;
  height: 100%;
  min-height: 450px;
  background-color: rgba(36, 36, 36, 0.9);
  padding: 60px 80px;
}
.how-it-works-section .or-div {
  left: 50%;
  background: #fffef8;
  width: 86px;
  height: 86px;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "OrticaLinear-Regular";
  font-size: 30px;
  margin-top: 15px;
}

@media only screen and (max-width: 550px) {
  .how-it-works-section .hiw-col {
    padding: 50px 20px;
  }
  .how-it-works-section .common-button a {
    min-width: 200px;
  }
}
@media only screen and (max-width: 350px) {
  .how-it-works-section .common-button a {
    min-width: 150px !important;
  }
}
.common-button a {
  border: 1px solid #81ad8d;
  background: transparent;
  min-width: 250px;
  padding: 15px 15px;
  text-decoration: none;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2.1px;
  line-height: 19px;
  text-transform: uppercase;
  transition-duration: 0.3s;
}
.common-button a:hover {
  background: #81ad8d;
  color: #fffef8;
  transition-duration: 0.3s;
}
.common-button a:focus {
  outline: none;
}
.common-button a:focus-visible {
  outline: none;
}

.values-slider .owl-item .item {
  transform: scale(0.75);
  transition: all 0.5s;
}
.values-slider .owl-item .item-image {
  position: relative;
}
.values-slider .owl-item .item-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.values-slider .owl-item .item-image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.values-slider .owl-item .item-title h2 {
  z-index: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  font-size: 24px;
  color: #fffef8;
  font-family: "OrticaLinear-Regular";
}
.values-slider .owl-item.active.center .item {
  filter: blur(0);
  transform: scale(1);
  transition: all 0.5s;
}
.values-slider .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  transform: translateX(-50%);
  top: 40%;
  left: 50%;
}
.values-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0%;
  top: 50%;
}
.values-slider .owl-nav .owl-prev span {
  content: url("/wp-content/uploads/2024/04/Group-258.svg");
}
.values-slider .owl-nav .owl-next {
  position: absolute;
  right: 0%;
  top: 50%;
}
.values-slider .owl-nav .owl-next span {
  content: url("/wp-content/uploads/2024/04/Group-257.svg");
}
.values-slider .owl-theme .owl-nav [class*="owl-"] {
  background: transparent;
}
.values-slider .owl-theme .owl-nav.disabled {
  display: block;
}

.values-slider .owl-item.active.center .item-title h2 {
  position: static;
  transform: translate(0%, 0%);
  transition: all 0.1s;
  font-size: 36px;
}
.values-slider .owl-item.active.center .item-image:after {
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

@media only screen and (max-width: 851px) {
  .values-slider .owl-nav {
    top: 40%;
  }
  .owl-item {
    padding: 0 35px;
  }
  .owl-item .item {
    margin: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 501px) {
  .values-slider .owl-nav {
    top: 30%;
  }
  .values-slider .owl-item.active.center .item-title {
    margin-left: -35px;
    margin-right: -35px;
    min-height: 70px;
  }
  .values-slider .owl-item.active.center .item-title h2 {
    font-size: 25px;
  }
}
.parttern-section {
  min-height: 600px;
  position: relative;
}

.parttern-content-section {
  max-width: 600px;
}
.parttern-content-section h2 {
  max-width: 500px;
}
.parttern-content-section p {
  max-width: 600px;
}

.text-with-background:not(.parttern-section) {
  height: 100vh;
  min-height: 600px;
  position: relative;
}
.text-with-background:not(.parttern-section) .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text-with-background:not(.parttern-section) .row div,
.text-with-background:not(.parttern-section) .common-button {
  z-index: 1;
  text-align: center;
}
.text-with-background:not(.parttern-section) .row {
  min-height: 500px;
  max-width: 600px;
  margin: auto;
}

.step-slider .heading-section {
  margin-bottom: 100px;
}
.step-slider .all-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px;
  background-color: #242424;
}
.step-slider .all-steps .steps {
  font-size: 60px;
  padding: 15px;
  position: relative;
  line-height: 0px;
  color: #fffef8;
  font-family: "Neuzeit-Grotesk-Regular";
}
.step-slider .all-steps .steps:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 17px;
  background-size: cover;
  opacity: 0;
  transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transition for top property */
}
.step-slider .all-steps .steps.active:before {
  top: -45px;
  opacity: 1;
  background: url("/wp-content/uploads/2024/07/health-project-indicator-arrow.svg")
    no-repeat center center;
}
.step-slider .steps-section {
  display: none;
  margin-top: 25px;
}
.step-slider .steps-section h1 {
  font-size: 52px;
  max-width: 400px;
}
.step-slider .steps-section .row {
  min-height: 300px;
  display: flex;
  align-items: center;
}
.step-slider .steps-section:nth-child(even) .row {
  flex-direction: row-reverse;
}
.step-slider .visible {
  display: block;
}

@media only screen and (max-width: 851px) {
  .step-slider .all-steps {
    gap: 60px;
  }
  .step-slider .all-steps .steps {
    padding: 15px 0;
  }
  .step-slider .heading-section {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 641px) {
  .step-slider .all-steps {
    gap: 30px;
  }
  .step-slider .all-steps .steps {
    padding: 15px 0;
    font-size: 40px;
  }
}
@media only screen and (max-width: 380px) {
  .step-slider .all-steps {
    gap: 20px;
    flex-wrap: nowrap;
  }
  .step-slider .all-steps .steps {
    padding: 0px 0;
    font-size: 35px;
  }
}
.why-section p:not(.col-section p) {
  max-width: 500px;
  margin: auto;
}
.why-section .col-section img {
  width: 16px;
  margin-bottom: 30px;
}
.why-section .col-section p {
  max-width: 250px;
}

.post-grid-section .post-category-dropdown {
  text-transform: uppercase;
}
.post-grid-section #category-description {
  overflow: hidden;
  max-width: 800px;
  transition: height 0.5s ease-in-out;
  height: 0;
}
.post-grid-section .category-text {
  display: none;
  font-family: "Neuzeit-Grotesk-Regular";
}
.post-grid-section .category-filter {
  gap: 25px;
}
.post-grid-section .category-filter .category-btn:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 17px;
  height: 17px;
  background-size: cover;
  opacity: 0;
  transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.post-grid-section .category-filter .category-btn.active:before {
  top: -25px;
  opacity: 1;
  background: url("/wp-content/uploads/2024/07/health-project-indicator-arrow.svg")
    no-repeat center center;
}
.post-grid-section .category-filter button {
  background-color: transparent;
  color: #fffef8;
  opacity: 0.5;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Neuzeit-Grotesk-Regular";
  min-width: 140px;
}
.post-grid-section .category-filter .active {
  position: relative;
  opacity: 1;
}
.post-grid-section .sort-filter-section label,
.post-grid-section .sort-filter-section #sort-filter {
  font-size: 18px;
  font-family: "Neuzeit-Grotesk-Regular";
  color: #fffef8;
  text-transform: uppercase;
}
.post-grid-section .sort-filter-section #sort-filter {
/*   margin-left: 25px; */
}
.post-grid-section .sort-filter-section select {
  letter-spacing: 2px;
  border: none;
  background-color: #242424;
  color: #fffef8 !important;
  font-size: 18px;
  font-family: "Neuzeit-Grotesk-Regular";
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/wp-content/uploads/2024/06/Group-303.svg");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 10px;
  cursor: pointer;
  padding-right: 25px;
  padding-left: 25px;
}
.post-grid-section .sort-filter-section select:focus-visible {
  outline: none;
}
.post-grid-section .sort-filter-section select option {
  color: #fffef8;
}
.post-grid-section .grid-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}
.post-grid-section .grid-container .pagination {
  display: flex;
  grid-column: 1/-1;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
}
.post-grid-section .grid-container .pagination .page-numbers {
  color: #fffef8;
  font-family: "Neuzeit-Grotesk-Regular";
  opacity: 0.5;
}
.post-grid-section .grid-container .pagination .page-numbers:hover {
  opacity: 1;
}
.post-grid-section .grid-container .pagination .next,
.post-grid-section .grid-container .pagination .prev {
  opacity: 1;
}
.post-grid-section .grid-container .pagination .current {
  color: #fffef8;
  opacity: 1;
}
.post-grid-section .grid-container .pagination a {
  text-decoration: none;
}
.post-grid-section .grid-container .more-text {
  letter-spacing: 0.24px;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 18px;
  color: #fffef8;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: flex;
  grid-column: 1/-1;
  text-align: center;
  flex-direction: row;
  justify-content: center;
}
.post-grid-section .grid-container .featured-image {
  aspect-ratio: 4/3;
}
.post-grid-section .grid-container .featured-image:hover .post-overlay {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.post-grid-section .grid-container .featured-image .post-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fffef8;
  font-size: 18px;
  font-family: "Neuzeit-Grotesk-Regular";
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.post-grid-section .grid-container .featured-image .post-overlay::after {
  content: url("/wp-content/uploads/2024/04/Group-257.svg");
  padding: 8px 0px 0px 10px;
}
.post-grid-section .grid-container .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.post-grid-section .grid-container .activity-categories,
.post-grid-section .grid-container .locations-categories,
.post-grid-section .grid-container .trainers-categories,
.post-grid-section .grid-container .news-categories {
  text-align: right;
  text-transform: uppercase;
  min-height: 43px;
  font-family: "Neuzeit-Grotesk-Regular";
  letter-spacing: 0.24px;
  line-height: 21px;
}
.post-grid-section .grid-container .title {
  min-height: 86px;
}

@media only screen and (max-width: 991px) {
  .post-grid-section .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.discover-more-section .dm-col-img {
  aspect-ratio: 4/3;
}
.discover-more-section .dm-col-img img {
  width: 100%;
}
.discover-more-section .normal-button {
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Regular";
  letter-spacing: 2.1px;
}
.discover-more-section .normal-button span {
  padding-left: 10px;
}

.video-section .quote p {
  font-family: "OrticaLinear-Regular";
  font-size: 24px;
  line-height: 36px;
}
.video-section .video-2 {
  max-width: 800px;
}

.image-text-two-column .content-section {
  width: 80%;
  padding: 0 25px;
  height: 100%;
}
.image-text-two-column .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 650px;
}
.image-text-two-column .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.image-text-two-column .quote p {
  font-family: "OrticaLinear-Regular";
  font-size: 24px;
  line-height: 36px;
}

@media only screen and (max-width: 991px) {
  .image-text-two-column .content-section {
    width: 100%;
  }
  .image-text-two-column .image {
    height: 400px;
  }
}
.repeater-content .repeater-item .heading p {
  font-family: "OrticaLinear-Regular";
  font-size: 26px;
}
.repeater-content .repeater-item ul {
  margin: 0;
  padding-left: 0px;
  list-style: none;
}
.repeater-content .repeater-item ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.repeater-content .repeater-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("/wp-content/uploads/2024/07/health-project-bulletpoint.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form-post .text-max-width {
  max-width: 500px;
}
.contact-form-post .form-message p {
  color: #d0bb98;
  font-family: "Neuzeit-Grotesk-Black";
  font-size: 24px;
  letter-spacing: 1px;
}
.contact-form-post .all-forms {
  background-color: #242424;
}
.contact-form-post .all-forms .form-text {
  max-width: 500px;
  margin: auto;
}
.contact-form-post .all-forms p {
  margin-bottom: 25px;
}
.contact-form-post .all-forms select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: url("/wp-content/uploads/2024/06/Group-304.svg") !important;
  background-repeat: no-repeat !important;
  background-position-x: 98% !important;
  background-position-y: 5px !important;
}
.contact-form-post .all-forms select option {
  background: #242424;
}
.contact-form-post .all-forms input:not(.submit-btn input),
.contact-form-post .all-forms select,
.contact-form-post .all-forms textarea {
  width: 95%;
  height: 25px;
  background: transparent;
  border-bottom: 1px solid #707070;
  border-width: 0 0 1px 0;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Light";
  letter-spacing: 2px;
  color: #fffef8;
  font-weight: 300;
}
.contact-form-post .all-forms input:not(.submit-btn input)::-moz-placeholder,
.contact-form-post .all-forms select::-moz-placeholder,
.contact-form-post .all-forms textarea::-moz-placeholder {
  opacity: 1;
  color: #fffef8;
}
.contact-form-post .all-forms input:not(.submit-btn input)::placeholder,
.contact-form-post .all-forms select::placeholder,
.contact-form-post .all-forms textarea::placeholder {
  opacity: 1;
  color: #fffef8;
}
.contact-form-post .all-forms input:not(.submit-btn input):focus-visible,
.contact-form-post .all-forms select:focus-visible,
.contact-form-post .all-forms textarea:focus-visible {
  outline: none;
}
.contact-form-post .all-forms textarea {
  height: 60px;
  width: 97.5%;
}
.contact-form-post .all-forms .submit-btn {
  position: relative;
  margin-top: 20px;
}
.contact-form-post .all-forms .submit-btn input {
  border: 1px solid #81ad8d;
  background: transparent;
  min-width: 250px;
  border-radius: 0;
  padding: 15px 60px;
  text-decoration: none;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  font-weight: 400;
  color: #fffef8;
  letter-spacing: 2.1px;
  line-height: 19px;
  text-transform: uppercase;
}
.contact-form-post .all-forms .submit-btn input:hover {
  background: #81ad8d;
  color: #fffef8;
}
.contact-form-post .all-forms .submit-btn .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  margin: auto;
}
.contact-form-post .all-forms .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 13px;
  font-weight: normal;
  display: block;
  text-align: left;
  padding-left: 10px;
}
.contact-form-post .all-forms .privacy a {
  color: #fffef8;
  font-size: 12px;
  text-transform: uppercase;
}
.contact-form-post .all-forms .privacy a:hover {
  color: #fffef8;
}
.contact-form-post .all-forms .wpcf7-response-output {
  border: none;
  color: #d0bb98;
}

@media only screen and (max-width: 768px) {
  .contact-form-post input:not(.submit-btn input),
  .contact-form-post select,
  .contact-form-post textarea {
    width: 100% !important;
  }
  .custom-width-section .all-forms
	{
	margin-left:-35px;
	margin-right:-35px;
	}
	
}
#ui-datepicker-div {
  background-color: #242424;
  color: #fffef8;
}
#ui-datepicker-div .ui-state-default {
  background-color: #141414;
  color: #fffef8;
}
#ui-datepicker-div .ui-state-active {
  background: #fffef8;
  color: #141414;
  border: 1px solid #fffef8;
}

.post-navigation .all-btn {
  width: 120px;
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Regular";
}
.post-navigation .all-btn a {
  color: #fffef8;
  margin-top: -25px;
}
.post-navigation .next-prev a {
  text-decoration: none;
}
.post-navigation .post-navigation-link-next,
.post-navigation .post-navigation-link-prev {
  gap: 15px;
  color: #fffef8;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Regular";
}
.post-navigation .prev-arrow,
.post-navigation .next-arrow {
  width: 22px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.post-navigation .prev-arrow {
  background-image: url("/wp-content/uploads/2024/04/Group-258.svg");
}
.post-navigation .next-arrow {
  background-image: url("/wp-content/uploads/2024/04/Group-257.svg");
}

@media only screen and (max-width: 768px) {
  .post-navigation {
    min-height: 150px;
  }
  .post-navigation .all-btn {
    bottom: 20px;
  }
}
.testimonial-section .testimonial-item {
  max-width: 800px;
  margin: auto;
}
.testimonial-section .testimonial-slider .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  transform: translateX(-50%);
  top: 30%;
  left: 50%;
  padding: 0 80px;
}
.testimonial-section .testimonial-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0%;
  top: 50%;
}
.testimonial-section .testimonial-slider .owl-nav .owl-prev span {
  content: url("/wp-content/uploads/2024/04/Group-258.svg");
}
.testimonial-section .testimonial-slider .owl-nav .owl-next {
  position: absolute;
  right: 0%;
  top: 50%;
}
.testimonial-section .testimonial-slider .owl-nav .owl-next span {
  content: url("/wp-content/uploads/2024/04/Group-257.svg");
}

.breadcrumb {
  width: 100%;
  font-family: "Neuzeit-Grotesk-Light";
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb a {
  text-decoration: none;
}

.step-slider .pin-spacer {
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
}
.step-slider .split-letters {
  font-family: "Neuzeit-Grotesk-Black";
  font-size: 60px;
}
.step-slider .gsap-slider {
  position: relative;
  height: 200vh;
  overflow: hidden;
}
.step-slider .gsap-slider .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .testimonial-section .testimonial-item .content-quote-name {
    margin-left: -30px;
    margin-right: -30px;
  }
  .step-slider .gsap-slider #row-1 {
    top: 00px;
  }
  .step-slider .gsap-slider .row {
    align-items: flex-end;
  }
  .step-slider .split-letters {
    font-size: 50px;
  }
}

.step-slider .gsap-slider .row .text,
.step-slider .gsap-slider .row .image {
  width: 45%;
  opacity: 0;
}
.step-slider .gsap-slider .row .image img {
  width: 100%;
  min-width: 500px;
}
.step-slider .gsap-slider .row .text.left {
  order: 1;
}
.step-slider .gsap-slider .row .text.right {
  order: 2;
}
.step-slider .gsap-slider .row .image.left {
  order: 1;
}
.step-slider .gsap-slider .row .image.right {
  order: 2;
}
.step-slider #row-5 {
  height: 100vh;
  display: flex;
  align-items: center;
}
.step-slider #row-5 .text {
  width: 100%;
}
.step-slider .steps-navigation {
  position: sticky;
  top: 112px;
  z-index: 5;
  padding: 150px 0 100px;
  cursor: pointer;
}

@media only screen and (max-width: 1920px) {
  .step-slider .steps-navigation {
    top: 112px;
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .gsap-slider .text,
  .gsap-slider .image {
    width: 100% !important;
  }
  .gsap-slider .image img {
    width: 100% !important;
    min-width: 100% !important;
  }
  .gsap-slider .row:nth-child(odd) img {
    margin-bottom: 200px;
  }
  .gsap-slider .row:nth-child(even) img {
    margin-bottom: 200px;
  }
  .gsap-slider .row:nth-child(even) {
    flex-direction: column-reverse;
    top: 0px;
  }
  .gsap-slider .row .text h1 {
    font-size: 30px !important;
    line-height: 41px;
  }
  .step-slider .steps-navigation {
    top: 79px;
  }
}
.all-forms .select2-container {
  width: 95% !important;
}
.all-forms .contact-reason .select2-container {
  width: 97% !important;
}

@media only screen and (max-width: 768px) {
  .all-forms .select2-container {
    width: 100% !important;
  }
}
/* Dropdown Styles */
.select2-results {
  background-color: #242424 !important;
}

.select2-results__options {
  padding: 0 10px !important;
}

.select2-results__option {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-width: 0 0 1px 0 !important;
  text-transform: uppercase;
  font-family: "Neuzeit-Grotesk-Light" !important;
  font-size: 14px !important;
}

.select2-results__option:last-child,
.select2-dropdown {
  border: none !important;
}

.select2-search--dropdown {
  display: none;
}

/* Single Selection Styles */
.select2-container--default .select2-selection--single,
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  background-color: transparent;
  letter-spacing: 2px !important;
  border: 0 !important;
  border-radius: 0;
  padding-left: 1px !important;
  color: #fffef8 !important;
  font-size: 14px !important;
  text-align: left;
  font-family: "Neuzeit-Grotesk-Light";
  position: relative;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("/wp-content/uploads/2024/06/Group-303.svg");
  background-repeat: no-repeat;
  background-position: 100% 10px;
  text-transform: uppercase;
}

.all-forms .select2-container--default .select2-selection--single {
  border-bottom: 1px solid #707070 !important;
}

/* Highlighted Option Styles */
.select2-results__option--highlighted,
.select2-results__option[aria-selected="true"] {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff;
}

.sticky-section .sticky-buttons {
  position: relative;
  width: 100%;
  z-index: 2;
  top: 200px;
}
.sticky-section .sticky-buttons .left-buttons {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: -99.6px;
  gap: 250px;
  width: 0;
}
.sticky-section .sticky-buttons .right-button {
  position: fixed;
  bottom: -308px;
  transform: translateY(-50%);
  right: 15px;
}
.sticky-section .sticky-buttons .t-btn {
  position: relative;
  text-align: center;
  transform: rotate(270deg);
  border-radius: 0px;
  padding: 0px;
  width: 255px;
  height: 55px;
  display: flex;
  font-family: "Neuzeit-Grotesk-Regular";
  font-size: 14px;
  letter-spacing: 2.1px;
  justify-content: center;
  align-items: center;
  border: 1px solid #81ad8d;
  cursor: pointer;
  margin-bottom: 10px;
}
.sticky-section .sticky-buttons .t-btn a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sticky-section .sticky-buttons .btn-1 {
  background: rgba(20, 20, 20, 0.75);
}
.sticky-section .sticky-buttons .btn-1:hover {
  background: #81ad8d;
}
.sticky-section .sticky-buttons .btn-2 {
  background: #81ad8d;
}
.sticky-section .sticky-buttons .btn-2:hover {
  background: rgba(20, 20, 20, 0.75);
}
.sticky-section .sticky-buttons .btn-3 {
  background: rgba(20, 20, 20, 0.75);
}
.sticky-section .sticky-buttons .btn-3:hover {
  background: #81ad8d;
}
.sticky-section .sticky-buttons .btn-wa {
  position: relative;
}
.sticky-section .fixed-btn-2 {
  position: absolute;
  top: 200vh;
  transform: translateY(-50%);
  width: 100%;
  z-index: 6;
}
.sticky-section .fixed-btn,
.sticky-section .fixed-btn-3 {
  position: fixed;
  top: 55%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 6;
}

@media only screen and (max-width: 768px) {
  .fixed-btn-2 {
    top: 225vh;
  }
  .right-button {
    bottom: -301px;
    right: 10px;
  }
  .btn-wa {
    width: 40px;
  }
}
@media (max-width: 1450px) and (min-width: 1280px) {
  .footer-signup-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}