/*!
Theme Name: Mak7Fitness
Theme URI: http://underscores.me/
Author: AAAGENCY
Author URI: http://aaagency.ae
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mak7fitness
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Mak7Fitness is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

@import url('./assets/fonts/main/stylesheet.css');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');

:root {
  --mak-primary: #fed001;
  --mak-secondary: #ff2800;
  --mak-bg-dark: #050302;
  --mak-text-light: #ffffff;
  --mak-nav-height: 104px;

  --gradient-color-1: hsl(49, 99%, 50%);
  --gradient-color-2: hsl(9, 100%, 50%);
  --gradient-color-3: hsl(0, 0%, 100%);
  --gradient-color-4: hsl(214, 50%, 25%);
}

body {
  margin: 0;
  font-family:
    'Avenir Arabic',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  /* background-color: var(--mak-bg-dark);
  color: var(--mak-text-light); */
  max-width: 2000px;
  margin-top: var(--mak-nav-height);
  overflow-x: hidden;
  margin-inline: auto;
}

a {
  text-decoration: none;
}

.mak7-heading {
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--mak-text-light);
}

/* Gradient Animation */
@keyframes moveGradient {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(50%, 25%, 0);
  }
}
.home-sec-2 .wp-block-group__inner-container,
.grad-anim {
  position: relative;
  overflow: hidden;
}
.home-sec-2 .wp-block-group__inner-container {
  overflow: unset;
}
.home-sec-2 .wp-block-group__inner-container::before,
.grad-anim::before {
  content: '';
  position: absolute;
  /* Make the element 200% size so we have room to move it */
  top: -50%;
  inset-inline-start: -50%;
  width: 200%;
  height: 200%;

  filter: blur(10rem);
  background:
    radial-gradient(
      circle at 15% 25%,
      var(--gradient-color-1),
      transparent 15%
    ),
    radial-gradient(
      circle at 85% 30%,
      var(--gradient-color-2),
      transparent 15%
    ),
    radial-gradient(circle at 50% 80%, var(--gradient-color-3), transparent 15%);

  /* background-size: 150% 150%; */

  /* Force GPU Acceleration */
  will-change: transform;

  animation: moveGradient 8s infinite alternate ease-in-out;
}

.grad-anim.dark::before {
  background:
    radial-gradient(
      circle at 15% 25%,
      var(--gradient-color-1),
      transparent 15%
    ),
    radial-gradient(
      circle at 85% 30%,
      var(--gradient-color-2),
      transparent 15%
    ),
    radial-gradient(circle at 50% 80%, var(--gradient-color-4), transparent 15%);
}
.home-sec-2 .wp-block-group__inner-container::before {
  width: 50%;
}
.home-sec-2 .wp-block-group__inner-container::after,
.grad-anim::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
/* Gradient Animation */

/* Header Start */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
}
.site-header .navbar {
  background-color: #fff;
  transition: 0.2s;
}
body .site-header.sticky-top .navbar {
  box-shadow: 0 1px 10px #00000080;
  background-color: var(--mak-text-light);
}
.site-header a.navbar-brand {
  border-inline-end: 1px solid #e2e2e2;
  padding-block: 2rem;
  padding-inline: 0 3rem;
  transition: 0.3s;
}
.site-header.sticky-top a.navbar-brand {
  padding-block: 2rem;
  padding-inline: 0 3rem;
}
.site-header a.navbar-brand > img {
  width: auto;
  height: 40px;
  /* padding-block: 15px; */
  transition: 0.3s;
}
.site-header.sticky-top a.navbar-brand > img {
  /* width: 230px; */
  height: 40px;
  padding-block: 0px;
}
#navbarNav a,
.site-header.sticky-top #navbarNav a {
  /* text-transform: uppercase; */
  font-family:
    'Open Sans',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: 300;
  font-size: 14px;
}
#navbarNav ul li.dropdown > .dropdown-menu {
  display: none;
  padding: 0;
  opacity: 0;
  width: max-content;
  border: 0;
  height: 0;
  transition:
    opacity 0.3s ease-out,
    height 0.3s ease-out;
  /* overflow: hidden; */
}
#navbarNav ul li.dropdown > .dropdown-menu.depth_1 {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  transform: translateX(100%);
}
#navbarNav ul li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  height: fit-content;
  display: block;
}
#navbarNav ul li.dropdown .dropdown-menu li a {
  padding-inline: 1rem;
  color: var(--text-color);
  border-inline-start: 0 solid var(--mak-primary);
  transition: 0.3s;
}
#navbarNav ul li.dropdown .dropdown-menu li a:hover {
  border-inline-start: 5px solid var(--mak-primary);
  transition: 0.3s;
}
#navbarNav ul li.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}
#navbarNav ul li.dropdown > .dropdown-toggle {
  padding-block: 0.5rem;
}
#navbarNav ul li.dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}
#navbarNav ul.depth_0 li.dropdown .dropdown-toggle::after {
  transform: rotate(270deg);
}

div#main-navbar {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

ul.nav-social-links {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 10px;
  padding: 0;
}

ul.nav-social-links img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.mobile-topbar {
  display: none !important;
  padding-block: 5px;
  border-bottom: 1px solid #efefef;
}

.topbar-search,
.top-nav {
  /* border-bottom: 1px solid #e2e2e2; */
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-block: auto;
}
.search-icon-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.search-icon-box button {
  border: none;
  background: none;
}

.search-form button img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.search-form-box {
  position: fixed;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}

