/*

Tooplate 2119 Gymso Fitness

https://www.tooplate.com/view/2119-gymso-fitness

*/

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Regular.woff2') format('woff2'),
          url('../fonts/Plain-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Light.woff2') format('woff2'),
          url('../fonts/Plain-Light.woff') format('woff');
      font-weight: 300;
      font-style: normal;
  }

  @font-face {
      font-family: 'Plain';
      src: url('../fonts/Plain-Bold.woff2') format('woff2'),
          url('../fonts/Plain-Bold.woff') format('woff');
      font-weight: bold;
      font-style: normal;
  }

  :root {
    --primary-color:        #f13a11;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;

    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Plain', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;

    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100%;
    --border-radius-small:  2px;
  }


  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
  }

  h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    color: var(--gray-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
  }

  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
  }

  b, 
  strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
  }

  .section {
    padding: 3rem 0;
  }


  /* BUTTON */

  .custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .custom-btn:hover {
    color: var(--primary-color);
  }

  .custom-btn:focus {
    box-shadow: none;
  }

  .custom-btn.bordered:hover,
  .custom-btn.bordered:focus,

  .custom-btn.bg-color:hover,
  .custom-btn.bg-color:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
  }

  .bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .bg-color {
    background: var(--primary-color);
    color: var(--white-color);
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
  }


  /* BG OVERLAY */

  .bg-overlay {
    /* background: var(--dark-color); */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  }


  /*---------------------------------------
     MODAL              
  -----------------------------------------*/

  .modal-content {
    padding: 2rem 3rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    border: 0;
    padding: 0;
  }

  .membership-form a {
    color: var(--primary-color);
  }


  /*---------------------------------------
    FEATURE          
  -----------------------------------------*/

  .feature {
    background: var(--dark-color);
    padding: 5rem 0;
  }


  /*---------------------------------------
     MENU             
  -----------------------------------------*/

  .navbar {
    background: var(--dark-color);
    padding: 1rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
  }

  .nav-item .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
  }

  .nav-item .nav-link.active,
  .nav-item .nav-link:hover {
    color: var(--primary-color);
  }

  .navbar .social-icon li a {
    color: var(--white-color);
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }

  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    background-image: url('../images/back3.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
  }


  /*---------------------------------------
     CLASS               
  -----------------------------------------*/

  .class-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 0 0 2px 2px;
    padding: 1rem 1rem;
    position: relative;
  }

  .class-info img {
    border-radius: 2px 2px 0 0;
  }

  .class-info strong {
    color: var(--gray-color);
  }

  .class-price {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
  }


  /*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

  .schedule {
    background: var(--dark-color);
  }

  .schedule-table {
    display: table;
    border: 0;
    text-align: center;
  }

  .schedule-table strong,
  .schedule-table span {
    display: block;
    text-align: center;
  }

  .schedule-table strong {
    color: var(--white-color);
  }

  .schedule-table span {
    color: var(--gray-color);
  }

  .schedule-table span,
  .schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
  }

  .schedule-table small {
    position: relative;
    top: 10px;
  }

  .table .thead-light th,
  .schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
  }

  .schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
  }

  .table-bordered td, 
  .table-bordered th {
    border: 1px solid #212122;
  }

  .table-bordered td {
    padding-bottom: 22px;
  }

  .table td, .table th {
    padding: 1rem;
  }


  /*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

  .about {
    background: var(--about-bg-color);
  }

  .about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
  }

  .about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
  }

  .team-thumb {
    position: relative;
  }

  .team-info {
    background: var(--white-color);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
  }

  .team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
  }

  .team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .team-info .social-icon li {
    display: block;
  }


  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .webform input,
  button#submit-button {
    height: calc(2.25rem + 20px);
  }

  .form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
  }

  .form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
  }

  button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  button#submit-button:hover {
    background: #28a745;
  }

  .contact h2 + p {
    max-width: 90%;
  }

  .google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .google-map iframe {
    width: 100%;
  }


  /*---------------------------------------
     Section one               
  -----------------------------------------*/
  .section-one .heading-one{
    background-color: #ffba03;
    font-size: 2.5rem;
    padding: 20px 10px 30px 10px;
  }

  .section-one .heading-two{
    font-size: 3.75rem;
    line-height: 1;
    color: #fff;
  }

  .section-one .heading-three{
    font-size: 3rem;
    line-height: 1;
  }

  .section-one .heading-four{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .color-red{
    color: #dc3545;
  }

  .color-bg-red{
    background-color: #dc3545;
  }

  .btn-red-color{
    background-color: #dc3545;
    color: #fff;
    padding: 10px;
    font-size: 22px;
  }

  .btn-gold-color{
    background-color: #28a745;
  }

  .rounded-full {
    border-radius: 9999px;
}
.overflow-hidden {
    overflow: hidden!important;
}

.pop_image {
    animation: zoom-in-zoom-out 1.2s cubic-bezier(.9,.7,.5,.9) infinite;
}
.w-28 {
    width: 4rem;
}
.animated h3 {
  font-size: 1.25rem;
    line-height: 2rem;
}

#contactFormLabel{
  font-size: 1.25rem;
}

