@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.timerBox {
  width: 240px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.timerBox .title {
  margin-bottom: 5px;
}
.timerBox.alt {
  color: #fff;
}
.timerBox.alt ul li {
  border-color: #fff;
}
.timerBox ul {
  margin: 0;
  padding: 0;
  min-width: 220px;
  display: flex;
  justify-content: center;
}
.timerBox ul li {
  list-style: none;
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
  border-right: 2px solid #fff;
  padding-right: 10px;
  font-weight: 400;
  line-height: 14px;
}
.timerBox ul li:last-child {
  margin-right: 0;
  border-right: 0;
  padding-right: 0;
}
.timerBox ul li span {
  font-family: "Lato-bold", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 24px;
  font-weight: normal;
  background: none repeat scroll 0 0 #242424;
  color: #fff;
}

nav {
  border-bottom: 2px solid #69beeb;
  padding-bottom: 10px;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-item .active {
  padding-bottom: 0;
  border-bottom: 2px solid #69beeb;
}

.nav-link {
  display: inline-block;
}

.object-fit-cover {
  object-fit: cover;
}

.hero-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 130px;
  right: 130px;
  height: 100vh;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-overlay {
    left: 80px;
    right: 80px;
  }
}
@media (max-width: 576px) {
  .hero-overlay {
    left: 50px;
    right: 50px;
  }
}

section {
  position: relative;
  z-index: 1;
  background-attachment: scroll;
}

.hero-div-1 {
  border: 2px solid white;
  font-size: 30px;
  text-transform: uppercase;
  padding: 20px 30px;
  font-family: Montserrat-Bold, serif;
}
@media (max-width: 576px) {
  .hero-div-1 {
    font-size: 20px;
    padding: 10px 15px;
  }
}

.hero-div-2 {
  margin-top: 20px;
  font-size: 40px;
  text-transform: uppercase;
  font-family: Montserrat-Bold, serif;
  line-height: normal;
  text-align: left;
}
@media (max-width: 576px) {
  .hero-div-2 {
    font-size: 20px;
  }
}

.hero-div-3 {
  margin-top: 30px;
}
.hero-div-3 button {
  background-color: #69beeb;
  color: #fff;
  font-size: 20px;
  border: none;
  padding: 10px;
}
@media (max-width: 576px) {
  .hero-div-3 button {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.section-half {
  min-height: 500px;
  background-size: auto 90%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #69beeb;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease;
}
.section-half:hover {
  filter: grayscale(100%);
}
@media (max-width: 768px) {
  .section-half {
    min-height: 300px;
    background-size: auto 70%;
  }
}
@media (max-width: 576px) {
  .section-half {
    min-height: 220px;
    background-size: auto 60%;
  }
}

.bg-left {
  background-image: url("../images/for_men_bg.png");
  background-position: right bottom;
  background-size: contain;
}

.bg-right {
  background-image: url("../images/for_women_bg.png");
  background-position: left bottom;
  background-size: contain;
}

/* Animate In */
.animate-slide-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  0% {
    background-position-x: -100%;
    opacity: 0;
  }
  100% {
    background-position-x: right;
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    background-position-x: 200%;
    opacity: 0;
  }
  100% {
    background-position-x: left;
    opacity: 1;
  }
}
#leftSide {
  text-align: left;
  padding-left: 70px;
}

#leftSide .hero-overlay, #rightSide .hero-overlay {
  height: 100%;
}
#leftSide .heading, #rightSide .heading {
  font-family: Montserrat-Bold, serif;
  font-size: 34px;
  line-height: normal;
}
@media (max-width: 576px) {
  #leftSide .heading, #rightSide .heading {
    font-size: 22px;
  }
}
#leftSide .description, #rightSide .description {
  font-size: 12px;
  line-height: normal;
}
#leftSide button, #rightSide button {
  position: relative;
  overflow: hidden;
  color: white;
  border: 2px solid white;
  background: transparent;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
  transition: color 0.4s ease;
  font-family: Montserrat-Bold, serif;
  font-size: 18px;
}
#leftSide button::before, #rightSide button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: white;
  z-index: -1;
  transition: height 0.3s ease;
}
#leftSide button:hover, #rightSide button:hover {
  color: #69beeb;
}
#leftSide button:hover::before, #rightSide button:hover::before {
  height: 100%;
}