.search-form-box .search-form-container {
  transition: all 0.3s;
  position: relative;
  width: 80%;
  height: 100%;
  transform: translateY(100%);
}

.search-form-box.show {
  visibility: visible;
  opacity: 1;
}

.search-form-box.show .search-form-container {
  transform: translateY(25%);
}

.search-form input {
  background: #ffffffcc;
  border: none;
  font-size: 24px;
  padding: 1rem 1rem;
  outline: none;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.search-form button {
  border: none;
  background: #ffffff;
  padding: 0 2rem;
  width: auto;
  outline: none;
}

.search-form fieldset {
  display: flex;
}

.search-form input:focus {
  border-bottom: 1px solid #a3a3a3;
}

.close-btn {
  border: none;
  background: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
}

.close-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.border-line {
  height: 1px;
  width: 100%;
  background-color: #e2e2e2;
}

.bottom-nav {
  display: flex;
  margin-block: auto;
  padding-inline-start: 30px;
}

.nav-sidebar .lang-item,
.top-nav .lang-item {
  list-style: none;
}

.nav-sidebar .lang-item a,
.top-nav .lang-item a {
  color: #000;
}

.main-menu .lang-item {
  text-align: center;
  margin-top: 1rem;
}

.main-menu .lang-item a {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.65);
}

.cta-box .btn {
  transform: skewX(-15deg);
  text-transform: uppercase;
  border: 1px solid var(--mak-secondary);
  color: var(--mak-secondary);
}

.cta-box .btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.cta-box .btn span {
  display: inline-block;
  transform: skewX(15deg);
}

.topbar-search .cta-box .btn {
  transform: skewX(0deg);
  padding: 5px 10px;
}

.topbar-search .cta-box .btn span {
  transform: skewX(0deg);
}

/* .cta-box .btn:first-of-type {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
} */

/* .cta-box .btn:first-of-type:hover {
  border: 1px solid #000;
} */

/* .cta-box .btn:last-of-type {
  border: 1px solid #ff2800;
  color: #ff2800;
}

.cta-box .btn:last-of-type:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
} */

/* Header End */

.mak-btn-primary,
.mak-btn-outline,
.mak-btn-transparent,
.mak-btn-filled {
  font-family:
    'Avenir Arabic',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  border-width: 1px;
  transition: 0.3s all;
}
.mak-btn-primary {
  background-color: var(--mak-primary);
  color: #000 !important;
  border-color: var(--mak-primary);
  text-transform: uppercase;
}
.mak-btn-primary:disabled {
  background-color: var(--mak-primary);
  color: #000 !important;
  border-color: var(--mak-primary);
  text-transform: uppercase;
  opacity: 0.8;
}
.mak-btn-primary:hover {
  background-color: #000000;
  color: #ffffff !important;
  border-color: #ffffff;
}
.mak-btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: #ffffff;
}
.mak-btn-outline:hover {
  background-color: var(--mak-primary);
  color: #000;
  border-color: var(--mak-primary);
}
.mak-btn-transparent {
  background-color: transparent;
  color: #000;
  border-color: #000;
}
.mak-btn-transparent:hover {
  background-color: var(--mak-primary);
  color: #000;
  border-color: var(--mak-primary);
}
.mak-btn-filled {
  background-color: #000000;
  color: #ffffff;
  border-color: var(--mak-primary);
}
.mak-btn-filled:hover {
  background-color: var(--mak-primary);
  color: #000000;
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--mak-nav-height));
  /* background-image: url("../uploads/static-bg.jpg"); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  /* margin-top: var(--mak-nav-height); */
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.mak7-title {
  /* font-size: 2.2rem; */
  font-family: 'Oswald';
  text-transform: uppercase;
}

.video-box {
  width: 100%;
  /* height: 700px; */
  min-height: calc(100vh - var(--mak-nav-height));
  max-width: 100%;
}
video#myVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-sec-3 .video-box {
  min-height: 800px;
}

.about-sec-3 video#myVideo {
  object-fit: contain;
}

