@import url(mainstyle.css);

* {
  font-family: var(--primefont);
}

a {
  color: inherit;
  text-decoration: none;
}

[data-musclenox-theme="dark"] [data-logo="dark"],
[data-musclenox-theme="light"] [data-logo="light"] {
  display: block;
}

[data-musclenox-theme="dark"] [data-logo="light"],
[data-musclenox-theme="light"] [data-logo="dark"] {
  display: none;
}

/* icon BG */
.icon-bg {
  min-width: 35px;
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--icon-text);
}
.icon-xl {
  min-width: 60px !important;
  min-height: 60px !important;
}
.icon-bg-lg {
  min-width: 50px;
  min-height: 50px;
}
header {
  transition: 0.2s ease;
  z-index: 999;
}
header.fix {
  background-color: transparent;
  position: fixed !important;
}

/* header CSS */
.nav-link {
  color: var(--nav-text);
  font-weight: 500;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link,
.nav-item .nav-link:focus,
.f-nav-item:hover .f-nav-link,
.f-nav-item .f-nav-link:focus,
.social-icon a:hover {
  color: var(--prime-text) !important;
}

.theme-switch-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* banner */
.hero-banner {
  background: linear-gradient(
      to right,
      rgb(41, 50, 60) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("../../asstes/images/banner.webp") no-repeat top/cover;
  min-height: 700px;
  display: flex;
}
.banner-content {
  width: 750px;
  max-width: 100%;
  color: #fff;
}
@media (max-width: 992px) {
  .hero-banner {
    min-height: 450px;
  }
  .banner-content {
    padding: 5px;
  }
  .banner-content h2 {
    font-size: 35px;
  }
  .banner-content p {
    font-weight: normal;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .partner-gallery img {
    max-width: 130px;
  }
  .fs-10 {
    font-size: 28px !important;
  }
}
.partner {
  background-color: var(--alt-bg);
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--head-text);
}
.card {
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transform: scale(1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-card img {
  height: 100%;
  min-height: 400px;
  max-height: 700px;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.trainer-card img{
  height: 100%;
  min-height: 330px;
  max-height: 350px;
}

.ribbon-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}
.ribbon {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  line-height: 20px;
  transform: rotate(45deg);
  position: absolute;
  display: block;
  width: 155px;
  padding: 10px 0;
  top: 30px;
  right: -30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.contact-banner {
  position: relative;
  min-height: 500px;
  background: linear-gradient(to bottom right,
    #121a13,
    #1b3321,
    #749e60,
    #3e5540,
    #0d1117
  );
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid var(--prime-border);
}
.input-text::placeholder {
  color: var(--white-text);
  text-transform: capitalize;
}
.footer-section{
  background:linear-gradient(
      to right,
      rgb(20, 20, 20) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ), url('../../asstes/images/footer-section.webp') no-repeat;
  background-size: cover;
  background-position: center;
}

#backtotop {
    position: fixed;
    bottom: 60px;
    right: 30px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center; 
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
} 
.error{
  color: rgb(125, 0, 0);
  background-color: white;
}
#newsletter div.error{
  position: absolute;
  bottom: -24px;
}