#contactForm .modal-header{
    border-bottom: 1px solid #ced4da;
    padding-bottom: 20px;
}


@keyframes glowing {
  0% {
    background-color: #28a745;
    box-shadow: 0 0 5px #28a745;
    transform: scaleX(1);
  }
  50% {
    background-color: #28a745;
    box-shadow: 0 0 20px #28a745;
    -webkit-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);
  }
  100% {
    background-color: #ffc107;
    box-shadow: 0 0 5px #ffc107;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.blink-btn {
  animation: glowing 1000ms infinite;
}

.mobile-device{
    display: none;
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
  }

  .social-icon li a:hover {
    color: var(--primary-color);
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 992px) {

    .section {
      padding: 4rem 0;
    }

    .nav-item .nav-link {
      padding: 6px;
    }

    .navbar .social-icon {
      margin-top: 22px;
    }

    .navbar-collapse,
    .site-footer {
      text-align: center;
    }

    .schedule-table {
      display: block;
    }

    .modal-content {
      padding: 2rem;
    }
  }

  @media screen and (max-width: 767px) {

    #videoDemo .carousel-inner iframe{
      width: 100%;
      height: 100%;
    }
    .mobile-device{
      display: block;
    }
    .web-device{
      display: none;
    }

    .mobile-device .row{
        position: relative !important;
        height: 50px;
    }
    .mobile-device .row .col-md-4 img{
      height: 100px;
      position: absolute;
      bottom: -5px;
      left: 0px;
    }

    .mobile-device .row .col-md-8{
      position: absolute;
      right: 0px;
      bottom: -1px;
      text-align: right !important;
    }
    .mobile-device .row .col-md-8 .blink-btn{
        width: 150px !important;
    }

    h1 {
      font-size: 38px;
    }

    .about-working-hours {
      border-left: 0;
      padding: 22px 0 0 0;
    }

    .contact h2 span {
      display: block;
    }
  }
/* New order form style */

/* ===== Center Order Form Section ===== */
.order-center-section {
  width: 100%;
  background: #f7f2eb;
  padding: 45px 0 70px;
}

.order-center-section .container {
  max-width: 1180px;
}

.order-main-heading {
  color: #8d0b27;
  font-size: 46px;
  line-height: 1.22;
  font-weight: 900;
  margin: 0 0 35px;
  text-align: center;
}

.new-order-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 42px 36px 46px;
  box-shadow: 0 0 20px rgba(0,0,0,0.22);
  text-align: center;
}

.new-order-form .order-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.new-order-form .old-price {
  color: #999999;
  font-size: 42px;
  font-weight: 900;
  text-decoration: line-through;
  line-height: 1;
}

.new-order-form .new-price {
  color: #000000;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.new-order-form .today-offer {
  display: inline-block;
  background: #e60000;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  border-radius: 50px;
  padding: 14px 42px;
  margin: 0 auto 40px;
}

.new-order-form .form-control {
  width: 100%;
  height: 58px;
  border: 1px solid #777777;
  border-radius: 4px;
  background: #ffffff;
  font-size: 25px;
  color: #333333;
  padding: 10px 18px;
  margin: 0 0 26px;
  box-shadow: none;
}

.new-order-form .form-control::placeholder {
  color: #777777;
  opacity: 1;
}

.new-order-form .submit-button,
.new-order-form button[type="submit"] {
  height: 70px;
  background: #ff0000;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
  cursor: pointer;
}