.mak7-svgart > svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 40, 0, 0.5));
}
.hero-inner {
  position: absolute !important;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem 1.25rem;
}
.hero-title {
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  /* text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  background: linear-gradient(
    90deg,
    #fed001 0%,
    #ff2700 33%,
    #ffffffb8 50%,
    #ff2700 66%,
    #fed001 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite; */
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.btn-primary {
  font-family:
    'Avenir Arabic',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background-color: #ffffff;
  color: #000000;
  padding: 0.9rem 2.9rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0px 1px 2px 0px #ffffff54;
  border-color: #fff;
  transition: 0.3s all;
  border-radius: 0;
  border-width: 1px;
  transform: skewX(-25deg);
}
.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #fff;
  transform: skewX(-25deg);
}
.btn-primary span {
  display: inline-block;
  transform: skewX(25deg);
}
.btn-secondary {
  font-family:
    'Avenir Arabic',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background-color: var(--mak-primary);
  color: #000;
  padding: 0.9rem 2.9rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  /* box-shadow: 0px 1px 2px 0px #ffffff54; */
  border-color: var(--mak-primary);
  transition: 0.3s all;
  border-radius: 0;
  border-width: 1px;
  transform: skewX(-25deg);
}
.btn-secondary:hover {
  background-color: #000;
  color: #ffffff;
  border-color: #fff;
  transform: skewX(-25deg);
}
.btn-secondary span {
  display: inline-block;
  transform: skewX(25deg);
}
.hero-cta {
  display: flex;
  gap: 20px;
}
.mak7-svgart {
  z-index: 3;
  height: auto;
  width: 100%;
  max-width: 1000px;
  position: absolute !important;
  bottom: -32%;
  right: -13.5%;
  opacity: 0.75;
}
.mak7-svgart .cls-1 {
  fill: none;
  stroke: var(--mak-secondary);
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.mak7-svgart .cls-1 {
  fill: none;
  stroke: var(--mak-secondary);
  stroke-miterlimit: 10;
  stroke-width: 2px;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 6s ease-in-out infinite;
}
.mak7-svgart .cls-1:nth-child(1) {
  animation-delay: 0s;
}
.mak7-svgart .cls-1:nth-child(2) {
  animation-delay: 0.4s;
}
.mak7-svgart .cls-1:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes draw {
  0%,
  100% {
    stroke-dashoffset: 2000;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
}

.site-footer {
  font-family:
    'Open Sans',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.home-sec-2 {
  /* background: #ff2800;
  background: radial-gradient(
    ellipse at 50% 50%,
    #ff2800 -40%,
    transparent 40%
  ); */
  position: relative;
}

.home-sec-2::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 50%;
  height: 100%;
  background: #000 100% 50% / 40% 20% repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/mak7-1.svg);
}

.about-sec-1 h4,
.force-sec-1 h4,
.forces-sec-1 p,
.home-sec-3 h4 {
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.about-sec-1 p,
.home-sec-3 p {
  font-family:
    'Gotham Book',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: 14px;
}

.home-sec-3 h4 {
  width: 50%;
}

.purpose-right-col {
  z-index: 3;
}

.purpose-right-col figure {
  scale: 1.2;
}

.purpose-heading {
  text-transform: uppercase;
  font-family: 'Oswald';
  font-size: 5rem;
}

.forces-swiper .swiper-slide {
  padding: 1rem;
  height: auto;
}

@property --color-start {
  syntax: '<color>';
  inherits: false;
  initial-value: black;
}

@property --color-end {
  syntax: '<color>';
  inherits: false;
  initial-value: black;
}

.force-card {
  display: inline-block;
  background: linear-gradient(
    0deg,
    var(--color-start) 60%,
    var(--color-end) 100%
  );
  transition:
    0.3s --color-start,
    0.3s --color-end;
  width: 100%;
  height: 100%;
  min-height: 370px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 0 1rem #dedede;
  overflow: hidden;
}

.membership-swiper .swiper-slide {
  height: auto;
}

.membership-swiper .force-card {
  height: 100%;
  background: #000000cc;
  transition: all 0.3s;
}

.forces-swiper .force-card:hover {
  --color-start: #ffffff38;
  --color-end: #000000c2;
}

.forces-swiper .force-card.soon:hover {
  --color-start: #000000c2;
  --color-end: #000000c2;
}

.force-description {
  color: #000;
  position: absolute;
  left: 0;
  padding: 2rem;
  top: 100%;
  transform: translateY(0%);
  transition: 0.3s all ease;
}

.force-card ul {
  transition: 0.3s all ease 0.1s;
}

.force-card:hover ul {
  opacity: 0;
  transition: 0.3s all ease;
}

.membership-swiper .force-card:hover ul {
  opacity: 1;
}

.force-card:hover .force-description {
  top: 50%;
  transform: translateY(-50%);
}

.membership-swiper .force-card:hover .mak-btn-outline,
.forces-swiper .force-card:hover .mak-btn-outline {
  background-color: var(--mak-primary);
  color: #000;
  border-color: var(--mak-primary);
}

.forces-swiper .swiper-slide > div {
  padding: 2rem;
}

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

.logo-box img {
  width: 250px;
  height: 60px;
  object-fit: contain;
}

.swiper {
  padding-bottom: 5rem;
}

.force-card ul {
  list-style: none;
  padding: 0;
  margin-block: 3rem;
}

.membership-swiper .swiper-slide .plan-icon,
.force-card ul li {
  display: flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  background: #424242;
  gap: 10px;
  margin-block: 10px;
  border-radius: 5px;
  padding: 5px 15px;
}

.membership-swiper .swiper-slide .plan-icon {
  background: unset;
  padding: unset;
  margin-block: unset;
}

.membership-swiper .swiper-slide .force-card:hover .plan-icon img {
  background: var(--mak-primary);
  stroke: #000;
}

.membership-swiper .swiper-slide .force-card ul {
  margin: 0;
  margin-bottom: 3rem;
}

.membership-swiper .swiper-slide .force-card > p {
  margin-top: 2rem;
  color: #fff;
}

ul.yellow-check-list,
ul.tick-list {
  list-style: none;
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

ul.tick-list li {
  padding-block: 5px;
  display: flex;
  align-items: center;
}

ul.tick-list li::before {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/check-icon.svg);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-inline-end: 10px;
}

.program-plan {
  transition: scale 0.2s;
}

.program-plan:hover {
  scale: 1.02;
}

ul.yellow-check-list {
  list-style-type: none;
  padding: 0;
  position: relative;
}

ul.yellow-check-list li {
  padding-block: 5px;
  font-size: 14px;
  padding-inline-start: 1.5rem;
}

ul.yellow-check-list li::before {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/yellow-check.svg);
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-inline-end: 10px;
  position: absolute;
  inset-inline-start: 0;
}

.membership-swiper .swiper-slide ul li {
  gap: 0;
  text-transform: none;
}

.membership-swiper .swiper-slide .plan-icon img,
.force-card ul li img {
  width: 35px;
  background: #000;
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s;
}

.membership-swiper .swiper-slide .plan-icon img {
  width: 45px;
}

.membership-swiper .swiper-slide .plan-icon p,
.force-card ul li p {
  margin: 0;
}

.membership-swiper .swiper-slide .plan-icon p {
  font-size: 20px;
}

.custom-swipe-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding-bottom: 5rem;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 40px;
  height: 40px;
}

.swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -50px !important;
  left: auto !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -50px !important;
  right: auto !important;
}

