@import url(mainstyle.css);

* {
  font-family: var(--primefont);
}

a {
  color: inherit;
  text-decoration: none;
}

[data-tennixa-theme="dark"] [data-logo="dark"],
[data-tennixa-theme="light"] [data-logo="light"] {
  display: block;
}

[data-tennixa-theme="dark"] [data-logo="light"],
[data-tennixa-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) !important;
  background-color: var(--icon-bg) !important;
}

.icon-xl {
  min-width: 60px !important;
  min-height: 60px !important;
  background-color: var(--icon-alt-bg) !important;
}

.circle-icon-lg {
  min-width: 80px;
  min-height: 80px;
}

header {
  transition: 0.2s ease;
  z-index: 999;
}

header.fix {
  background-color: transparent;
}

/* head-content */
.head-content {
  width: 100%;
  margin: auto;
  max-width: 100%;
}

/* 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:hover {
  color: var(--nav-alt-text) !important;
}

.theme-switch-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  background: url('../../assets/images/banner.webp');
  background-position: top center;
  background-size: cover;
  min-height: 750px;
  border-radius: 45px;
  margin-top: 20px;
  position: relative;
}

.banner-heading h2 {
  letter-spacing: 3px;
  font-size: calc(2em + 8vh);
  padding: 0px;
  position: absolute;
  bottom: 0%;
  font-weight: 700;
  z-index: 1;
}
/* LARGE SCREENS (>= 1400px) */
@media (min-width: 1400px) {
  .banner-heading h2 {
    font-size: calc(3em + 5vh); 
  }
}

@media (max-width: 992px) {
  .banner-heading h2 {
    font-size: calc(2em + 4vh);
    bottom: -2%;
    letter-spacing: 0.05em;
  }

  .pt {
    padding-top: 15px !important;
  }
  .banner {
    min-height: 600px;
  }
  .banner-card-img img {
    max-height: 60px;
  }
}

@media (max-width: 528px) {
  .banner-heading h2 {
    display: block; 
    font-size: calc(1.5em + 1vh); 
    margin: 10px; 
    bottom: initial; 
  }
}

.banner-card-img img {
  max-height: 200px;
  object-position: top;
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color:var(--prime-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.about-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.service-img{
  max-width: 400px;
}
.trainer-image{
  width: 100%;
  max-height: 400px;
  height: 380px;
}

@media(max-width:1200px){
  .ps-6{
    padding-left:0rem !important;
}
  .pe-6{
    padding-right:0rem !important;
}
}
/* Give slides some visible style */
.splide__slide { 
  padding: 20px; 
}
.testimonial-img{
    width: 75px;
    height: 75px;
    border-radius: 50%; 
    outline: 2px solid var(--prime-border);
    outline-offset: 2px;
    overflow: hidden;
}
.testimonial-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: #ccc;
}

.star:before {
  content: '★';
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}

.accordion-button::after{
  margin-left: 0px;
  background-image: unset !important;
}
.faq-icon {
  margin-left: auto;
  color: var(--para-text) !important;
  transform: rotate(90deg);
}

.accordion .accordion-button {
    background: var(--alt-bg);       
    border: none !important;
    color: var(--head-text);
    margin-bottom: 15px;             
    border-radius: 0px !important;
}


.accordion .accordion-button:focus {
    box-shadow: none !important;
   border: none !important;
    color: var(--head-text); 
}

.accordion .accordion-button:not(.collapsed) {
    background: var(--head-bg);
    color: var(--head-text);
    border: none !important;
    box-shadow: none !important;
}
.accordion-body, .accordion-item{
  background-color: var(--head-bg);
}

.form-control::placeholder{
  color: var(--head-text);
  text-transform: capitalize;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-text ul li a {
    color: var(--white-text);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-text ul li a:hover {
    color: var(--nav-alt-text); 
    padding-left: 5px;      
}

.footer-text ul li a:hover i {
    color: var(--nav-alt-text);
    transform: translateX(3px); 
}
.contact-item a,
.contact-item span {
    transition: 0.3s ease;
}

.contact-item:hover a,
.contact-item:hover span {
    color: var(--nav-alt-text);  
      padding-left: 5px;  
}

.contact-item:hover i {
    color: var(--nav-alt-text);  
    transform: translateX(3px);
    transition: 0.3s ease;
}


#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: red;
}
#newsletter div.error{
  position: absolute;
  left: 15px;
  bottom: -25px;
}
.alertmsg{
  z-index: 9999;
}