/* --- Testimonial Cards --- */
.our-trainers {
  background: #fff;
}

.our-trainer-box {
  position: relative;
}

.product-image-wrapper {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  padding: 15px;
}

.product-content {
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-trainers img {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}

.product-name a {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.product-name a:hover {
  color: #ec3642;
}

.product-info p {
  font-size: 14px;
  color: #555;
}

.actions i {
  color: #ec3642;
  transition: color 0.3s ease;
}

.actions i:hover {
  color: #000;
}

/* --- Custom Cards --- */
.custom-card {
  position: relative;
  height: 550px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media (max-width: 768px) {
  .custom-card {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .custom-card {
    height: 340px;
  }
}

.card-top, .card-bottom {
  transition: height 0.3s ease;
  overflow: hidden;
}

.card-top {
  height: 60%;
}

.card-bottom {
  height: 40%;
  background-color: #343a40;
  color: white;
  padding: 1rem;
  transition: background-color 0.3s ease, height 0.3s ease;
}
@media (max-width: 576px) {
  .card-bottom {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-card:hover .card-top {
  height: 50%;
}
.custom-card:hover .card-bottom {
  height: 50%;
  background-color: #007bff;
}
.custom-card:hover .top-img {
  transform: rotate(-3deg) scale(1.1);
}
.custom-card:hover .glove-icon-wrapper {
  top: 50%;
}

/* Boxing glove icon */
.glove-icon-wrapper {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: top 0.3s ease;
}

.glove-icon {
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Footer --- */
.page-footer section {
  background-color: black;
  padding: 1rem 0;
}
.page-footer .footer-title h4 {
  font-family: Montserrat-Bold, serif;
  font-size: 14px;
}
.page-footer .textwidget {
  color: #999;
}

.no-scrollbar {
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.offcanvas.text-bg-dark {
  background-color: #2b2b2b;
  color: #ccc;
}

.offcanvas a:hover {
  color: #fff;
}

.btn-custom {
  color: #fff;
  background-color: #69beeb;
}

a {
  color: #69beeb;
}

/* --- Hover Cards --- */
.hover-card {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hover-card {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .hover-card {
    height: 260px;
  }
}

.hover-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

/* White border */
.hover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid white;
  opacity: 0;
  transition: inset 0.6s ease, opacity 0.3s ease;
  z-index: 2;
}

/* Dark overlay INSIDE the border */
.hover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: inset 0.6s ease, background 0.6s ease;
  z-index: 1;
}

/* Hover state */
.hover-card:hover::before {
  opacity: 1;
  inset: 20px;
}

.hover-card:hover::after {
  inset: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.hover-card .card-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 80%;
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hover-card .card-title {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  transition: transform 0.6s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .hover-card .card-title {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}

.hover-card .card-desc,
.hover-card .card-link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin: 0;
}

.hover-card .card-desc {
  margin-top: 10px;
  font-size: 0.95rem;
}
@media (max-width: 576px) {
  .hover-card .card-desc {
    font-size: 0.75rem;
  }
}

.hover-card .card-link {
  display: inline-block;
  margin-top: 15px;
  color: #007bff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .hover-card .card-link {
    font-size: 0.85rem;
  }
}

.hover-card .card-link:hover {
  text-decoration: underline;
}

/* Hover animations */
.hover-card:hover .card-bg {
  transform: scale(1.1);
}

.hover-card:hover .card-overlay {
  transform: scale(0.95);
}

.hover-card:hover .card-desc,
.hover-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

#servicesSection {
  padding-bottom: 100px;
}

/*# sourceMappingURL=main.css.map */