.home-sec-4 .core-zone {
  font-family: 'Oswald';
  font-size: clamp(4rem, 22vw, 20rem);
  opacity: 0.04;
  text-align: center;
  text-transform: uppercase;
}

.home-sec-4 .facilities-amenities {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  text-transform: uppercase;
  font-family: 'Oswald';
}

.purpose-box {
  position: absolute !important;
  top: 50%;
  right: -35px;
  width: 120%;
  height: 70px;
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/tape.png);
  rotate: -9deg;
  translate: 0 80px;
  display: flex;
  align-items: center;
}

.force-sec-1b .purpose-box {
  top: unset;
  bottom: 20%;
}

/* .marquee-text {
  --space: 4vw;
  font-size: 2rem;
  height: 100%;
  font-family: 'Oswald';
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
  -webkit-animation: marquee 6.5s infinite linear;
  animation: marquee 6.5s infinite linear;
  padding-left: var(--space);
}
.marquee-text:before {
  content: attr(data-text);
  padding-right: var(--space);
  text-shadow: -330px 0px 0 black;
}
.marquee-text:after {
  content: attr(data-text);
  padding-left: var(--space);
  text-shadow: 330px 0px 0 black;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
} */

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 2rem;
  font-family: 'Oswald';
  text-transform: uppercase;
}

.marquee-track {
  display: inline-flex;
  gap: 70px;
  width: max-content;
  animation: scroll 20s linear infinite;

  /* Force GPU Acceleration */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.marquee-track .content {
  display: flex;
  gap: 70px;
}

.marquee-track span {
  margin-right: 1rem;
}

@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-38%, 0, 0);
  }
}

/* Optional: Stop animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
}

.img-box {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  min-height: 300px;
  font-size: 1.2rem;
  text-align: center;
}

.home-sec-6::after {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/girl-fg.png);
  position: absolute;
  width: 48%;
  top: 8%;
  inset-inline-end: 0;
  bottom: -50px;
}

.home-sec-6 h2 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: clamp(1rem, 23.4vw, 29.7rem);
  line-height: 1;
  margin: 0;
  overflow: hidden;
}

.home-sec-6 img {
  width: 50%;
}

.home-sec-7 h2 {
  font-family: 'Oswald';
  font-size: 3rem;
}

.testimonial-box {
  font-family:
    'Gotham Book',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  padding: 3rem 2rem;
  margin-top: 1rem;
}

.testimonial-box::before {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/5-star.svg);
  position: absolute;
  width: 40%;
  height: 25px;
  inset-inline-start: 10px;
  top: 0;
  transform: translateY(-50%);
}

.testimonial-box h4 {
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

.forces-banner {
  min-height: 400px;
  position: relative;
}

/* .plans-banner .force-logo {
  text-align: end;
} */

.forces-banner .force-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.forces-banner .human-fg {
  position: absolute;
  bottom: 0;
  left: 52%;
  transform: translateX(-50%);
  max-width: 90%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
}

.plans-banner .force-logo img {
  width: 200px;
}

.forces-banner .force-logo img {
  width: 250px;
}

.forces-list {
  list-style-type: none;
  padding-inline-start: 0;
  margin-top: 2rem;
}

.forces-list img {
  width: 150px;
}

.membership-plans {
  font-size: 3rem;
  font-family: 'Oswald';
  text-transform: uppercase;
  text-align: center;
}

.force-sec-2 {
  position: relative;
}

.force-sec-1 h2,
.force-sec-1b h2,
.force-sec-1c h2,
.force-sec-1d h2,
.force-sec-1e h2,
.force-sec-2 h2 {
  font-size: 3rem;
  font-family: 'Oswald';
  text-transform: uppercase;
}

.red-box {
  border: 1px solid red;
  padding: 2rem;
  position: relative;
}

.red-box-content {
  padding-inline-start: 10rem;
  font-family:
    'Gotham Book',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.red-box::before {
  content: 'The challenge';
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translate(-50%, -50%);
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 3rem;
  background: #151515;
  padding-block: 1rem;
}

.force-sec-1b {
  background: url('https://mak7fitness.com/wp-content/uploads/2026/01/approach-bg-100.jpg');
  position: relative;
  overflow-x: clip;
}

.force-sec-1b::after {
  content: '';
  position: absolute;
  background: 50% 0% / 65% no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/approach-img.png);
  height: 90%;
  width: 40%;
  bottom: 0;
  inset-inline-end: 0;
}

.force-sec-1b.fom::after {
  background: 50% 0% / 80% no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/04/fom-approach@72x.png);
}

.force-sec-1b::before {
  content: '';
  position: absolute;
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/mak7-bg-svg.svg);
  inset: 0;
}

.force-sec-1c {
  position: relative;
}

.force-sec-1c::before {
  content: '';
  position: absolute;
  background: 100% 5% / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/Asset-4-100.jpg);
  height: 100%;
  width: 50%;
  top: 0;
  inset-inline-end: 0;
}

.force-sec-1c.fom::before {
  background: 100% 55% / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/04/Asset-7@72x-100.jpg);
}