.new-order-form .submit-button:hover,
.new-order-form button[type="submit"]:hover {
  background: #df0000;
}

.new-order-form .blink-btn {
  animation: none;
}

#contactForm .modal-content {
  border: none !important;
  border-radius: 18px;
  box-shadow: none;
}

@media (max-width: 991px) {
  .order-main-heading {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .order-center-section {
    padding: 34px 0 55px;
  }

  .order-main-heading {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .new-order-form {
    max-width: 100%;
    padding: 28px 20px 32px;
    border-radius: 16px;
  }

  .new-order-form .order-price-row {
    gap: 10px;
  }

  .new-order-form .old-price {
    font-size: 28px;
  }

  .new-order-form .new-price {
    font-size: 42px;
  }

  .new-order-form .today-offer {
    font-size: 20px;
    padding: 10px 26px;
    margin-bottom: 30px;
  }

  .new-order-form .form-control {
    height: 52px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .new-order-form .submit-button,
  .new-order-form button[type="submit"] {
    height: 60px;
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .new-order-form .old-price {
    font-size: 24px;
  }

  .new-order-form .new-price {
    font-size: 36px;
  }

  .new-order-form .today-offer {
    font-size: 18px;
    padding: 10px 18px;
  }
}


/* Ingredient Section */
.ingredient-section {
  background: #f7f1e9;
  padding: 60px 0 45px;
}

.ingredient-main-heading {
  color: #8b001f;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.ingredient-sub-heading {
  color: #8b001f;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 36px;
}

.ingredient-card-row {
  justify-content: center;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 390px;
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.ingredient-img-box {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-img-box img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.ingredient-card h3 {
  color: #8b001f;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 0;
}

@media (max-width: 991px) {
  .ingredient-main-heading {
    font-size: 40px;
  }

  .ingredient-sub-heading {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .ingredient-section {
    padding: 45px 0 28px;
  }

  .ingredient-main-heading {
    font-size: 32px;
  }

  .ingredient-sub-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .ingredient-card {
    min-height: 340px;
    padding: 24px 14px 20px;
  }

  .ingredient-img-box {
    height: 230px;
  }

  .ingredient-img-box img {
    max-height: 220px;
  }

  .ingredient-card h3 {
    font-size: 26px;
  }
}

/* ================= INGREDIENTS SECTION ================= */
.ingredients-section {
  width: 100%;
  background: #f6f1ea;
  padding: 55px 12px 65px;
  font-family: Arial, Helvetica, sans-serif;
}

.ingredients-heading-wrap {
  max-width: 1100px;
  margin: 0 auto 34px;
}

.ingredients-heading-wrap h1 {
  margin: 0 0 12px;
  color: #8b001f;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 800;
}

.ingredients-heading-wrap h3 {
  margin: 0;
  color: #3b1a12;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
}

.ingredients-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 26px 15px 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.ingredient-img-box {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.ingredient-card h2 {
  margin: 14px 0 0;
  color: #8b001f;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  text-shadow: 1px 2px 2px rgba(0,0,0,.18);
}

@media (max-width: 991px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-heading-wrap h1 {
    font-size: 36px;
  }
  .ingredients-heading-wrap h3 {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .ingredients-section {
    padding: 38px 10px 45px;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ingredient-card {
    min-height: 330px;
    padding: 22px 12px 16px;
  }
  .ingredient-img-box {
    height: 245px;
  }
  .ingredient-card h2 {
    font-size: 25px;
  }
  .ingredients-heading-wrap h1 {
    font-size: 30px;
  }
  .ingredients-heading-wrap h3 {
    font-size: 18px;
  }
}

/* ================= OLD SECTIONS - MATCH NEW DESIGN ================= */
:root {
  --page-bg-soft: #f6f1ea;
  --page-maroon: #8b001f;
  --page-dark-text: #3b1a12;
  --page-card-bg: #ffffff;
  --page-red: #e30000;
}

body {
  background: var(--page-bg-soft) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--page-dark-text) !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: Arial, Helvetica, sans-serif !important;
  color: var(--page-maroon) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body p,
body li,
body div {
  font-family: Arial, Helvetica, sans-serif !important;
}

p {
  color: var(--page-dark-text) !important;
  font-weight: 600 !important;
}

.health-secret-section,
.hero,
.feature,
.about,
.class,
.schedule,
.ingredient-section,
.ingredients-section {
  background-color: var(--page-bg-soft) !important;
}

.health-header {
  background: var(--page-red) !important;
  color: #ffffff !important;
}

.health-header *,
.health-title,
.health-logo {
  color: #ffffff !important;
}

.health-badge {
  background: #ffffff !important;
  color: var(--page-maroon) !important;
}

.health-content,
.health-content p,
.health-note,
.health-note p {
  color: var(--page-dark-text) !important;
}

.hero {
  background-image: linear-gradient(rgba(246,241,234,.86), rgba(246,241,234,.92)), url('../images/back3.webp') !important;
  min-height: auto !important;
  padding: 60px 0 !important;
}

.section-one .heading-one,
.section-one .heading-two,
.section-one .heading-three,
.section-one .heading-four {
  color: var(--page-maroon) !important;
  background: transparent !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.color-red,
.text-white .color-red,
span.color-red {
  color: var(--page-maroon) !important;
}

.feature .class-thumb,
.class .carousel,
.about .card,
.about section .card,
.schedule .container,
.class-info {
  background: var(--page-card-bg) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.08) !important;
  overflow: hidden;
}

.feature h2,
.feature h3,
.feature p,
.schedule h1,
.schedule h2,
.schedule h3,
.schedule p,
.schedule .text-white,
.about h1,
.about h2,
.about h3,
.about p,
.class h1,
.class h2,
.class h3,
.class p {
  color: var(--page-maroon) !important;
}

.feature .class-info p,
.about p,
.class p,
.schedule p {
  color: var(--page-dark-text) !important;
}

.feature .class-info img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 12px;
}

.btn-red-color,
.btn-gold-color,
.btn-warning,
.submit-button,
.order-scroll {
  background: var(--page-red) !important;
  border-color: var(--page-red) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.site-footer,
.site-footer.bg-dark {
  background: var(--page-maroon) !important;
  color: #ffffff !important;
}

.site-footer p,
.site-footer a,
.site-footer * {
  color: #ffffff !important;
}

.about section[style] {
  background-color: transparent !important;
}

@media (max-width: 991px) {
  .hero { padding: 45px 0 !important; }
  .section-one .heading-two { font-size: 44px !important; }
  .section-one .heading-three { font-size: 34px !important; }
}

@media (max-width: 767px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 22px !important; }
  p { font-size: 16px !important; }
  .section { padding: 2.2rem 0 !important; }
  .section-one .heading-one { font-size: 28px !important; padding: 14px 8px !important; }
  .section-one .heading-two { font-size: 34px !important; }
  .section-one .heading-three { font-size: 28px !important; }
  .section-one .heading-four { font-size: 20px !important; line-height: 1.35 !important; }
  .feature { padding: 2.8rem 0 !important; }
  .feature .class-thumb { margin-bottom: 16px; }
  .btn-red-color { font-size: 18px !important; }
}


.trial-pack-section{
    background:#fff;
    padding:60px 20px;
}

.trial-pack-container{
    max-width:950px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.offer-banner{
    background:#e60000;
    color:#fff;
    font-size:42px;
    font-weight:700;
    padding:18px;
    border-radius:8px;
    margin-bottom:45px;
}

.trial-price{
    font-size:72px;
    font-weight:800;
    color:#000;
    margin-bottom:40px;
}

.trial-price span{
    font-weight:900;
}

.trial-image img{
    max-width:420px;
    width:100%;
    height:auto;
}

.trial-btn{
    display:inline-block;
    margin-top:35px;
    background:#007a2f;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    transition:.3s;
}

.trial-btn:hover{
    background:#046625;
}

@media(max-width:768px){

.offer-banner{
    font-size:26px;
    padding:14px;
}

.trial-price{
    font-size:52px;
}

.trial-image img{
    max-width:300px;
}

.trial-btn{
    font-size:22px;
    padding:15px 35px;
}

}

@media(max-width:480px){

.trial-pack-section{
    padding:40px 15px;
}

.offer-banner{
    font-size:20px;
    line-height:1.4;
}

.trial-price{
    font-size:42px;
}

.trial-image img{
    max-width:240px;
}

.trial-btn{
    width:100%;
    max-width:280px;
    font-size:20px;
}

}