@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&family=Raleway:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --header-height: 5rem;
  /* color */
  --main-color: #ff7101;
  --black-color: #171717;
  --white-color: #ffffff;
  /* font & typography */
  --font-body: "Poppins", sans-serif;
  --font-title: "Raleway", sans-serif;

  --big-font-size: 3.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
}
/* BASIC */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  outline: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: var(--normal-font-size);
  color: var(--black-color);
  position: relative;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
/* Cursor animation start */
.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; /* so that it stays on top of all other elements */
}
/* Cursor animation end */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  border: 1px solid var(--white-color);
  padding: 1rem 1.5rem;
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;

  
}
.btn:hover {
  transform: translateY(-10px);
  color: var(--white-color);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
/* Header Section Start */
.header {
  width: 100%;
  background-color: #000;
  padding: 1rem 1.25rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header-shadow {
  background-color: rgba(0, 0, 0, 0.8);
}
.header-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  text-decoration: uppercase;
  animation: movedown 1s linear 1;
  animation-delay: 1s;
  visibility: hidden;
  animation-fill-mode: forwards;
}
@keyframes movedown {
  0% {
    transform: translateY(-100px);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
.logo i {
  font-size: var(--h1-font-size);
  transform: rotate(45deg);
  color: var(--main-color);
}
.logo span {
  font-weight: 200;
  color: var(--main-color);
  margin: left 5px;
}
.nav-menu {
  display: flex;
  align-items: center;
  animation: movedown 1s linear 1;
  animation-delay: 2s;
  visibility: hidden;
  animation-fill-mode: forwards;
}
.nav-menu li {
  margin-left: 1rem;
}
.nav-link {
  font-size: var(--h3-font-size);
  font-weight: 300;
  text-decoration: uppercase;
  color: var(--white-color);
  padding-bottom: 0.5rem;
  transition: all 0.4s ease-in-out;
}
.nav-link:hover,
.active {
  border-bottom: 2px solid var(--main-color);
}
.nav-toggle {
  display: none;
}
/* Header Section End */
/* Home Section Start */
.home {
  padding: 0;
}
.home .slide {
  width: 100%;
  height: 110vh;
  background-size: cover !important;
  background-position: center !important;
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 0, 100% 85%, 0 100%, 0 0);
}
.home .slide .content {
  width: 60rem;
  transform: translateY(-5rem);
}
.section-title {
  position: relative;
  text-align: left;
  font-size: var(--big-font-size);
  margin: 1rem 0;
  color: transparent;
  text-transform: uppercase;
  margin-left: -10px;
  -webkit-text-stroke: #fff;
  background: url(images/back.png);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 20s linear infinite;
}
@media (max-width: 380px) {
  .section-title {
    font-size: 34px;
  }
}
@keyframes back {
  100% {
    background-position: 2000px 0;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  background: url(images/title-bg.png.png) no-repeat;
  background-position: center;
  background-size: cover;
  width: 130px;
  height: 130px;
  z-index: -1;
}
.section-header {
  font-size: var(--h2-font-size);
  font-family: var(--font-title);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--white-color);
  margin-top: -20px;
  z-index: 1;
}
.home p {
  color: var(--white-color);
  font-family: var(--font-title);
  font-size: var(--h2-font-size);
  padding: 2rem 0;
}
.swiper-pagination-bullet {
  height: 1rem !important;
  width: 1rem !important;
  background-color: var(--white-color) !important;
  transform: translateY(-7rem) !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
}
/* About Section Start */
.about {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.about-container .left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.about-container .left img {
  transition: all 0.4s ease;
}
.about-container .left img:hover {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translateY(10px);
  cursor: pointer;
}
.about-container .left img:first-child {
  transform: translateY(-30px);
  filter: grayscale(100%);
}
.about-container .left img:first-child:hover {
  transform: translateY(-20px);
  filter: grayscale(0%);
}
.about-container .right {
  padding: 0 2rem;
}
.about-container .right h1 {
  color: var(--black-color);
  text-align: left;
}
.about-container .right h3 {
  color: var(--black-color);
}
.about-container .right p {
  margin-top: 3rem;
  line-height: 1.6;
  font-size: var(--h3-font-size);
  font-weight: 400;
}
.about-container .right .btn {
  margin: 3rem 0;
  color: var(--black-color);
  border-color: var(--main-color);
}
.about-container .right .btn:hover {
  color: var(--white-color);
}
/* About Section End */
/* Courses Section Start */
.courses-container {
  width: 100%;
  min-height: 100vh;
  background: url(images/courses.png.png) no-repeat;
  background-position: center;
  background-size: cover;
  clip-path: polygon(50% 0%, 100% 0, 100% 90%, 0 100%, 0 0);
}
.courses-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-height) 3rem;
}
.courses-content .section-title {
  color: var(--white-color);
  text-align: left;
}
.courses-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 3rem;
}
.courses-box .box {
  width: 300px;
  height: 200px;
  margin: 10px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.courses-box .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courses-box .box .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background-color: rgba(255, 71, 01, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.courses-box .box:hover .info {
  transform: translate(-50%, -50%) scale(1);
}
.courses-box .box .info h3 {
  text-decoration: capitalize;
  font-size: 2rem;
  color: var(--white-color);
  margin-bottom: 1.2rem;
}
.courses-box .box .info .btn {
  padding: 10px;
}
/* Courses Section End */
/* Trainer Section Start */
.trainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-height) 3rem;
}
.trainer-container {
  width: 100%;
  min-height: 100vh;
}
.trainer-container h1 {
  min-height: 10vh;
  color: var(--black-color);
  text-align: left;
}
.trainer-container h3 {
  color: var(--black-color);
}
.trainer-container p {
  font-size: var(--h3-font-size);
  font-weight: 300;
  padding-top: 2rem;
}
.trainer-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.trainer-box .trainer-img {
  width: 300px;
  height: 480px;
  margin-left: 2rem;
  margin-bottom: 7rem;
  position: relative;
  cursor: pointer;
}
.trainer-box .trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trainer-box .trainer-img::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-color: var(--main-color);
  z-index: -1;
}
.trainer-box .trainer-img::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-color: var(--main-color);
  z-index: -1;
}
.trainer-box .trainer-img .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 71, 01, 0.5);
  opacity: 0;
}
.trainer-box .trainer-img:hover .inner {
  opacity: 1;
}
.trainer-box .trainer-img .inner a {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trainer-box .trainer-img .inner a i {
  font-size: var(--h1-font-size);
  background-color: var(--white-color);
  padding: 1rem;
  color: var(--main-color);
  border-radius: 50%;
}
.trainer-box .trainer-img h1 {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: var(--h2-font-size);
  font-weight: 700;
  padding-top: 1rem;
  text-align: center;
}
.trainer-box .trainer-img p {
  text-align: center;
  font-size: var(--h3-font-size);
  text-transform: capitalize;
  font-weight: 300;
  margin-top: -1.5rem;
}
/* Trainer Section End */
/* Video Section Start */
.video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(images/video.png.png) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
}
.video-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-content i {
  font-size: var(--big-font-size);
  color: var(--white-color);
  background-color: var(--main-color);
  padding: 1rem;
  border-radius: 50%;
}
.video-content h1 {
  font-size: var(--h1-font-size);
  padding: 1rem 0;
  color: var(--white-color);
  text-transform: uppercase;
}
/* Video Section End */
/* shedule Section Start */
.timetable {
  margin: 30px 0 50px;
}
.timetable table {
  width: 100%;
}
.timetable table td,
.timetable table th {
  background-color: black;
  color: white;
  border: 1px solid #5354537a;
  height: 65px;
  padding: 5px;
  text-align: center;
  width: 9%;
}
.timetable table td a {
  color: #fff;
  display: block;
  font-weight: 600;
  height: 55px;
  line-height: 55px;
  text-transform: uppercase;
}
.timetable table th {
  font-size: 0.875em;
  font-weight: 400;
}
.timetable .pilates {
  background-color: #46cb18;
}
.timetable .running {
  background-color: #46cb18;
}
.timetable .crossfit {
  background-color: #06a10b;
}
.timetable .yoga {
  background-color: #46cb18;
}
.timetable .choreo {
  background-color: #06a10b;
}
.timetable .salsa {
  background-color: #abd66d;
}
.timetable.mini {
  list-style: none;
}
.timetable.mini li {
  background-color: #fbfbfb;
  font-size: 0.8em;
  line-height: 30px;
  margin: 5px 0;
  padding: 4px 4px 4px 130px;
}
.timetable.mini li span {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  margin: 3px;
  padding: 0 20px;
  text-transform: uppercase;
}
.timetable.mini li span:first-child {
  color: #919191;
  font-size: 1.1em;
  text-transform: none;
  width: 120px;
  margin: 0 0 0 -120px;
}
.timetable-responsive {
  width: 100%;
  height: auto;
  overflow-x: auto;
  padding: 0 0 10px 0;
}
.timetable-responsive table {
  min-width: 940px;
}
/**
   *
   *
/* Schedule Section End */
/* Schedule Section End */
/* BMI Section Start */
body {
  font-family: Arial, sans-serif;
}