.force-sec-1c.right::before {
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/Asset-5-100.jpg);
  height: 100%;
  width: 50%;
  top: 0;
  right: unset;
  inset-inline-start: 0;
}

.force-sec-1c.right.fom::before {
  background: center top / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/04/Asset-6@72x-100.jpg);
}

.force-sec-1d {
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/Asset-6-100.jpg);
  min-height: 600px;
  position: relative;
}

.force-sec-1d.fom {
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/04/Asset-8@72x-100-1.jpg);
}

.force-sec-1d.boutique {
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/02/boutique-bg.jpg);
}

.force-sec-1d .col-md-6 {
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  background: #00000042;
  color: #fff;
}

.force-sec-1b p {
  font-family:
    'Gotham Book',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.about-sec-2 p,
.force-sec-2 p {
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.force-sec-2::after {
  content: '';
  background: center / cover no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/04/personal-training-1.png);
  position: absolute;
  height: 100%;
  min-width: 600px;
  width: 60%;
  inset-inline-end: 0;
  top: 0;
}

.force-sec-2::before {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/yellow-bar.png);
  position: absolute;
  height: 150px;
  width: 170px;
  inset-inline-end: 20%;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}

.plan-features {
  position: relative;
}

.plan-img.right {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  margin: 0;
}

.plan-img.left {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  margin: 0;
  z-index: 1;
}

.plan-img.right::after {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/yellow-bar.png);
  position: absolute;
  height: 150px;
  width: 170px;
  inset-inline-end: 40%;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}

.plan-img.left::after {
  content: '';
  background: center / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/yellow-bar.png);
  position: absolute;
  height: 150px;
  width: 170px;
  inset-inline-start: 40%;
  bottom: 0;
  transform: translateY(50%) scale(1, -1);
  z-index: 1;
}

.plan-img.right img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: 0% 5%;
}

.plan-img.left img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: 0% 10%;
}

.plan-hero {
  height: 600px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.plan-hero h1 {
  text-transform: uppercase;
  font-size: 6rem;
  font-family: 'Oswald';
  line-height: 0.7;
  margin-bottom: 1.5rem;
}

.plans-banner {
  position: relative;
  overflow: hidden;
}

.force-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* .plans-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  width: 100%;
  height: 50%;
  background: 100% 100% / 20% 50% repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/mak7-1.svg);
} */

.plans-banner::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 420px;
  inset-inline-end: -120px;
  bottom: -200px;
  /* opacity: 0.25; */
  background: url('https://mak7fitness.com/wp-content/uploads/2026/01/maksvg-outline.svg')
    right bottom / contain no-repeat;
}

.plans-banner p {
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.plans-banner .plan-icon img {
  width: 30px;
}

.plans-banner .plan-icon {
  background: #ffffff;
  /*   background: var(--mak-primary); */
  width: fit-content;
  border-radius: 50%;
  padding: 15px;
}

.plan-benefit-title {
  background: #000000cc;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 22px;
}

ul.check-list li::marker {
  font-size: 25px;
  /* position: absolute; */
}

ul.check-list {
  list-style-type: none;
  list-style-image: url(https://mak7fitness.com/wp-content/uploads/2026/01/check-list-icon.svg);
}

ul.check-list.dark {
  list-style-image: url(https://mak7fitness.com/wp-content/uploads/2026/01/check-icon-dark.svg);
}

ul.check-list li strong {
  display: inline-block;
  margin-bottom: 10px;
}

ul.check-list li {
  margin-bottom: 1rem;
}

section.page-banner {
  position: relative;
  min-height: 500px;
}

section.page-banner h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.about-sec-1 .facilities-amenities {
  top: 50%;
  inset-inline-start: 0;
  transform: translate(50%, -50%);
  font-size: 3rem;
  text-transform: uppercase;
  font-family: 'Oswald';
}

.about-sec-1 .core-zone {
  line-height: 0.8;
  font-size: clamp(4rem, 21vw, 26rem);
}

.about-sec-2 {
  position: relative;
}

.purpose-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-sec-2 .purpose-img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  margin: 0;
  height: 140%;
  width: 50%;
  object-fit: contain;
}

.about-sec-1.values .core-zone {
  font-size: clamp(4rem, 19vw, 25rem);
}

.about-sec-1.values h3 {
  font-size: 1.5rem;
  color: var(--mak-secondary);
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  text-transform: uppercase;
}

.about-sec-3 {
  background: #d3d5db center / 17% 20% repeat
    url('https://mak7fitness.com/wp-content/uploads/2026/01/mak7-grey-svg.svg');
  position: relative;
}

/* 3d rotation */
section.section-360 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  transform-style: preserve-3d;
  transform: rotateX(-10deg) rotateZ(-10deg);
}
.img-360 {
  position: absolute;
  bottom: -19px;
  left: 60%;
  transform: translateX(-50%) rotateZ(10deg);
  width: 600px;
  height: 90%;
  background: url('https://mak7fitness.com/wp-content/uploads/2026/01/360-img-1.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.circle {
  transform-style: preserve-3d;
  animation: animateText 20s linear infinite;
}
.circle span {
  position: absolute;
  top: 0;
  left: 0px;
  background: transparent;
  color: #fff;
  font-family: 'Oswald';
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 800;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * calc(360deg / 87))) rotateX(0deg)
    translateZ(270px);
}

@keyframes animateText {
  0% {
    transform: perspective(1000px) rotateY(360deg) translateY(0px);
  }
  100% {
    transform: perspective(1000px) rotateY(0deg) translateY(0px);
  }
}

