html {
  scroll-behavior: smooth;
}

body {
  background-color: #09090B;
}
body * {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.page-section {
  padding-top: 120px;
}
@media (max-width: 575px) {
  .page-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-title {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .section-title {
    font-size: 34px;
    margin-bottom: 2rem;
  }
}
.section-title .white {
  color: #FFFFFF;
}
.section-title .red {
  color: #FB2C36;
}
.section-title .subtitle {
  color: #FFFFFF;
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
}

.global-btn {
  background: linear-gradient(90deg, #E7000B 0%, #FB2C36 100%);
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  text-transform: capitalize;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  border: solid 1px #FB2C36;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 50px;
}
.global-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: unset;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #09090B;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.global-btn:hover {
  color: #FFFFFF;
}
.global-btn:hover:before {
  width: 100%;
  left: 0;
  right: 0;
}
.global-btn.inverted {
  background: rgba(24, 24, 27, 0.8);
  border-color: #E7000B;
}
.global-btn.inverted::before {
  background-color: #FB2C36;
}
.global-btn.section-btn {
  width: 352px;
  margin: auto;
  display: flex;
}
@media (max-width: 575px) {
  .global-btn.section-btn {
    width: auto;
  }
}

.slogan-badge {
  background: linear-gradient(90deg, rgba(251, 44, 54, 0.1019607843) 0%, rgba(231, 0, 11, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50px;
  border: 1px solid rgba(251, 44, 54, 0.4);
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 0.5rem;
}
.slogan-badge p {
  margin-bottom: 0;
  color: #FF6467;
}

.thank-you {
  margin-top: 200px;
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .thank-you {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}
.thank-you .subtitle {
  font-size: 2rem !important;
}
@media (max-width: 575px) {
  .thank-you .subtitle {
    font-size: 18px !important;
  }
}

.navbar {
  padding-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background-color: #09090B;
  flex-direction: column;
}
.navbar .navbar-brand {
  border-radius: 1.5rem;
  overflow: hidden;
  width: 97px;
  height: auto;
  margin-inline-end: 5rem;
}
@media (max-width: 992px) {
  .navbar .navbar-brand {
    width: 70px;
    height: auto;
  }
}
@media (max-width: 575px) {
  .navbar .navbar-brand {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 0;
  }
}
.navbar .navbar-brand img {
  width: 100%;
  height: auto;
}
.navbar .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: solid 2px transparent;
  width: -moz-fit-content;
  width: fit-content;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  transition: 0.3s;
  color: #FB2C36;
  border-bottom: solid 2px #FB2C36;
}
.navbar .phone {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 50px;
  margin-inline-end: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .phone .icon-container {
  border-radius: 0.5rem;
  background-color: rgba(251, 44, 54, 0.1019607843);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
}
.navbar .phone .icon-container:hover .glow-bg {
  opacity: 1;
}
.navbar .phone .icon-container .glow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  opacity: 0;
  box-shadow: 0px 0px 15px 4px #FB2C36;
  background-color: rgba(251, 44, 54, 0.1019607843);
  transition: 1.3s;
}
.navbar .phone .text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.navbar .phone .text span {
  color: #6A7282;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
.navbar .phone .text h6 {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFFFF;
}
.navbar .join-now {
  background: linear-gradient(90deg, #E7000B 0%, #FB2C36 100%);
  border-radius: 50px;
  padding: 0.5rem;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #FFFFFF;
  border: solid 1px transparent;
  position: relative;
}
.navbar .join-now::before {
  content: " ";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border: inherit;
  border-radius: inherit;
  background-image: conic-gradient(from var(--angle), #381D6A 80%, #E0D1FF 88%, #E0D1FF 92%, #381D6A 100%);
  background-origin: border-box;
  -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  mask: linear-gradient(black, black), linear-gradient(black, black);
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
}
.navbar .join-now:hover::before {
  animation-play-state: paused;
}
.navbar .join-now a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.navbar .join-now a span {
  color: #FFFFFF;
}

@supports not (background: paint(something)) {
  .media-object::before {
    background-image: conic-gradient(#381D6A 80%, #E0D1FF 88%, #E0D1FF 92%, #381D6A 100%);
  }
}
@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
@keyframes spin {
  to {
    --angle: -1turn;
  }
}
.navbar-lg {
  display: block;
}
@media (max-width: 991px) {
  .navbar-lg {
    display: none;
  }
}

.navbar-sm {
  display: none;
}
@media (max-width: 991px) {
  .navbar-sm {
    display: block;
  }
}
.navbar-sm .dropdown-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
}
.navbar-sm .dropdown-toggle::after {
  display: none;
}
.navbar-sm .dropdown-toggle .menu-icon {
  display: block;
}
.navbar-sm .dropdown-toggle .close-icon {
  display: none;
}
.navbar-sm .dropdown-toggle.show .menu-icon {
  display: none;
}
.navbar-sm .dropdown-toggle.show .close-icon {
  display: block;
}
.navbar-sm .dropdown-menu {
  width: 95%;
  border-radius: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(231, 0, 11, 0.6);
  padding: 18px 24px;
  transform: translate(-50%, 0);
  left: 50%;
}
@media (min-width: 575px) {
  .navbar-sm .dropdown-menu {
    width: 300px;
    transform: none;
    right: 5%;
    left: unset;
  }
}
.navbar-sm .dropdown-menu .nav-item {
  display: flex;
  justify-content: center;
}

.footer h6 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  border-inline-start: solid 4px #FB2C36;
  padding-inline-start: 0.5rem;
  margin-bottom: 1rem;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
.footer ul li .prefix {
  background-color: #FB2C36;
  height: 3px;
  border-radius: 1rem;
  width: 0;
  transition: all 0.3s;
}
.footer ul li a {
  color: #99A1AF;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.5s;
}
.footer ul li:hover a {
  color: #FB2C36;
}
.footer ul li:hover .prefix {
  width: 20px;
}
.footer ul li .branch-name {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 400;
  text-transform: capitalize;
}
.footer ul li .branch-location {
  font-size: 14px;
  color: #99A1AF;
  font-weight: 400;
  text-transform: capitalize;
}
.footer .phone,
.footer .email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer .icon-container {
  border-radius: 0.5rem;
  background-color: rgba(251, 44, 54, 0.1019607843);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
}
.footer .icon-container:hover .glow-bg {
  opacity: 1;
}
.footer .icon-container .glow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  opacity: 0;
  box-shadow: 0px 0px 15px 4px #FB2C36;
  background-color: rgba(251, 44, 54, 0.1019607843);
  transition: 1.3s;
}
.footer .text {
  line-height: 1.3;
}
.footer .text span {
  color: #6A7282;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
.footer .text div {
  color: #99A1AF;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.footer .opening-hours {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(251, 44, 54, 0.1019607843);
  background: linear-gradient(135deg, rgba(251, 44, 54, 0.1) 0%, rgba(231, 0, 11, 0.05) 100%);
}
.footer .opening-hours .dot {
  background-color: #FB2C36;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.footer .opening-hours .title {
  color: #FB2C36;
  font-size: 24px;
  font-weight: 400;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .opening-hours .title .small {
  font-size: 14px;
}
.footer .opening-hours .text {
  color: #99A1AF;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer hr {
  border-top: solid 1px #27272A;
  opacity: 1;
}
.footer .copyright {
  color: #99A1AF;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 575px) {
  .footer .copyright {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.footer .copyright .links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .copyright .links a {
  color: #99A1AF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.footer .copyright .links span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #99A1AF;
  display: flex;
}

.hero {
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 116px;
  background-image: url(/assets/img/home/glow-bg.png);
}
.hero .row {
  position: absolute;
  top: 15%;
}
@media (max-width: 575px) {
  .hero .row {
    position: relative;
  }
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-size: cover;
  background-position: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.hero .hero-content h1 {
  font-size: 120px;
  font-weight: 400;
  text-transform: capitalize;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 65px;
    line-height: 100px;
  }
}
.hero .hero-content .subtitle {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero .hero-content .subtitle .line {
  height: 4px;
  width: 96px;
  background-color: rgba(251, 44, 54, 0.1019607843);
  border-radius: 2px;
  background: linear-gradient(90deg, #E7000B 0%, #FB2C36 100%);
}
.hero .hero-content .subtitle p {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
  color: #FFFFFF;
}
.hero .hero-content .actions {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 575px) {
  .hero .hero-content .actions {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.hero .hero-content .actions .start-now,
.hero .hero-content .actions .watch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: transparent;
  padding: 20px 24px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  border: solid 1px #FB2C36;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 80px;
  font-size: 1rem;
}
@media (max-width: 575px) {
  .hero .hero-content .actions .start-now,
  .hero .hero-content .actions .watch {
    gap: 0.5rem;
    padding: 15px 18px;
    height: 75px;
    width: 100%;
  }
}
.hero .hero-content .actions .start-now:before,
.hero .hero-content .actions .watch:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: unset;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #09090B;
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.hero .hero-content .actions .start-now:hover,
.hero .hero-content .actions .watch:hover {
  color: #FFFFFF;
}
.hero .hero-content .actions .start-now:hover:before,
.hero .hero-content .actions .watch:hover:before {
  width: 100%;
  left: 0;
  right: 0;
}
.hero .hero-content .actions .start-now .watch-icon,
.hero .hero-content .actions .watch .watch-icon {
  width: 48px;
  height: 48px;
}
@media (max-width: 575px) {
  .hero .hero-content .actions .start-now .watch-icon,
  .hero .hero-content .actions .watch .watch-icon {
    width: 36px;
    height: 36px;
  }
}
.hero .hero-content .actions .start-now p,
.hero .hero-content .actions .watch p {
  margin-bottom: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .hero .hero-content .actions .start-now p,
  .hero .hero-content .actions .watch p {
    font-size: 16px;
  }
}
.hero .hero-content .actions .start-now {
  background: linear-gradient(90deg, #E7000B 0%, #FF6900 100%);
}
.hero .hero-content .actions .watch {
  border: solid 1px #FFFFFF;
}
.hero .hero-content .stats-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.hero .hero-content .stats-container .stat {
  display: flex;
  align-items: flex-start;
}
.hero .hero-content .stats-container .stat .number {
  font-size: 48px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 575px) {
  .hero .hero-content .stats-container .stat .number {
    font-size: 32px;
  }
}
.hero .hero-content .stats-container .stat .plus {
  color: #FB2C36;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 575px) {
  .hero .hero-content .stats-container .stat .plus {
    font-size: 32px;
  }
}
.hero .hero-content .stats-container .stat p {
  margin-bottom: 0;
  color: #99A1AF;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .hero .hero-content .stats-container .stat p {
    font-size: 10px;
  }
}
.hero .hero-content .stats-container .separator {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(251, 44, 54, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  width: 1px;
  height: 64px;
}

.hero-bg {
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .hero-bg {
    display: none;
  }
}

.hero-bg-sm {
  display: none;
}
@media (max-width: 575px) {
  .hero-bg-sm {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -3rem;
  }
}

.service-card {
  padding: 1.5rem;
  background: linear-gradient(135deg, #18181B 0%, #000 100%);
  border-radius: 1.5rem;
  border: 0.8px solid #27272A;
  height: 286px;
  transition: 0.3s;
}
.service-card .icon-container {
  background: rgba(251, 44, 54, 0.1019607843);
  width: 80px;
  height: 80px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .icon-container .red-icon,
.service-card .icon-container .white-icon {
  width: 100%;
  height: 100%;
}
.service-card .icon-container .white-icon {
  display: none;
}
.service-card .service-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: capitalize;
  margin: 20px 0;
}
.service-card p {
  color: #99A1AF;
  font-size: 1rem;
  font-weight: 400;
}
.service-card:hover {
  border: 0.8px solid var(--lINEAR, #E7000B);
  background: linear-gradient(180deg, rgba(251, 44, 54, 0.16) 0%, rgba(231, 0, 11, 0.04) 100%);
}
.service-card:hover .icon-container {
  transform: rotate(25deg);
}
.service-card:hover .icon-container img {
  transform: rotate(-25deg);
}
.service-card:hover .icon-container img.red-icon {
  display: none;
}
.service-card:hover .icon-container img.white-icon {
  display: block;
}

.coach-card-frame {
  border: solid 1px #27272A;
  border-radius: 1rem;
}
.coach-card-frame:hover {
  border-color: rgba(251, 44, 54, 0.4);
}
.coach-card-frame .coach-card {
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.7) 14.42%, rgba(0, 0, 0, 0) 90%);
}
.coach-card-frame .coach-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  top: 0;
}
.coach-card-frame .coach-card .card-header .exp-badge {
  background-color: #FB2C36;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px rgba(251, 44, 54, 0.4);
}
.coach-card-frame .coach-card .card-header .rate-badge {
  background-color: #09090B;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(240, 177, 0, 0.5);
  display: flex;
  gap: 6px;
  align-items: center;
}
.coach-card-frame .coach-card .coach-img img {
  width: 100%;
  height: auto;
  z-index: -1;
  position: relative;
}
.coach-card-frame .coach-card .coach-info {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  bottom: 0;
}
.coach-card-frame .coach-card .coach-info .coach-name {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 400;
  text-transform: capitalize;
}
.coach-card-frame .coach-card .coach-info .coach-title {
  font-size: 14px;
  color: #FF6467;
  font-weight: 400;
  text-transform: uppercase;
}
.coach-card-frame .card-footer {
  background-color: #09090B;
  border-radius: 1rem !important;
  border-start-start-radius: 0 !important;
  border-start-end-radius: 0 !important;
  border-top: solid 1px #27272A;
  padding: 1rem;
}
.coach-card-frame .card-footer .global-btn {
  width: 100%;
}

.schedule {
  margin-top: 200px;
}
.schedule .schedule-card {
  padding: 1.5rem;
  border-radius: 1rem;
  width: 400px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .schedule .schedule-card {
    width: auto;
    margin-bottom: 1rem;
  }
}
.schedule .schedule-card .title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.schedule .schedule-card .title .dot {
  background-color: #FFFFFF;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.schedule .schedule-card hr {
  border: none;
  border-top: solid 1px #FFFFFF;
  margin: 20px 0;
}
.schedule .schedule-card .label {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.schedule .schedule-card .day {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 12px;
  text-align: center;
}
.schedule .schedule-card .duration {
  align-items: center;
}
.schedule .schedule-card .duration h3 {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.schedule .schedule-card .duration p {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: none;
  color: #FFFFFF;
}
.schedule .schedule-card .duration .start-time {
  text-align: start;
}
.schedule .schedule-card .duration .end-time {
  text-align: end;
}
.schedule .schedule-card.mma {
  background: linear-gradient(135deg, #E7000B 0%, #F54900 100%);
}
.schedule .schedule-card.boxing {
  background: linear-gradient(135deg, #F54900 0%, #E17100 100%);
}
.schedule .schedule-card.kickboxing {
  background: linear-gradient(135deg, #096 0%, #009689 100%);
}
.schedule .schedule-card.muaythai {
  background: linear-gradient(135deg, #E60076 0%, #EC003F 100%);
}
.schedule .schedule-card.fitness {
  background: linear-gradient(135deg, #E7000B 0%, #EC003F 100%);
}
.schedule .schedule-card.crossfit {
  background: linear-gradient(135deg, #7F22FE 0%, #9810FA 100%);
}
.schedule .schedule-card.fitness-kids {
  background: linear-gradient(135deg, #C800DE 0%, #E60076 100%);
}
.schedule .schedule-card.zumba {
  background: linear-gradient(135deg, #155DFC 0%, #0092B8 100%);
}
@media (min-width: 992px) {
  .schedule .col-md-6 {
    padding: 0 3rem;
  }
}

.membership .plan-offer {
  border-radius: 50px;
  border: 2px solid #E7000B;
  display: flex;
  height: 50px;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.membership .plan-card {
  padding: 35px 24px;
  border-radius: 16px;
  border: 1px solid #E7000B;
  background: rgba(24, 24, 27, 0.5);
  position: relative;
}
@media (max-width: 992px) {
  .membership .plan-card {
    width: 350px;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .membership .plan-card {
    width: auto;
  }
}
.membership .plan-card .title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1rem;
}
.membership .plan-card .price {
  font-size: 2rem;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.membership .plan-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #99A1AF;
}
.membership .plan-card .items-list {
  margin-bottom: 2rem;
}
.membership .plan-card .items-list li {
  font-size: 14px;
  font-weight: 400;
  color: #D1D5DC;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.membership .plan-card.popular {
  background: linear-gradient(180deg, rgba(251, 44, 54, 0.2) 0%, rgba(231, 0, 11, 0.05) 100%);
  box-shadow: 1.782px 0.908px 32.2px 2.8px rgba(251, 44, 54, 0.5);
}
.membership .plan-card.popular .badge {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 0;
  background-color: #FB2C36;
  padding: 12px 18px;
  border-radius: 50px;
  text-transform: capitalize;
  color: #FFFFFF;
}

.locations .locations-list .location-card {
  border-radius: 16px;
  background: #27272A;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .locations .locations-list .location-card {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.locations .locations-list .location-card .location-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.locations .locations-list .location-card .location-img img {
  width: 100%;
  height: auto;
}
.locations .locations-list .location-card .location-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 1.5rem 1rem 1.5rem;
}
.locations .locations-list .location-card .location-info .name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: capitalize;
}
.locations .locations-list .location-card .location-info .address,
.locations .locations-list .location-card .location-info .phone {
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #99A1AF;
  text-transform: capitalize;
}
.locations .locations-list .location-card .location-info .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-container {
  border-radius: 16px;
  border: 0.8px solid #27272A;
  background: rgba(39, 39, 42, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
}
.form-container label {
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.form-container input,
.form-container textarea {
  border-radius: 8px;
  border: 1px solid rgba(160, 160, 160, 0.7);
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  padding: 12px;
  height: 44px;
}
.form-container input::-moz-placeholder, .form-container textarea::-moz-placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
  text-transform: capitalize;
}
.form-container input::placeholder,
.form-container textarea::placeholder {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
  text-transform: capitalize;
}
.form-container input:focus,
.form-container textarea:focus {
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}
.form-container textarea {
  height: auto;
}

@media (max-width: 575px) {
  .gallery .gallery-list .gallery-col {
    padding: 0;
  }
}
.gallery .gallery-list .gallery-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #27272A;
  transition: 0.3s;
  margin: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .gallery .gallery-list .gallery-card {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.gallery .gallery-list .gallery-card:hover .gallery-img {
  border: 2px solid #E7000B;
  background-color: #FB2C36;
}
.gallery .gallery-list .gallery-card:hover .gallery-img .main-img {
  opacity: 0;
}
.gallery .gallery-list .gallery-card:hover .gallery-img .hover-img {
  opacity: 0.8;
}
.gallery .gallery-list .gallery-card .gallery-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid #27272A;
}
@media screen and (max-width: 575px) {
  .gallery .gallery-list .gallery-card .gallery-img {
    border-radius: 6px;
  }
}
.gallery .gallery-list .gallery-card .gallery-img--1 {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .gallery .gallery-list .gallery-card .gallery-img--1 {
    height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .gallery .gallery-list .gallery-card .gallery-img--1 {
    height: 102px;
  }
}
.gallery .gallery-list .gallery-card .gallery-img--2 {
  height: 280px;
}
@media screen and (max-width: 768px) {
  .gallery .gallery-list .gallery-card .gallery-img--2 {
    height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .gallery .gallery-list .gallery-card .gallery-img--2 {
    height: 72px;
  }
}
.gallery .gallery-list .gallery-card .gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.4s ease;
}
.gallery .gallery-list .gallery-card .gallery-img .main-img {
  opacity: 1;
  z-index: 1;
}
.gallery .gallery-list .gallery-card .gallery-img .hover-img {
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.social-container {
  display: flex;
  gap: 0.5rem;
}
.social-container .social-item {
  border-radius: 10px;
  padding: 6px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(216, 216, 216, 0.0509803922);
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.0392156863) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.social-container .social-item.facebook {
  box-shadow: 0 0 6.667px 0 rgba(40, 126, 255, 0.3215686275) inset, 6.667px 3.333px 13.333px 0 rgba(0, 0, 0, 0.08);
  background-image: url(/assets/img/icons/facebook-bg.svg);
}
.social-container .social-item.facebook:hover {
  border-color: rgba(40, 126, 255, 0.3215686275);
}
.social-container .social-item.instagram {
  box-shadow: 0 0 6.667px 0 rgba(190, 13, 252, 0.32) inset, 6.667px 3.333px 13.333px 0 rgba(0, 0, 0, 0.08);
  background-image: url(/assets/img/icons/instagram-bg.svg);
}
.social-container .social-item.instagram:hover {
  border-color: rgba(190, 13, 252, 0.32);
}
.social-container .social-item.linkedin {
  box-shadow: 0 0 6.667px 0 rgba(13, 137, 252, 0.32) inset, 6.667px 3.333px 13.333px 0 rgba(0, 0, 0, 0.08);
  background-image: url(/assets/img/icons/linkedin-bg.svg);
}
.social-container .social-item.linkedin:hover {
  border-color: rgba(13, 137, 252, 0.32);
}
.social-container .social-item.youtube {
  box-shadow: 0 0 6.667px 0 rgba(252, 13, 27, 0.32) inset, 6.667px 3.333px 13.333px 0 rgba(0, 0, 0, 0.08);
  background-image: url(/assets/img/icons/youtube-bg.svg);
}
.social-container .social-item.youtube:hover {
  border-color: rgba(252, 13, 27, 0.32);
}
.social-container .social-item.tiktok {
  box-shadow: 0 0 6.667px 0 rgba(8, 130, 141, 0.32) inset, 6.667px 3.333px 13.333px 0 rgba(0, 0, 0, 0.08);
  background-image: url(/assets/img/icons/tiktok-bg.svg);
}
.social-container .social-item.tiktok:hover {
  border-color: rgba(8, 130, 141, 0.32);
}

.testimonials {
  position: relative;
}
.testimonials .blur-bg {
  opacity: 0.5764;
  background: rgba(251, 44, 54, 0.2);
  filter: blur(200px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.testimonials .splide__track {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 786px) {
  .testimonials .splide__track {
    width: 100%;
  }
}
.testimonials .splide__pagination {
  bottom: -3rem;
  gap: 12px;
}
@media (max-width: 786px) {
  .testimonials .splide__pagination {
    bottom: -2rem;
  }
}
@media (max-width: 575px) {
  .testimonials .splide__pagination {
    bottom: -1.5rem;
  }
}
.testimonials .splide__pagination .splide__pagination__page {
  border-radius: 50%;
  border: 2px solid #3F3F46;
  background: #27272A;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.testimonials .splide__pagination .splide__pagination__page.is-active {
  width: 4rem;
  height: 1rem;
  margin: 0 1rem;
  flex-shrink: 0;
  border-radius: 50px;
  border: 2px solid #FF6467;
  background: linear-gradient(90deg, #E7000B 0%, #FB2C36 50%, #E7000B 100%);
  box-shadow: 0 10px 15px -3px rgba(251, 44, 54, 0.5), 0 4px 6px -4px rgba(251, 44, 54, 0.5);
}
.testimonials .splide__arrows {
  width: 100%;
}
@media (max-width: 786px) {
  .testimonials .splide__arrows {
    width: 50%;
    position: absolute;
    bottom: -1rem;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
@media (max-width: 575px) {
  .testimonials .splide__arrows {
    width: 90%;
    bottom: -0.8rem;
  }
}
.testimonials .splide__arrow {
  border-radius: 50%;
  border: 2px solid #FB2C36;
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(251, 44, 54, 0.5019607843);
  width: 4rem;
  height: 4rem;
  padding: 1rem;
}
@media (max-width: 786px) {
  .testimonials .splide__arrow {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
  }
}
@media (max-width: 575px) {
  .testimonials .splide__arrow {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }
}
.testimonials .splide__arrow svg {
  fill: #FB2C36;
  font-size: 2rem;
}
.testimonials .splide__arrow--next {
  right: 0;
}
.testimonials .splide__arrow--prev {
  left: 0;
}
.testimonials .testimonial-card {
  padding: 2rem;
  margin: 2rem;
  border-radius: 1.5rem;
  border: 2px solid #27272A;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: url("/assets/img/icons/quote.svg") no-repeat 90% 10%/100px, linear-gradient(135deg, #18181B 0%, #27272A 50%, #000 100%);
  transition: all 0.3s ease-in-out;
}
.testimonials .testimonial-card:hover {
  border-color: #E7000B;
  box-shadow: 1.782px 0.908px 32.2px 2.8px rgba(251, 44, 54, 0.5);
  transform: rotate(5deg);
}
.testimonials .testimonial-card .rate {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.testimonials .testimonial-card .body {
  color: #D1D5DC;
  font-family: Arial;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin: 1.5rem auto;
  height: 140px;
}
.testimonials .testimonial-card .name {
  color: #FFFFFF;
  font-family: Arial;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1rem;
}/*# sourceMappingURL=main.css.map */