h1 {
  text-align: center;
}

#calculator {
  max-width: 300px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="number"] {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border: 2px solid #ff7101;
  outline: none;
  background: white;
}
input[type="number"]::placeholder {
  color: #ff7101;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #ff7101;
  color: black;
  border: none;
  cursor: pointer;
}

#result {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

/* BMI Section End */
/* Blog Section Start */
.blog {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--header-height) 3rem;
}
.blog-container {
  width: 100%;
  min-height: 60vh;
}
.blog-container .section-title {
  color: var(--black-color);
}
.blog-container .section-header {
  color: var(--black-color);
}
.blog-container .blog-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 3rem;
}
.blog-container .blog-content .inner {
  width: 350px;
  margin-bottom: 1rem;
}
.blog-container .blog-content .inner .blog-img {
  position: relative;
  cursor: pointer;
}
.blog-container .blog-content .inner .blog-img img {
  width: 100%;
  height: 100%;
}
.blog-container .blog-content .inner .blog-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 71, 01, 0.5);
  opacity: 0;
}
.blog-container .blog-content .inner .blog-img:hover:after {
  opacity: 1;
}
.blog-container .blog-content .inner p {
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.8;
  text-align: left;
}
/* Footer Section Start */
.contact {
  padding: 128px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .contact {
    padding: 15px;
    flex-direction: column;
    align-items: center;
  }
}
.contact .form {
  width: 45%;
}
.contact .form h2 {
  font-size: 32px;
  color: #212529;
  padding-bottom: 10px;
  width: 100%;
}
.contact .form .submit {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact .form .submit input,
.contact .form .submit textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #95a5a6;
  outline: none;
  margin: 12px 0;
  font-size: 16px;
}
.contact .form .submit input:focus,
.contact .form .submit textarea:focus {
  border: 1px solid #111;
}
.contact .form .submit input::placeholder {
  color: #7f8c8d;
  font-size: 16px;
}
.contact .form .submit textarea::placeholder {
  color: #7f8c8d;
  font-size: 16px;
}
.contact .form .submit a {
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  background: #111;
  color: #fff;
  text-align: center;
  margin: 15px 0;
  font-size: 18px;
}
.contact .map {
  width: 45%;
}
.contact .map h2 {
  font-size: 32px;
  color: #212529;
  padding-bottom: 10px;
  width: 100%;
}
.contact .map p {
  font-size: 18px;
  color: #212529;
  padding-bottom: 30px;
  width: 100%;
}
.contact .map p i {
  color: red;
  padding-right: 8px;
}
.contact .map iframe {
  width: 100%;
}
.footer {
  padding: 35px 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #212529;
}
@media (max-width: 991px) {
  .footer {
    padding: 35px 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #212529;
  }
  .contact .form,
  .contact .map {
    width: unset;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 35px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: #212529;
  }
}
.footer p {
  color: #fff;
  justify-content: flex-start;
}
.footer p a {
  font-weight: 600;
  color: rgb(185, 188, 194);
  text-decoration: none;
}
.footer p i {
  color: #f13a11;
  padding-right: 8px;
  line-height: 1.6;
}
/* Responsive Design with Media Query  */
@media screen and (max-width: 1042px) {
  .nav {
    padding: 15px 30px;
  }
  .nav h2 {
    font-size: 18px;
  }
  #item li {
    padding-right: 30px;
  }
  #item li a {
    font-size: 12px;
  }
  #item .icon i {
    padding-right: 16px;
  }
}

