/*
Theme Name: Framewrk
Author: Matt Lewis
Author URI: https://locuswebmarketing.com/
Version: 1.1.3
*/

/* Base 
  ------------------------ */
* {
  text-decoration: none;
  box-sizing: border-box;
}
html,
body {
  font-family: "DM Sans", sans-serif !important;
  margin: 0;
}
.container {
  width: 1280px;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

/* MISC */
.wc-block-mini-cart__drawer a {
  outline: none !important;
  box-shadow: none !important;
}

/* Header */
.header-01 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-01 img {
  height: 42px;
  width: auto;
  transition: all 0.3s ease;
  transform: translateY(1px);
}
.header-01 nav.left {
  margin-left: 2.5rem;
  padding-left: 2.5rem;
  margin-right: auto;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.header-01 nav.right {
  margin-right: 2.75rem;
  margin-left: auto;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.header-01 nav ul {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.header-01 nav ul li {
  list-style: none;
  position: relative;
}
.header-01 nav ul li a {
  color: #212121;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  padding: 2.15rem 0;
  display: block;
  transition: all 0.3s ease;
}
.header-01 nav ul li a:hover {
  color: var(--primary);
}
.header-01 nav ul.sub-menu {
  display: grid;
  position: absolute;
  background: white;
  padding: 1.5rem;
  top: 100%;
  left: -12px;
  min-width: 225px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  pointer-events: none;
  transform: translateY(-12px);
  opacity: 0;
  transition: all 0.3s ease;
}
.header-01 nav li.menu-item-has-children a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Sharp";
  display: inline-flex;
  margin-left: 0.5rem;
  font-size: 0.65rem;
  opacity: 0.5;
}
.header-01 nav li.menu-item-has-children ul.sub-menu a {
  padding: 0;
}
.header-01 nav li.menu-item-has-children ul.sub-menu a::after {
  display: none;
}
.header-01 nav ul.sub-menu a {
  padding: 0;
}
.header-01 nav li.menu-item-has-children:hover ul.sub-menu {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: auto;
}
.header-01 .mobile-trigger {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  padding: 0;
  color: #212121;
}
.header-01 .widgets {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wp-block-button__link img {
  height: 0.9rem !important;
  width: auto !important;
}
@media (min-width: 992px) {
  .header-01.scrolled nav ul li a {
    padding: 1.5rem 0;
  }
  .header-01.scrolled img {
    height: 36px;
  }
}
@media (max-width: 992px) {
  .header-01 {
    padding: 1rem 0;
  }
  .header-01 nav {
    display: none;
  }
  .header-01 .widgets {
    display: none;
  }
  .header-01 img {
    height: 32px;
  }
  .header-01 .mobile-trigger {
    display: block;
  }
}

/* Pill Header
  ------------------------ */
.header-01.pill {
  position: fixed;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 1rem;
  left: 0;
  right: 0;
  top: 1.25rem;
}
.header-01.pill .container {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}
.header-01.pill .sub-menu {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
@media (max-width: 992px) {
  .header-01.pill {
    position: sticky;
    top: 0;
    left: 0;
    border-radius: 0;
  }
}

/* Overlay Header
  ------------------------ */
.header-01.fixed {
  position: absolute;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  width: 100%;
}
.header-01.fixed ul li a,
.header-01.fixed svg {
  color: white;
}
.header-01.fixed nav.left {
  border-color: rgba(255, 255, 255, 0.1);
}
.header-01.fixed nav li.menu-item-has-children ul.sub-menu a {
  color: #212121;
}
.header-01.fixed nav li.menu-item-has-children ul.sub-menu a:hover {
  color: var(--primary);
}

/* Buttons
  ------------------------ */
.button,
.wp-block-button__link {
  background-color: var(--primary);
  color: #212121;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.button:hover,
.wp-block-button__link:hover {
  filter: brightness(110%);
  gap: 1rem;
}

/* Mobile Navigation
  ------------------------ */
.mobile-navigation {
  position: fixed;
  top: 0;
  background: #f9f9f9;
  height: auto;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 8;
  padding-top: 4.5rem;
  padding-bottom: 1.25rem;
  top: -100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.mobile-navigation.active {
  top: 0;
  pointer-events: initial;
  opacity: 1;
}
.mobile-navigation ul {
  margin: 0;
  padding: 0;
  display: grid;
}
.mobile-navigation ul li {
  list-style: none;
}
.mobile-navigation ul li a {
  color: #212121;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1.25rem;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-navigation ul.sub-menu {
  display: none;
}
.mobile-naviation .wp-block-buttons > .wp-block-button {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.mobile-navigation .wp-block-buttons {
  justify-content: center;
  margin-top: 1.25rem;
}
.mobile-navigation li.menu-item-has-children a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Sharp";
  display: inline-flex;
  margin-left: 0.5rem;
  font-size: 0.65rem;
  opacity: 0.5;
}
.mobile-navigation .wc-block-mini-cart__button {
  display: none;
}

/* Footer 01 
  ------------------------ */
footer.footer-01 {
  background: var(--secondary);
  padding: 2.75rem 0;
  padding-bottom: 1rem;
  color: #ffffff;
}
footer.footer-01 .container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
footer.footer-01 .container div {
  width: 100%;
}
footer.footer-01 ul {
  padding: 0;
}
footer.footer-01 ul li {
  list-style: none;
}
footer.footer-01 ul li a {
  color: #ffffff;
  padding: 0.5rem 0;
  display: block;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
footer.footer-01 a {
  color: #ffffff;
}
footer.footer-01 ul li a:hover {
  color: var(--primary);
}
footer.footer-01 .footer-title {
  font-weight: 500;
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
footer.footer-01 img {
  height: 44px;
  margin-top: 16px;
}
footer.footer-01 p {
  color: white;
  font-size: 14px;
}
footer.footer-01 .company-info p {
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 500;
}
footer.footer-01 .footer-bottom {
  text-align: center;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.footer-01 .footer-bottom p {
  font-weight: 500;
  color: #666;
  font-size: 0.8rem;
}
footer.footer-01 .footer-bottom span {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}
footer.footer-01 .footer-bottom span:first-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
@media (max-width: 992px) {
  footer.footer-01 .container {
    display: grid;
  }
}

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

/* 2025 
  ------------------------ */
/* Base Setup */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

html,
body {
  font-family: "DM Sans" !important;
}

/* Hero Override */
.pmpro {
  padding: 3rem 0;
}
.hero-01 {
  background: var(--secondary) !important;
  padding: 7rem 1rem !important;
  margin-top: 0 !important;
}
.hero-01 h1 {
  font-size: 4rem !important;
  text-align: left;
  margin-top: 150px !important;
}

/* Header */
.header-01 img {
  height: 52px;
}
.current-menu-item a {
  color: var(--primary) !important;
}

/* Typography */

h1,
h2,
h3,
h4 {
  letter-spacing: 0 !important;
  font-weight: 600 !important;
}
.eyebrow {
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-size: 3rem;
  font-weight: 600 !important;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1rem;
}
h3 {
  font-size: 2.5rem;
  line-height: 1;
}
h4 {
  font-size: 22px;
  font-weight: 600 !important;
}
p {
  line-height: 1.5;
  color: #555;
  font-size: 17px;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}

/* Framework */
.button,
.wp-block-button a,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
  color: #212121 !important;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-radius: 8px !important;
  border: none;
}
.vc_column-inner .vc_btn3 {
  background: var(--primary) !important;
}
header .wp-block-buttons > .wp-block-button:first-of-type a {
  color: var(--secondary);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--secondary);
}
header .wp-block-buttons > .wp-block-button:first-of-type a:hover {
  background: var(--secondary);
  color: #fff;
}

/* Doctors Section 
 * ---------------------- */
.doctor-image img {
  width: 100px;
  border: 5px solid white;
  border-radius: 100pc;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.doctor-image {
  margin-bottom: 1rem;
}
.doctor-title h4 {
  margin-bottom: -8px;
  margin-top: 0;
  line-height: 1.1;
  font-size: 20px;
}
.doctor-title p {
  color: #888;
  font-size: 15px;
}

/* Images 
 * ----------------------- */
.has-shadow img {
  position: relative;
  z-index: 4;
}
.has-shadow {
  position: relative;
  box-shadow: 0px 0px 48px 0px var(--primary-transparent);
}
.has-shadow::before {
  content: "";
  width: 65%;
  height: 65%;
  background: var(--primary);
  z-index: 0;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  position: absolute;
  filter: blur(100px);
  opacity: 0.75;
  margin: 0 auto;
  display: none;
  display: none;
}
.has-radius img {
  border-radius: 12px;
}

@media (max-width: 992px) {
  .reversed-mobile {
    order: -1;
  }
}

.bg-primary {
  background: var(--secondary);
}
.cap-logo img {
  height: 30px !important;
  width: auto;
}

.split-section .vc_col-sm-6 {
  padding: 6.5rem;
}
.split-section h3 {
  margin-top: 0;
}
.split-section h3 span {
  font-size: 24px;
}

.testimonial-text h3 {
  color: white;
  font-size: 32px;
  font-weight: 400 !important;
  line-height: 1.065;
}
.testimonial-text h3::after {
  content: '"';
}
.testimonial-text h3::before {
  content: '"';
}
.testimonial-name {
  color: white;
  font-size: 20px;
  margin-bottom: 6px;
}
.cap-stars {
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--primary);
}
.rounded-bottom-right {
  border-bottom-right-radius: 120px;
}

/* Form
 * -------------------- */

.gform_required_legend {
  display: none;
}
.gform-theme--foundation .gform_fields {
  row-gap: 16px !important;
}
.gform_button {
  background: var(--primary) !important;
  color: #212121 !important;
  padding: 17px !important;
  width: 100% !important;
  box-shadow: 0px 0px 48px 0px var(--primary-transparent) !important;
}
.gform-theme--foundation .gfield .ginput_password.large,
.gform-theme--foundation .gfield input.large,
.gform-theme--foundation .gfield select.large {
  inline-size: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 14px !important;
  height: auto;
}

/* Waving Hand */
.wave {
  animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s; /* Change to speed up or slow down */
  animation-iteration-count: infinite; /* Never stop waving :) */
  transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}

/* Contained Form */
.contained-form form {
  padding: 2rem 32px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-radius: 12px;
}

.small-testimonial {
  background: var(--primary-transparent);
  padding: 2rem;
  border-radius: 12px;
}
.small-testimonial .stars {
  letter-spacing: 5px;
  color: var(--primary);
}
.small-testimonial .small-testimonial-name {
  display: block;
  margin-bottom: 0;
}

.small-testimonial p {
  font-weight: 500;
}
.small-testimonial .cap-logo {
  height: 30px;
}
.small-testimonial .name-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

iframe {
  border-radius: 12px !important;
}

/* Phone Section */
.phone-section {
  position: relative;
}
.phone-section img {
  max-width: 100%;
}
.image-01 {
  width: 250px;
  margin-left: 78px;
}
.image-02 {
  z-index: 999;
  right: 20px;
  top: 0;
  border-radius: 12px;
  width: 270px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
.phone-section .phone-img:nth-child(2) {
  position: absolute;
  bottom: -15px;
  right: 50px;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px) !important;
}
.pricing-card .button {
  text-align: center;
  justify-content: center;
  margin-top: 3rem;
}
.pricing-card .price {
  font-weight: 800;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pricing-card .price span {
  color: red;
  font-size: 1.5rem;
  color: #d0d0d0;
}
.pricing-card ul {
  padding: 0;
  padding-left: 5px;
}
.pricing-card ul li {
  padding: 6px 0;
  list-style: none;
}
.pricing-card ul::before {
  content: "/////////////////////////////";
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  display: block;
  color: #888;
  opacity: 0.75;
}
.pricing-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: #888;
  margin-right: 0.5em;
  display: inline-block;
}
.pricing-card p {
  font-size: 16px;
  color: #777;
}
.pricing-card .eyebrow {
  font-size: 18px;
}
.popular {
  border-color: var(--primary);
}
.popular .eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popular .eyebrow::after {
  content: "Most Popular";
  font-size: 10px;
  color: #fff;
  background: var(--primary);
  margin: 0;
  padding: 5px 12px;
  line-height: 1.5;
  border-radius: 100pc;
  transform: translateY(-5px);
}

/* Meal Plans */
.single-meal {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s ease;
}
.single-meal:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  cursor: pointer;
  transform: translateY(-4px);
}
.single-meal h3 {
  margin: 0;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-meal h3 span {
  font-weight: 200;
  opacity: 0.5;
  font-size: 32px !important;
  transition: all 0.3s ease;
}
.single-meal.is-open h3 span {
  transform: rotate(45deg);
}
.single-meal:hover h3 {
  color: var(--primary);
}
.meal-description p {
  font-size: 15px;
  padding: 12px;
}

.plan-buttons {
  display: flex;
  justify-content: center;
}
.plan-buttons button {
  border: none;
  border-bottom: 2px solid;
  padding: 0 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.plan-buttons h4 {
  font-size: 1rem;
}
.plan-buttons button.active {
  color: var(--primary);
}
.plan-buttons button:hover {
  color: var(--primary);
}

/* Toggles */
.vc_toggle_icon {
  display: none !important;
}
.vc_toggle_title h4 {
  font-size: 1.75rem;
  display: flex;
}
.vc_toggle_title {
  padding: 28px !important;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.vc_toggle_title:hover {
  background: var(--primary);
}
.vc_toggle_title h4 {
  padding: 0;
  margin: 0;
}
.vc_toggle_title h4::before {
  content: "+";
  margin-right: 12px;
  font-weight: 300;
  opacity: 0.4;
  display: block;
  transition: all 0.3s ease;
  transition-delay: 0s;
}
.vc_do_toggle {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.vc_toggle_active .vc_toggle_title h4::before {
  transform: rotate(45deg);
}
.vc_toggle_content p {
  padding: 0 !important;
  margin: 0 !important;
}
.vc_toggle_title {
  position: relative !important;
}

.home-logos {
  display: flex;
  width: auto;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem 0;
}
.home-logos img {
  max-width: 100%;
  height: 40px;
  filter: grayscale(1);
  opacity: 0.6 !important;
}
.home-logos img:hover {
  filter: none;
  opacity: 1 !important;
}
.bottom-right-rounded {
  border-bottom-right-radius: 120px;
}

/* Slide Box */
.slide-box {
  background: var(--secondary);
  padding: 3rem 1rem;
  padding-bottom: 1.75rem;
  position: relative;
  border-radius: 12px;
}
.slide-box h3 {
  margin: 0;
  font-size: 26px;
  color: white;
  margin-top: 200px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.slide-box i {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 28px;
  padding: 12px;
  border-radius: 6px;
  color: white;
}
.slide-box h3::after {
  content: "+";
  position: absolute;
  right: 24px;
  font-weight: 200;
  background: var(--primary);
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 100pc;
  display: grid;
  justify-content: center;
  align-items: center;
}
.slide-box {
  transition: all 0.3s ease;
}
.slide-box:hover {
  background: var(--primary);
  cursor: pointer;
}
.slide-box:hover h3::after {
  background: var(--secondary) !important;
}
.slide-box.active h3 {
  margin-top: 50px;
}
.slide-box.active h3::after {
  content: "-";
}
.slide-content {
  margin-top: 32px;
  opacity: 0;
  height: 0;
  transition: all 0.3s ease;
}
.slide-content.active {
  opacity: 1;
  height: auto;
}
.slide-boxes {
  min-height: 460px;
}
.slide-container {
  transform: translateY(50px);
}

/* Applications */
.applications {
  display: grid;
  margin-top: 32px;
  gap: 1px;
  background: #e1e1e1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.applications > div {
  background: white;
  text-align: center;
  padding: 2rem;
}
.applications i {
  font-size: 35px;
  margin-bottom: 16px;
  margin-top: 12px;
  color: var(--primary);
}
.applications h4 {
  margin: 0;
  font-size: 18px;
}
.applications p {
  font-size: 15px;
}

.main-intro-image {
  background-image: url(http://locusdemo.com/nutrition/wp-content/uploads/2025/05/Depositphotos_188146722_L-2-scaled-e1747777161264.jpg);
  background-size: cover !important;
  background-position: center;
}

.home-phones img {
  max-width: 250px;
}
.home-phones {
  position: absolute;
  bottom: -150px;
  left: -35px;
}
.home-phone-2 {
  position: absolute;
  left: 120px;
  bottom: 100px;
}

.home h1 {
  font-size: 4rem;
  line-height: 1;
  margin: 0;
}

@media (max-width: 992px) {
  .split-section .vc_col-sm-6 {
    padding: 2rem;
  }
  .home-phones {
    position: absolute;
    bottom: -250px;
    left: 225px;
    width: 100px !important;
    pointer-events: none;
  }
  .home h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  .slide-boxes .wpb_content_element {
    margin-bottom: 0;
  }
  .slide-boxes {
    margin-bottom: 45px;
  }
  .home-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    justify-items: center;
  }
  .home-logos img {
    height: 30px;
    width: auto;
  }
  .applications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .docs-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .docs-section::before {
    display: none !important;
  }
}

.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  display: none !important;
}
.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: var(--primary) !important;
}
.wp-block-woocommerce-cart,
.wc-block-checkout {
  padding-top: 3rem;
}
.wc-block-checkout {
  padding-bottom: 3rem;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  background-color: var(--primary) !important;
  color: #212121 !important;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
#wpdmi-profile-form input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 14px !important;
  height: auto;
}
#wpdmi-profile-form input[type="submit"] {
  background: var(--primary) !important;
  color: #212121 !important;
  padding: 17px !important;
  width: 100% !important;
  box-shadow: 0px 0px 48px 0px var(--primary-transparent) !important;
}
#wpdmi-profile-form select {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 14px !important;
  height: auto;
}
#wpdmi-profile-form textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 14px !important;
  height: auto;
}
#wpdmi-profile-form .wpdmi-profile-form-field {
  margin-bottom: 1.5rem;
}
#wpdmi-profile-form input[type="submit"] {
  background: var(--primary) !important;
  color: #212121 !important;
  padding: 17px !important;
  width: 100% !important;
  box-shadow: 0px 0px 48px 0px var(--primary-transparent) !important;
  margin-top: 32px !important;
}
#wpdmi-profile-form,
.dm-text {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
#wpdmi-profile-form fieldset {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-radius: 12px;
  padding: 2rem;
}
.wpdmi-instruction {
  display: none !important;
}
h3.sec-my-profile {
  display: none !important;
}

.wp-block-post-title {
  font-size: 26px;
  color: #212121;
}
.wp-block-separator {
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  margin: 12px 0;
}

.post-thumbnail img {
  height: 450px;
  width: 100%;
  min-width: 100%;
  object-fit: cover;
  display: block;
}
.entry-content,
.entry-header,
.entry-footer,
.recent-posts {
  padding: 1rem;
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
.recent-posts {
  width: 1200px;
  margin-bottom: 5rem;
}
.recent-posts h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.recent-posts h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin-top: 0.5rem;
  margin-left: 1rem;
}
.recent-posts h2 {
  display: flex;
  align-items: center;
}
.recent-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #212121;
  width: 80%;
}
.recent-posts {
  padding: 0;
}
.recent-posts-grid {
  display: flex;
  grid-gap: 1.5rem;
}
.recent-posts-grid div {
  width: 100%;
}
.recent-posts-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
.entry-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 0rem;
}
.entry-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.entry-footer p {
  padding: 0;
  margin: 0;
}
.entry-content {
  padding-bottom: 4rem;
}
.entry-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.wp-block-post-template {
  gap: 2.5rem;
}
.wp-block-post {
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.wp-block-post:hover {
  transform: translateY(-4px);
}
.individuals-container {
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: auto !important;
}
.individuals-container.inactive {
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.groups-container {
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.groups-container.active {
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: auto !important;
}
.for-groups {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.for-individuals {
  opacity: 1;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

.terms {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.terms strong {
  font-weight: 600 !important;
}
.vc_toggle_title > h4 {
  display: flex !important;
}

@media (max-width: 992px) {
  .main-intro-image {
    min-height: 400px !important;
  }
  .home-phones {
    position: absolute;
    bottom: -285px;
    left: 25px;
    width: 100px !important;
    pointer-events: none;
  }
  .home-phone-2 {
    position: absolute;
    top: 120px;
    right: -300px;
    left: auto;
  }
  .hero-01 h1 {
    font-size: 2.5rem !important;
  }
  .menu-primary-navigation-container {
    padding-top: 2rem;
  }
}

/* 180 Style - Base
  ------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px !important;
}
h2 span,
h3 span {
  color: var(--secondary) !important;
}
p {
  color: #efefef;
  font-weight: 500 !important;
}
.eyebrow {
  font-family: "Black Han Sans" !important;
  color: white;
  font-size: 18px !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.home-hero .eyebrow,
.cta .eyebrow {
  margin-bottom: 64px !important;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  background: url(https://locusdemo.com/180/wp-content/uploads/2025/07/after.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}
.button {
  display: inline-flex;
  border-radius: 100pc !important;
  background: var(--secondary) !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 1rem 1.5rem !important;
  letter-spacing: 1px !important;
  padding: 12px 24px !important;
  margin-top: 16px !important;
}
.button::after {
  content: "\f0a9"; /* Unicode for fa-circle-arrow-right */
  font-family: "Font Awesome 6 Pro"; /* Or 'Font Awesome 6 Pro' if you're using the Pro version */
  font-weight: 900; /* Required for solid icons */
  margin-left: 0.5em;
  color: #000;
  font-size: 24px;
  border-radius: 100pc;
  padding: 0;
}
.home-hero .eyebrow {
  margin-top: 125px !important;
  margin-bottom: 12px !important;
}

/* 180 Style - Hero 
  ------------------------ */
.home-hero h1 {
  font-size: 4.5rem !important;
}
.home-hero::after,
.hero-01::after {
  content: "";
  display: block;
  width: 150%;
  height: 175px;
  pointer-events: none;
  margin-top: 0.5rem;
  margin-left: 1rem;
  position: absolute;
  bottom: 0;
  left: -50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 4;
}
.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
}
.home-hero-content {
  position: relative;
  z-index: 2;
}

/* 180 Style - Header
  ------------------------ */
.header-01 {
  position: fixed !important;
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 90% !important;
  top: 26px !important;
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(12px) !important;
}
.header-01 a {
  color: #ffffff !important;
  font-family: "Black Han Sans" !important;
  font-weight: 200 !important;
  font-size: 13px !important;
}
header .wp-block-buttons > .wp-block-button:first-of-type a {
  border-radius: 100pc !important;
  border: 2px solid white !important;
  box-shadow: none !important;
  padding-top: 17px !important;
  padding: 10px 24px !important;
  padding-top: 13px !important;
  font-size: 14px !important;
}
.header-01 nav.left {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* 180 Style - Footer
  ------------------------ */
footer {
  background: #000 !important;
}
footer.footer-01 ul li a {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
  color: #c4c4c4 !important;
}

.light-bg p,
.light-bg li {
  color: #666 !important;
}
.light-bg h2 {
  color: #212121 !important;
}

.cta h2 {
  margin-top: -32px;
  font-size: 4rem;
}
.square img {
  height: 500px;
  object-fit: cover;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}
.services h2 {
  color: var(--primary) !important;
}
.services a {
  margin-top: 44px !important;
  display: inline-flex;
}
/* .services a {
  margin-top: 32px;
  color: var(--secondary) !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-size: 14px;
}
.services a:hover {
  gap: 24px;
} */

.max-350 img {
  max-width: 350px !important;
}
.pr-12 {
  padding-right: 75px !important;
}
.pr-big {
  padding-right: 8rem;
}
.team-photo img {
  margin-top: -100px !important;
}

/* Blog Section
  ------------------------ */
.entry-header h1,
.post-meta {
  color: #212121;
}
.hero-01 {
  background: #212121 !important;
  border: none !important;
}

.wp-block-read-more {
  margin-top: 12px;
  background: var(--primary);
  padding: 12px 24px;
  border-radius: 100pc;
  font-weight: 600;
  font-size: 15px;
}
.header-01 nav ul li a,
header .wp-block-buttons > .wp-block-button:first-of-type a {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-01 h1 {
  font-size: 4rem !important;
  text-align: left;
  margin-top: 300px !important;
  position: relative;
  transform: translateY(14px);
}
.page-id-1214 .hero-01 h1 {
  transform: none;
}
.hero-01 .background-image {
  opacity: 0.75 !important;
}
.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important;
}
p strong {
  font-family: "Black Han Sans" !important;
  color: var(--secondary) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}
.home p strong {
  color: white !important;
}

.form-container {
  background: #efefef;
  border-radius: 1.5rem;
  padding: 32px !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 95%;
  margin: 0 auto;
}
.form-container h2 {
  color: var(--secondary) !important;
  margin-bottom: 0;
}
.form-container p {
  color: #292929 !important;
  font-size: 32px;
  margin-top: 4px;
  font-weight: 300 !important;
  text-transform: uppercase !important;
}
.header-01 nav li.menu-item-has-children ul.sub-menu a {
  color: #212121 !important;
}

.hero-01 span {
  display: block;
  position: relative;
}
.hero-01 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 23px;
  background: url(https://locusdemo.com/180/wp-content/uploads/2025/07/after.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -16px;
}

.wpb_wrapper ul {
  display: grid;
  gap: 14px;
  padding-left: 1rem;
}
.wpb_wrapper ul li {
  color: white;
  list-style-type: none;
  text-transform: capitalize;
}
.wpb_wrapper ul li svg,
.wpb_wrapper ul li i {
  color: var(--primary) !important;
  margin-right: 8px;
}
.lr h3 {
  font-size: 36px;
  color: var(--primary);
}

.hero-01 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 23px;
  background: url(https://locusdemo.com/180/wp-content/uploads/2025/07/after.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -16px;
  width: 0;
  transform-origin: left;
  animation: underlineIn 1s ease-out 0.3s forwards;
  animation-delay: 0.45s;
}

.hero-01 h1 {
  margin-bottom: -100px !important;
}

@keyframes underlineIn {
  to {
    width: 100%;
  }
}
.hero-content {
  z-index: 7 !important;
}
@media (max-width: 992px) {
  .hero-01 h1 {
    font-size: 2.5rem !important;
    margin-top: 200px !important;
  }
  .hero-01 span {
    display: inline-block !important;
  }
  .vc_empty_space {
    max-height: 25px;
  }
  .padded {
    padding: 12px !important;
  }
  p,
  .wpb_wrapper ul li {
    font-size: 14px;
  }
}

/* Mobile Menu */
.mobile-navigation {
  background: rgba(0, 0, 0, 0.75);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  backdrop-filter: blur(12px);
}
.mobile-navigation a {
  color: #ffffff !important;
  font-family: "Black Han Sans" !important;
  font-weight: 200 !important;
  font-size: 13px !important;
}
.mobile-navigation .widgets {
  display: none !important;
}
.trainer-section h3 {
  font-size: 31px;
  line-height: 1.2;
}

/* 404 Page */
.error404 {
  background: #000;
}
.four-container h1 {
  margin-top: 150px;
}

/* FAQ Items */
.vc_toggle_title h4::before {
  margin-right: 32px;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 200;
  position: absolute;
  left: -24px;
  top: 32%;
}
.vc_toggle_title h4 {
  transition: all 0.3s ease;
}
.vc_toggle_title:hover {
  background: transparent !important;
}
.vc_toggle_title:hover h4 {
  color: var(--primary);
}
.vc_toggle_content {
  padding-left: 24px !important;
}
.vc_toggle_content p {
  font-weight: 300 !important;
  color: #c1c1c1 !important;
}
.vc_toggle_title {
  padding-bottom: 0 !important;
}
.vc_toggle {
  margin-bottom: 32px !important;
}

.header-01 nav ul.sub-menu {
  gap: 19px;
  padding: 21px;
}
.header-01 nav li.menu-item-has-children ul.sub-menu a:hover {
  color: var(--primary) !important;
}

/* Instructors */
.instructors-container {
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 1280px;
}
.inner__instructor-bio p {
  line-height: 1.5 !important;
  font-size: 16px !important;
  color: #cecece !important;
}
.single__instructor img,
.single__instructor-inner img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0 !important;
}
.single__instructor-name {
  color: white !important;
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 25px !important;
}
.single__instructor-title {
  color: var(--primary) !important;
  font-size: 16px !important;
  margin-bottom: 0.5rem;
  display: block;
  margin-top: 7px !important;
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.single__instructor:hover,
.single__instructor-details {
  background: rgb(31, 31, 31) !important;
}
.inner__instructor-name {
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: white !important;
}
.inner__instructor-title {
  font-size: 16px !important;
  color: var(--primary) !important;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.inner__instructor-bio p {
  line-height: 1.5 !important;
}
.trainer-quote p {
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: white !important;
  font-size: 16px !important;
}
.inner__instructor-questions {
  padding-left: 0 !important;
}
@media (max-width: 992px) {
  .instructors-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.testimonials-block img {
  margin-bottom: -45px;
}
.testimonials-block h3 {
  font-size: 28px;
  margin-bottom: -8px;
  padding-bottom: 0;
}
.testimonials-block p {
  color: var(--primary) !important;
  font-family: "Black Han Sans" !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Benefits Section */
.benefit {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: center;
  padding-left: 22px;
}
.benefit i,
.benefit svg {
  color: white;
  background: rgba(0, 0, 0, 0.2);
}
.benefit i {
  font-size: 26px;
  background: #2e2e2e;
  padding: 12px;
  border-radius: 9px;
}

@media (max-width: 992px) {
  h3 {
    font-size: 25px !important;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 15px !important;
  }
}

.video-block h3 {
  font-size: 28px;
  max-width: 70%;
  line-height: 1.2;
}
.program-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Black Han Sans";
  color: white;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.program-card ul {
  text-align: left;
}

.sub-menu a::after {
  display: none !important;
}
@media (max-width: 992px) {
  .sub-menu {
    background: #000 !important;
  }
}

header .wp-block-buttons > .wp-block-button:first-of-type a {
  background: var(--secondary) !important;
}

.wp-block-social-links .wp-social-link a,
.wp-block-social-links .wp-social-link a:hover {
  border-bottom: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 25px;
  width: 40px;
  height: 40px;
  display: grid;
  justify-content: center;
  color: white !important;
}

.cta p {
  font-size: 17px;
  font-weight: 400 !important;
  color: white;
  margin-top: 0;
  font-family: "Black Han Sans";
}

.why-box {
  padding: 2rem;
  background: var(--secondary);
}
@media (min-width: 992px) {
  .why-box {
    margin-left: -100px;
  }
}
.why-box li {
  list-style: circle;
}
.why-box ::marker {
  color: white;
}

.flex-ul {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.sticky-bar {
  background: var(--primary);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  padding-top: 26px;
  font-size: 26px;
  color: white;
  font-family: "Black Han Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.3s ease;
  bottom: -100%;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}
.sticky-bar.visible {
  bottom: 0;
}

.wp-block-read-more {
  font-family: "Black Han Sans";
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pum-theme-8439 .pum-container,
.pum-theme-cutting-edge .pum-container {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.gform-theme--framework .gform-field-label--type-inline {
  color: white !important;
}
.pum-container img {
  height: 550px !important;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
}
.pum-theme-8439 .pum-content + .pum-close,
.pum-theme-cutting-edge .pum-content + .pum-close {
  background: transparent !important;
  color: #fff !important;
  padding: 12px;
  margin-right: 12px;
  margin-top: 12px;
  font-size: 32px;
}
