/*
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;
}

/* 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 {
  font-family: system-ui;
  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;
}
.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;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.wp-block-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.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;
  }
}