.polygon-content {
  position: absolute !important;
  inset-inline-end: 0;
  bottom: 0;
  width: 40%;
  height: 110%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  background: linear-gradient(
    143deg,
    var(--mak-primary) 0%,
    var(--mak-primary) calc(50% - 0.5rem),
    transparent calc(50% - 0.5rem),
    transparent calc(50% + 0.5rem),
    #000 calc(50% + 0.5rem),
    #000 100%
  );
}

.polygon-content p {
  color: #fff;
  font-family: 'Gotham';
  margin: 0;
}

.polygon-content h2 {
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 3rem;
}

.about-sec-4 {
  position: relative;
}

.about-sec-4 .content-overlay {
  padding-top: 4rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.about-sec-4 h2 {
  font-size: 4rem;
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  text-transform: uppercase;
}

.about-sec-4 p {
  font-family:
    'Gotham Book',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.contact-sec-1 h2.core-zone {
  line-height: 0.8;
  font-size: clamp(3rem, 20vw, 25rem);
}

.contact-sec-1 p {
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.form-control,
.form-select {
  border-radius: 0;
  padding: 10px 15px;
}

.form-select:focus,
.form-control:focus {
  outline: 0;
  box-shadow: unset;
  border-color: #000;
}

.contact-sec-2 .form-control,
.contact-sec-2 .form-select {
  border: 1px solid transparent;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.modal-content {
  border-radius: 0;
}

.modal-body ul.check-list {
  padding-left: 20px;
}

.modal-body ul.check-list a {
  color: var(--mak-bg-dark);
}

.modal-body ul.check-list a:hover {
  text-decoration: underline;
}

.newsletter-form .wpcf7-not-valid-tip,
.newsletter-form .wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  position: absolute;
}

.loc-card {
  background: var(--mak-primary);
  padding: 2rem;
  border-radius: 15px;
  display: block;
  color: #000;
  border: none;
  width: 100%;
}

.loc-card .loc-name {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.loc-card .loc-name h4 {
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 20px;
}

.loc-card .loc-name img {
  width: 25px;
}

.loc-card .locations {
  display: flex;
  gap: 30px;
}

.loc-card .locations .female,
.loc-card .locations .unisex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loc-card .locations .female img,
.loc-card .locations .unisex img {
  height: 30px;
  object-fit: contain;
}

.loc-card .locations .female span,
.loc-card .locations .unisex span {
  font-family:
    'Gotham',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-sec-4 {
  background:
    100% 200% / 100% 90% no-repeat
      url('https://mak7fitness.com/wp-content/uploads/2026/01/mak7-white-svg.svg'),
    linear-gradient(180deg, transparent, #cdcfd5),
    #cdcfd5 30% 30% / 20% 30% repeat
      url('https://mak7fitness.com/wp-content/uploads/2026/01/mak7-grey-svg.svg');
  min-height: 500px;
}

.nav-item img {
  height: 25px;
  margin-inline-end: 5px;
}

.nav-tabs {
  justify-content: center;
  border: 1px solid transparent;
  gap: 10px;
}

.nav-tabs .nav-link.active {
  border: 1px solid var(--mak-secondary);
  color: var(--mak-secondary);
}

.nav-tabs .nav-link {
  /* border: 1px solid var(--mak-primary); */
  border-radius: 0;
  color: #000;
}

ul.loc-list {
  padding: unset;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 10px;
}

ul.loc-list li {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  border-bottom: 1px solid #e2e2e2;
}

ul.loc-list li:last-of-type {
  border-bottom: unset;
}

ul.loc-list li:hover {
  border-bottom: 1px solid #000;
}

ul.loc-list li:last-of-type:hover {
  border-bottom: unset;
}

.loc-list a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* .loc-list a:hover {
  text-decoration: underline;
} */

.acf-locations__empty {
  margin-block: 70px;
  text-align: center;
}

/* Footer */

.site-footer::after {
  content: '';
  background: right bottom / contain no-repeat
    url('https://mak7fitness.com/wp-content/uploads/2026/01/maksvg-outline.svg');
  position: absolute;
  width: 50%;
  height: 310px;
  inset-inline-end: 0;
  bottom: -200px;
}

.footer-title {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Oswald';
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}

.footer-title span:first-child {
  font-size: clamp(3.25rem, 12.6vw, 8.1rem);
}

.footer-title span:nth-child(2) {
  font-size: clamp(2rem, 7.7vw, 5rem);
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

.footer-title span:last-child {
  font-size: clamp(1.75rem, 6.8vw, 4.4rem);
}

.site-footer .footer-logo {
  width: 180px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  padding-block: 5px;
}

.footer-widget ul li a {
  color: #fff;
}

.newsletter-title {
  text-transform: uppercase;
  font-family:
    'Oswald',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Open Sans',
    'Helvetica Neue',
    sans-serif;
}

.newsletter-form .wpcf7-email::placeholder {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

.social-links img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.accordion-button:not(.collapsed) {
  background: var(--mak-primary);
}

button.accordion-button {
  font-size: 1.5rem;
  padding-block: 1.3rem;
}

button.accordion-button:focus {
  box-shadow: none;
}

.classes-swiper {
  width: 100%;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
}

.classes-swiper.classes-grid {
  height: 800px;
}

.classes-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.classes-swiper.classes-grid .swiper-slide {
  height: calc((100% - 30px) / 2) !important;
}

.classes-swiper .img-box {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 3rem;
  min-height: 350px;
  font-size: 1.2rem;
  text-align: start;
}

.img-box .classes-content {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  /* margin-bottom: 1rem; */
  transition: max-height 0.3s;
}

.img-box:hover .classes-content {
  max-height: 130px;
}

.classes-sec.home-sec-4 {
  overflow-x: clip;
}

.classes-sec .purpose-box {
  top: unset;
  bottom: 0;
  z-index: 1;
}

.program-content .accordion-button {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #000000cc;
  padding-inline: 0;
  padding-block: 1.4rem;
  font-size: 1.2rem;
}

.program-content .accordion-button:not(.collapsed) {
  color: #000;
}

.program-content .accordion-button::after {
  background-image: url('https://mak7fitness.com/wp-content/uploads/2026/03/program-arrow.svg');
  width: 2rem;
  height: 2rem;
  background-size: 30px;
}

.program-content .accordion-body {
  padding-inline: 0;
}

.program-list {
  list-style: none;
}

.program-list li {
  position: relative;
  margin-bottom: 10px;
}

.program-list li::before {
  content: url('https://mak7fitness.com/wp-content/uploads/2026/01/check-list-icon.svg');
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  inset-inline-start: -25px;
}

.program-video-box {
  height: 100%;
  background: black;
}

.program-video-box figure,
.program-video-box figure video {
  height: 100%;
  object-fit: contain !important;
}

.program-video-box .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.program-video-box .play-button i::before {
  background-color: #00000080;
  border-radius: 50%;
}
.program-video-box .program-video-svg {
  position: absolute;
  width: 60%;
  height: 60%;
  right: -80px;
  bottom: -150px;
}

.therapist-image {
  border-radius: 50%;
  box-shadow:
    0px 0px 0px 3px var(--mak-bg-dark),
    0px 0px 0px 5px var(--mak-secondary);
}

ul.coach-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

ul.coach-tags li {
  background-color: #ffffff1a;
  font-size: 0.8rem;
  border: 1px solid #ffffff80;
  border-radius: 500px;
  padding: 5px 10px;
}

/* .program-video-box::after {
  content: "";
  background: bottom right / contain no-repeat
    url(https://mak7fitness.com/wp-content/uploads/2026/01/maksvg-outline.svg);
  position: absolute;
  width: 60%;
  height: 60%;
  right: -60px;
  bottom: -80px;
} */

.copy-tooltip {
  position: absolute;
  background: var(--mak-primary);
  color: var(--mak-bg-dark);
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.copy-tooltip.show {
  opacity: 1;
}

.blog-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

a.card-link {
  color: #000;
}

/* Lottie Animations */
#forces-lottie-animation,
#forces-ar-lottie-animation {
  width: 100%;
}

#beats-lottie-animation {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991.9px) {
  /* body {
    margin-top: 0;
  } */
  /* body .site-header.menu-open .navbar,
  body:not(.home) .site-header.sticky-top.menu-open .navbar {
    box-shadow: 0 8px 6px -6px var(--mak-text-light);
    background-color: var(--mak-text-light);
  } */
  .site-header a.navbar-brand {
    border-inline-end: unset;
    padding: 15px 0;
  }

  .site-header.sticky-top a.navbar-brand {
    padding: 10px 0;
  }

  .search-form-box .search-form-container {
    width: 90%;
  }

  .search-form input {
    font-size: 20px;
  }

  .mobile-topbar {
    display: flex !important;
  }
  .site-header a.navbar-brand > img {
    width: 100px;
    height: 35px;
    padding-inline: 0;
  }
  .site-header.sticky-top a.navbar-brand > img {
    width: 100px;
    height: 35px;
  }
  .mob-language-switcher {
    display: block;
    margin-inline-start: auto;
    margin-inline-end: 20px;
  }
  .mob-language-switcher li {
    list-style-type: none;
  }
  .mob-language-switcher li a,
  body:not(.home)
    .site-header.menu-open.sticky-top
    #navbarNav
    ul
    li.dropdown:hover
    > .dropdown-toggle,
  body:not(.home) .site-header.sticky-top .mob-language-switcher li a {
    color: #fff;
  }
  .navbar-toggler {
    border: none;
    padding: 0;
    outline: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    float: right;
  }
  .navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
  }
  .navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 3px;
    position: absolute;
    background: #000;
    border-radius: 2px;
    z-index: 1;
    transition:
      transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
      background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
      0.2s ease-in-out;
    inset-inline-start: 0;
  }
  /* body:not(.home)
    .site-header.sticky-top
    .navbar-toggler
    .hamburger-toggle
    .hamburger
    span {
    background: #fff;
  } */
  .navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    /* transform: translate(0 -50%) !important; */
  }
  .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
    width: 80%;
  }
  .navbar-toggler .hamburger-toggle .hamburger span:last-child {
    inset-inline-start: 0;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
  }
  .navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
  }
  #navbarNav li.pll-parent-menu-item,
  .site-header .nav-cta-btn {
    display: none;
  }
  #navbarNav ul li.dropdown:hover > .dropdown-menu {
    box-shadow: 0px 0px 1px 0px gray;
  }
  #navbarNav ul li.dropdown .dropdown-menu li {
    text-align: center;
  }
  #navbarNav ul li.dropdown .dropdown-menu li a {
    display: inline-block;
    padding-inline: 1rem;
    width: fit-content;
    font-size: 18px !important;
  }
  #menu-main-menu-ar > li.menu-item:last-child a,
  #menu-main-menu > li.menu-item:last-child a {
    padding-inline: unset;
  }

  .nav-sidebar {
    position: fixed;
    inset: 0;
    background: #fff;
    color: #000;
    z-index: 1000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-sidebar.show-sidebar {
    transform: translateX(0);
  }

  .nav-sidebar .navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 45%;
    transform: rotate(45deg);
  }
  .nav-sidebar .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    inset-inline-start: 50%;
    width: 0;
  }
  .nav-sidebar .navbar-toggler .hamburger-toggle .hamburger span:last-child {
    top: 45%;
    transform: rotate(-45deg);
  }

  .nav-sidebar .navbar-toggler {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .nav-sidebar ul.navbar-nav {
    text-align: center;
  }

  .nav-sidebar ul.navbar-nav li a {
    font-size: 20px !important;
  }

  .nav-sidebar .cta-box {
    margin-top: 20px;
  }

  .nav-sidebar .cta-box button {
    font-size: 16px;
  }
}