/* Footer Section End */

/* Blog Section End */
/* Scroll Top Button */
.up {
  position: fixed;
  bottom: 1.5rem;
  right: -5rem;
  background-color: var(--main-color);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}
.up i {
  font-size: 30px;
  color: var(--white-color);
}
.up.show {
  right: 1.5rem;
}
/* Scroll Top Button */

/*Start Media Queries */
@media (max-width: 991px) {
  .nav {
    width: 100%;
    transform: translateX(-100%);
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    transition: all 0.4s ease-in-out;
    padding-top: var(--header-height);
  }
  .show-menu {
    width: 100%;
    transform: translateX(0%);
  }
  .nav-menu {
    display: block;
    text-align: center;
  }
  .nav-menu li {
    width: 100%;
    padding: 1.5rem 0;
    margin-left: 0;
  }
  .nav-link {
    font-size: var(--h2-font-size);
  }
  .nav-toggle {
    display: block;
    z-index: 100;
  }
  .nav-toggle i {
    font-size: var(--big-font-size);
    color: var(--white-color);
    padding: 5px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    cursor: pointer;
  }
  .nav-toggle:hover i {
    color: var(--main-color);
  }
  .home .slide {
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
  }
  .home .content {
    padding-left: 0;
  }
  .about .about-container {
    grid-template-columns: unset;
  }
  .about .about-container .left {
    display: none;
  }
  .courses-container {
    clip-path: polygon(50% 0%, 100% 0, 100% 90%, 0 100%, 0 0);
  }
  .trainer-box .trainer-img {
    margin-left: 0;
  }
  .time-container .right .btn {
    display: inline;
  }
  .footer .search-form {
    width: 90%;
  }
}