@media screen and (max-width: 767.9px) {
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 5.5rem);
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }
  .home-sec-3 h4 {
    width: 100%;
  }
  .home-sec-4 .facilities-amenities {
    font-size: 1.5rem;
    text-wrap: nowrap;
  }
  .purpose-box {
    height: 50px;
    top: 10%;
  }
  .marquee {
    font-size: 1.5rem;
  }
  .home-sec-7 h2 {
    font-size: 1.5rem;
  }
  .testimonial-box {
    padding: 2rem 2rem;
  }
  section.page-banner {
    min-height: 200px;
  }
  .mak7-heading {
    font-size: 2rem;
  }
  .polygon-content {
    position: relative !important;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(
      180deg,
      var(--mak-primary) 0%,
      var(--mak-primary) calc(50% - 0.5rem),
      transparent calc(50% - 0.5rem),
      transparent calc(50% + 0.5rem),
      #000 calc(50% + 0.5rem),
      #000 100%
    );
  }
  .polygon-content h2 {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
  .about-sec-4 h2 {
    font-size: 2rem;
  }
  .plan-hero {
    height: 200px;
  }
  .plan-hero h1 {
    font-size: 2rem;
  }
  .membership-plans {
    font-size: 1.5rem;
  }
  .classes-swiper .img-box {
    padding: 1rem;
  }
  button.accordion-button {
    font-size: 1.2rem;
  }
  .img-box .classes-content {
    max-height: 130px;
  }
  .home-sec-4 {
    overflow-x: clip;
  }
  .home-sec-2 .wp-block-group__inner-container::before {
    width: 100%;
    height: 50%;
  }
  .home-sec-2::after {
    width: 100%;
    height: 50%;
  }
  .purpose-right-col figure {
    scale: 1;
  }
  .purpose-heading {
    font-size: 3rem;
  }
  .home-sec-2 {
    overflow: hidden;
  }
  .about-sec-2 .purpose-img {
    position: relative;
    height: 100%;
    width: 80%;
    margin: 0 auto;
  }
  /* 360 animation */
  .about-sec-3,
  .about-sec-4 {
    overflow: hidden;
  }
  section.section-360 {
    min-height: 400px;
  }
  .img-360 {
    left: 70%;
    width: 400px;
    height: 80%;
  }
  .circle span {
    font-size: 1.4rem;
    transform: rotateY(calc(var(--i) * calc(360deg / 87))) rotateX(0deg)
      translateZ(150px);
  }
  .about-sec-4 .video-box {
    min-height: calc(50vh - var(--mak-nav-height));
  }
  .about-sec-4 video#myVideo {
    height: 50%;
  }
  .about-sec-4 .content-overlay {
    position: relative;
  }
  .forces-banner > img {
    min-height: 400px;
    object-fit: cover;
  }
  .forces-banner .force-logo {
    display: none;
  }
  .force-sec-1 h2,
  .force-sec-1b h2,
  .force-sec-1c h2,
  .force-sec-1d h2,
  .force-sec-1e h2,
  .force-sec-2 h2 {
    font-size: 2rem;
  }
  .red-box::before {
    top: 0%;
    inset-inline-start: 50%;
    text-wrap: nowrap;
    font-size: 2rem;
    padding-inline: 1rem;
  }
  .red-box-content {
    padding-inline-start: 0rem;
  }
  .force-sec-1b::after {
    height: 40%;
    width: 100%;
  }
  .force-sec-1b.fom::after {
    height: 35%;
  }
  .force-sec-1c.right::before,
  .force-sec-1c::before {
    width: 100%;
    position: relative;
    display: block;
    height: 300px;
  }
  .force-sec-1c h2 {
    color: #000;
    font-size: 1.5rem;
  }
  ul.yellow-check-list {
    color: #000;
  }
  #program-plans ul.yellow-check-list {
    color: #fff;
  }
  /* .force-sec-1c::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000007d;
    z-index: 1;
  } */
  ul.tick-list {
    padding: 0;
    z-index: 1;
  }
  .training-content {
    z-index: 1;
    color: #fff;
  }
  .contact-sec-4 {
    min-height: 350px;
  }
  .plan-img.left,
  .plan-img.right {
    position: relative;
    width: 100%;
  }
  .plan-img.right::after {
    right: 10px;
    width: 80px;
  }
  .plan-img.left::after {
    left: 10px;
    width: 80px;
  }

  .consent-manage-link {
    left: unset;
    transform: unset;
    bottom: 10px;
  }

  .force-sec-2::before {
    height: 110px;
    width: 100px;
    inset-inline-end: 10%;
  }
}
