/**
* Template Name: Workout Landing Page
*/

/*============================================
1. Color Veriables
2. Preloader
3. Scroll top button
4. General
5. Animation keyframes
6. Header 
7. Banner 
8. Count
9. About us
10. Our Services
11. Our Team
12. Our Gallery
13. Clear Pricing
14. Our Client Say
15. Our Training Schedule
16. Video
17. Our Blog
18. Contact Info
19. Footer
============================================*/

/*--------------------------------------------------------------
# Color Veriables
--------------------------------------------------------------*/
:root {
  --h01-primary-color: #141B23;
  --h01-secondary-color: #A4D63A;
  --h01-text-primary-color: #141B23;
  --h01-text-secondary-color: #777777;
  --h01-tertiary-color: #FFFFFF;
  --h01-text-hover-color: #141B23;

  --h02-primary-color: #1D1D1D;
  --h02-secondary-color: #D7B07E;
  --h02-text-primary-color: #1D1D1D;
  --h02-text-secondary-color: #777777;
  --h02-tertiary-color: #FFFFFF;
  --h02-text-hover-color: #1D1D1D;

  --h03-primary-color: #0F273A;
  --h03-secondary-color: #FFB945;
  --h03-text-primary-color: #0F273A;
  --h03-text-secondary-color: #777777;
  --h03-tertiary-color: #FFFFFF;
  --h03-text-hover-color: #0F273A;

  --h04-primary-color: #141414;
  --h04-secondary-color: #FF7400;
  --h04-text-primary-color: #141414;
  --h04-text-secondary-color: #777777;
  --h04-tertiary-color: #FFFFFF;
  --h04-text-hover-color: #141414;

  --h05-primary-color: #00081D;
  --h05-secondary-color: #00ADEF;
  --h05-text-primary-color: #00081D;
  --h05-text-secondary-color: #777777;
  --h05-tertiary-color: #FFFFFF;
  --h05-text-hover-color: #00081D;
}

:root {
  scroll-behavior: smooth;
}

:root {

  /* ----------------------------------
   @font weight declaration
  ------------------------------------ */
  --lh-fw-normal: normal;
  --lh-fw-elight: 200;
  --lh-fw-light: 300;
  --lh-fw-regular: 400;
  --lh-fw-medium: 500;
  --lh-fw-sbold: 600;
  --lh-fw-bold: 700;
  --lh-fw-ebold: 800;
  --lh-fw-black: 900;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--h01-primary-color);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--h01-secondary-color);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 28px;
  bottom: 80px;
  z-index: 99999;
  background: var(--h01-secondary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.scroll-top i {
  font-size: 24px;
  color: var(--h01-primary-color);
  line-height: 0;
  margin-top: -5px;
}

.scroll-top:hover {
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "poppins", sans-serif;
  background-color: var(--h01-tertiary-color);
  line-height: 26px;
  overflow-x: hidden !important;
  max-width: 100%;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: var(--h01-primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--h01-secondary-color);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "poppins", sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  margin-bottom: 0px;

}

h1,
.h1 {
  font-family: "poppins", sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 120px;

}

h2,
.h2 {
  font-family: "poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 70.56px;

}

h3,
.h3 {
  font-family: "poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;

}

h4,
.h4 {
  font-family: "poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 40.32px;

}

h5,
.h5 {
  font-family: "poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;

}

h6,
.h6 {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;

}

p {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--h01-text-secondary-color);
}


.section-title {
  margin-bottom: 50px;
}

.section-title h3 {
  color: var(--h01-primary-color);
}

.section-title h6 {
  color: var(--h01-secondary-color);
  font-size: 16px;
  font-weight: 500;
}


.primary-btn {
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 40px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 45%), 0 6px 20px 0 rgb(165 214 89 / 48%);
  border: 1px solid transparent;
}

.primary-btn svg {
  transition: 0.5s;
  margin-left: 12px !important;
}

.primary-btn:hover {
  color: var(--h01-primary-color);
  background-color: var(--h01-tertiary-color);
  box-shadow: none;
  border: 1px solid var(--h01-primary-color);
}

.primary-btn:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

/*==============================
  # Header 
==============================*/
.header {
  position: absolute;
  padding: 15px 0px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--h01-primary-color);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1030;
}

.header .navbar-expand-lg>.container>.row {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header.sticked {
  padding: 15px 0px;
  position: fixed;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  background-color: var(--h01-primary-color);
  -webkit-animation: fadeInDown 1s ease-in-out;
  -moz-animation: fadeInDown 1s ease-in-out;
  top: 0;
  left: 0;
}

.header .navbar-expand-lg {
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 12px;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  text-align: end;
}

.header .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-family: "poppins", sans-serif !important;
  font-weight: 400 !important;
  color: var(--h01-tertiary-color) !important;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
  color: var(--h01-secondary-color) !important;
}

.header .navbar-nav .nav-item .nav-link.active .menu-dot {
  color: var(--h01-secondary-color);
  padding: 0px 5px;
}

.menu-dot {
  color: transparent;
  padding: 0px 5px;
}

.lets-talk-btn {
  width: 100%;
  height: 48px;
  border: none;
  background-color: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  padding: 0px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  line-height: 21px;
  text-decoration: none;
}

.lets-talk-btn:hover {
  background-color: var(--h01-tertiary-color);
  color: var(--h01-primary-color);
}

.lets-talk-btn img {
  padding-right: 10px;
}

/*==============================
   End of Header 
==============================*/

/*==============================
  # banner Section
==============================*/
section#hero {
  background-color: var(--h01-primary-color);
}

.hero .hero-bg {
  height: 900px;
  padding-top: 98px;
  background-color: #141b23;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero .hero-bg h6 {
  letter-spacing: 21px;
  color: var(--h01-tertiary-color);

}

.hero .hero-bg h1 {
  color: var(--h01-tertiary-color);
}

.hero .hero-bg h6 span {
  color: var(--h01-secondary-color);
}

.hero .hero-bg p {
  width: 833PX;
  color: var(--h01-tertiary-color);
  margin: 0 auto;
  margin-bottom: 75px;
  font-size: 18px;
  font-weight: 300;
}

.hero .hero-bg h1 span {
  color: var(--h01-secondary-color);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--h01-secondary-color);
}

.getstart-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--h01-tertiary-color);
  color: var(--h01-tertiary-color) !important;
  background-color: #ffffff17;
  font-size: 18px !important;
  font-family: "poppins", sans-serif;
  font-weight: var(--lh-fw-medium) !important;

}

.getstart-btn img {
  margin-left: 8px;
  display: inline-block !important;
  transition: 0.5s;
}

.getstart-btn:hover {
  color: var(--h01-tertiary-color);
}

.getstart-btn:hover img {
  transform: rotate(45deg);
  transition: 0.5s;
}

.subscribe-btn {
  display: inline-block;
  padding: 16px 54px;
  border: 1px solid transparent;
  background-color: var(--h01-secondary-color);
  color: var(--h01-primary-color) !important;
  font-size: 18px !important;
  font-family: "poppins", sans-serif;
  font-weight: var(--lh-fw-medium) !important;
  margin: 0px 10px;
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 34%), 0 6px 20px 0 rgb(165 214 69 / 18%);
  text-decoration: none;
}

.subscribe-btn:hover {
  background-color: var(--h01-tertiary-color);
  color: var(--h01-primary-color) !important;
  box-shadow: 0 4px 8px 0 rgb(255 255 255 / 34%), 0 6px 20px 0 rgb(255 255 255 / 8%);
}

.banner-slider ul.slick-dots {
  display: none !important;
}

.banner-slider button.slick-prev.slick-arrow {
  position: absolute;
  top: 75%;
  left: 16%;
  z-index: 1;
  background-color: transparent;
  background-image: url(../img/workout/prev.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  width: 271px;
  height: 100px;
  border: none;
  outline: transparent;
}

.banner-slider button.slick-prev.slick-arrow:hover,
.banner-slider button.slick-prev.slick-arrow:focus,
.banner-slider button.slick-prev.slick-arrow:active {
  border: none !important;
  background-image: url(../img/workout/pre-hover.png);
  outline: none;
}

.banner-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 75%;
  right: 16%;
  z-index: 1;
  background-color: transparent;
  background-image: url(../img/workout/next.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  width: 271px;
  height: 100px;
  border: none;
  outline: transparent;
}

.banner-slider button.slick-next.slick-arrow:hover,
.banner-slider button.slick-next.slick-arrow:focus,
.banner-slider button.slick-next.slick-arrow:active {
  border: none !important;
  background-image: url(../img/workout/next-hover.png);
  outline: none;
}

/*==============================
  End of banner Section
==============================*/

/*==============================
  # Count section
==============================*/
.count .count-bg {
  background-color: var(--h01-secondary-color);
  padding: 20px;
  margin-top: -80px;
  z-index: 1;
}

.count .count-bg .count-border {
  border-right: 1px solid var(--h01-primary-color);
}

.count .count-bg .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--h01-primary-color);
  font-weight: var(--lh-fw-bold);
  line-height: normal;
}

.count .count-bg .stats-item span::after {
  content: " +";
  display: inline-block;
  color: var(--h01-tertiary-color);
  font-size: 50px;
  padding-left: 8px;
}

.count .count-bg .stats-item p {
  font-size: 20px;
  font-weight: 500;
  color: var(--h01-primary-color);
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}

.count .count-bg .stats-item1 span {
  font-size: 48px;
  display: block;
  color: var(--h01-primary-color);
  font-weight: var(--lh-fw-bold);
  line-height: normal;
}

.count .count-bg .stats-item1 span::after {
  content: " k";
  display: inline-block;
  color: var(--h01-tertiary-color);
  font-size: 50px;
  padding-left: 8px;
}

.count .count-bg .stats-item1 p {
  color: var(--h01-primary-color);
  font-size: 20px;
  font-weight: 500;
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}

/*==============================
  # End of Count section
==============================*/

/*==============================
  # About us section
==============================*/
.aboutus {
  margin: 120px 0px;
}

.aboutus .section-title {
  margin-bottom: 0;
}

.aboutus .about-left-img {
  border-left: 10px solid var(--h01-secondary-color);
  border-bottom: 10px solid var(--h01-secondary-color);
}

.aboutus h6 {
  color: var(--h01-secondary-color);
  font-size: 16px;
  font-weight: 500;
}

.aboutus h3 {
  color: var(--h01-primary-color);
  font-size: 43px;
}

.aboutus p {
  max-width: 760px;
  flex-wrap: wrap;
  font-size: 18px;
}

.aboutus .about-right-img {
  border-bottom: 10px solid var(--h01-secondary-color);
}

.aboutus .about-list ul li {
  color: var(--h01-text-secondary-color);
  font-family: 'poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 38px;
}

.aboutus .about-list .read-more {
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 40px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 45%), 0 6px 20px 0 rgb(165 214 89 / 48%);
  border: 1px solid transparent;
}

.aboutus .about-list .read-more:hover {
  color: var(--h01-primary-color);
  background-color: var(--h01-tertiary-color);
  box-shadow: none;
  border: 1px solid var(--h01-primary-color);
}

.aboutus .about-list .read-more svg {
  transition: 0.5s;
  margin-left: 12px !important;
}

.aboutus .read-more:hover svg path {
  fill: var(--h01-primary-color) !important;
}

.aboutus .about-list .read-more:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

/*==============================
  # End of About us section
==============================*/

/*==============================
  # start Our Services section
==============================*/
.horizontal-accordion.accordion.width {
  border: none;
  display: flex;
}

.horizontal-accordion .accordion-body {
  background: rgba(245, 246, 248, 1)
}

.horizontal-accordion.accordion.width .accordion-item {
  flex-direction: row;
  flex-grow: 0;
  display: flex;
  flex-shrink: 1;
  min-width: min-content;
  border: 0px;
}

.horizontal-accordion.accordion.width .accordion-item .accordion-header {
  cursor: pointer;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.horizontal-accordion.accordion.width .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  pointer-events: none;
}

.collapsing.width {
  transition: width 0.35s ease;
  height: auto;
  width: 0;
}

.horizontal-accordion .accordion-button {
  height: 100%;
  background-color: rgba(20, 27, 35, 1);
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 50px 2vw;
  transition: all 0.35s ease-in-out;
}

.horizontal-accordion .accordion-button:not(.collapsed) {
  background-color: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  transition: all 0.35s ease-in-out;
}

.horizontal-accordion .accordion-button::after {
  display: none;
}

.horizontal-accordion .accordion-body h4 {
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--h01-text-primary-color);
}

.accordion-content-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*==============================
  End of Our Services section
==============================*/

/*==============================
  # start of Our Team section
==============================*/
.team {
  margin: 120px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team .team-content {
  position: relative;
  overflow: hidden;
  margin: 10px;
  z-index: 1;
}

.team .team-content img {
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}

.team .team-content:before {
  content: "";
  background-color: #141b23c2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
  border-bottom: 10px solid var(--h01-secondary-color);
}

.team .team-content:hover::before {
  opacity: 1;
  visibility: visible;
}

.team .team-content:hover .team-info {
  opacity: 1;
  visibility: visible;
}

.team .team-content .team-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background-color: #a4d63a3d;
  top: auto;
  bottom: 2%;
  left: 5%;
  right: 5%;
  padding: 20px;
  margin-bottom: 10px;

}

.team .team-content .team-info .team-icon {
  display: inline-block;
}

.team .team-content .team-info h4 {
  color: var(--h01-tertiary-color);
  margin-bottom: 0px;
}

.team .team-content .team-info p {
  color: var(--h01-tertiary-color);
  margin-bottom: 0px;
}

.our-team-slider button.slick-prev.slick-arrow {
  left: 0;
  position: absolute;
  top: 35%;
  left: -32px;
  z-index: 1;
  background-color: transparent;
  background-image: url(../img/workout/team-prev-arrow.png);
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}

.our-team-slider button.slick-prev.slick-arrow:hover,
.our-team-slider button.slick-prev.slick-arrow:focus,
.our-team-slider button.slick-prev.slick-arrow:active {
  border: none !important;
  background: url(../img/workout/team-prev-arrow-hover.png);
  outline: none;
}

.our-team-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 35%;
  right: -32px;
  z-index: 1;
  background-color: transparent;
  background-image: url(../img/workout/team-next-arrow.png);
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}

.our-team-slider button.slick-next.slick-arrow:hover,
.our-team-slider button.slick-next.slick-arrow:focus,
.our-team-slider button.slick-next.slick-arrow:active {
  border: none !important;
  background: url(../img/workout/team-next-arrow-hover.png);
  outline: none;
}

.our-team-slider {
  padding: 0 80px;
}

/*==============================
  End of Our Team section
==============================*/

/*==============================
  # start of Our Gallery section
==============================*/
.grid-colume {
  position: relative;
  width: 100%;
}

.grid-colume a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;

}

.grid-colume .image {
  inset: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #141b23c7;
}

.grid-colume a:hover .overlay {
  opacity: 1;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.grid-colume-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.grid-colume-2 {
  grid-area: 2 / 1 / 3 / 2;
}

.grid-colume-3 {
  grid-area: 3 / 1 / 4 / 2;
}

.grid-colume-4 {
  grid-area: 1 / 2 / 3 / 3;
}

.grid-colume-5 {
  grid-area: 3 / 2 / 4 / 3;
}

.grid-colume-6 {
  grid-area: 1 / 3 / 2 / 5;
}

.grid-colume-7 {
  grid-area: 2 / 3 / 3 / 5;
}

.grid-colume-8 {
  grid-area: 3 / 3 / 4 / 4;
}

.grid-colume-9 {
  grid-area: 3 / 4 / 4 / 5;
}

/*==============================
  # End of Our Gallery section
==============================*/

/*==============================
  # start of Clear Pricing section
==============================*/
.pricing {
  margin-top: 120px;
}

.pricing .section-title p {
  color: var(--h01-primary-color);
  font-size: 18px;
  font-weight: 300;
}

.pricing .pricing-item {
  background-color: var(--h01-primary-color);
  padding: 50px 60px;
  height: 100%;
  border-bottom: 10px solid var(--h01-secondary-color);
  transition: all 0.5s;
}

.pricing .pricing-item:hover {
  background-color: var(--h01-secondary-color);
  border-bottom: 10px solid var(--h01-primary-color);
}

.pricing .pricing-item:hover h5 {
  color: var(--h01-primary-color);
}

.pricing .pricing-item:hover p {
  color: var(--h01-primary-color);
}

.pricing .pricing-item:hover h2 {
  color: var(--h01-primary-color);
}

.pricing .pricing-item:hover span {
  color: var(--h01-primary-color);
}

.pricing .pricing-item:hover ul li {
  color: var(--h01-primary-color);
}

.pricing .pricing-item:hover .pricing-btn {
  background: var(--h01-primary-color);
  color: var(--h01-tertiary-color) !important;
  fill: var(--h01-tertiary-color);
}

.pricing .pricing-item:hover .pricing-btn svg path {
  fill: var(--h01-tertiary-color);
}

.pricing .pricing-item h5 {
  color: var(--h01-tertiary-color);
}

.pricing .pricing-item p {
  color: var(--h01-tertiary-color);
}

.pricing .pricing-item h2 {
  color: var(--h01-tertiary-color);
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 0;
}

.pricing .pricing-item h2 span {
  color: var(--h01-tertiary-color);
  font-size: 18px;
  font-weight: 400;
}

.pricing-line {
  height: 2px;
  background: #77777750;
  margin: 37px 0px 17px 0px;
}

.pricing .pricing-item ul {
  margin-bottom: 73px;
  display: inline-block;
}

.pricing .pricing-item ul li {
  padding: 10px 0;
  align-items: center;
  color: var(--h01-tertiary-color);
}

.pricing .pricing-item ul li span {
  font-size: 16px;
  font-weight: 400;
}

.pricing-btn {
  display: block;
  font-size: 18px;
  font-weight: 600;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  border-color: var(--h01-secondary-color);
  padding: 20px;
  text-align: center;

}

.pricing-btn svg {
  margin-left: 10px;
  transition: 0.5s;
}

.pricing-btn:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

/*==============================
  End of Clear Pricing section
==============================*/

/*=====================================
  # start of Our Client Say  section
======================================*/
.client-testimonial {
  margin-top: 120px;
}

.client-testimonial .testimonial-item {
  box-sizing: content-box;
  margin: 20px;
  position: relative;
  height: 100%;
}

.client-testimonial .testimonial-item .testimonial-img {
  width: 309px;
  height: auto;
  border-bottom: 10px solid var(--h01-secondary-color);
  margin: 0 auto;
}

.client-testimonial .testimonial-item h5 {
  margin-bottom: 0px;
}

.client-testimonial .testimonial-item h6 {
  font-size: 16px;
  font-weight: 400;
}

.client-testimonial .testimonial-item .stars {
  margin: 20px 0;
}

.client-testimonial .testimonial-item .stars i {
  color: var(--h01-secondary-color);
  margin: 0 2px;
}

.client-testimonial-slider {
  padding: 0 80px;
}

.client-testimonial-slider button.slick-prev.slick-arrow {
  position: absolute;
  top: 34%;
  left: -32px;
  z-index: 1;
  background: url(../img/workout/team-prev-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;

}

.client-testimonial-slider button.slick-prev.slick-arrow:hover,
.client-testimonial-slider button.slick-prev.slick-arrow:focus,
.client-testimonial-slider button.slick-prev.slick-arrow:active {
  border: none !important;
  content: url(../img/workout/team-prev-arrow-hover.png);
  background: url(../img/workout/team-prev-arrow-hover.png);
  outline: none;
}

.client-testimonial-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 34%;
  right: -32px;
  z-index: 1;
  content: url(../img/workout/team-next-arrow.png);
  background: url(../img/workout/team-next-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;

}

.client-testimonial-slider button.slick-next.slick-arrow:hover,
.client-testimonial-slider button.slick-next.slick-arrow:focus,
.client-testimonial-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/workout/team-next-arrow-hover.png);
  background: url(../img/workout/team-next-arrow-hover.png);
  outline: none;
}

.client-testimonial-slider ul.slick-dots {
  display: none !important;
}

/*====================================
  End of Our Client Say  section
======================================*/

/*========================================
  # Start Our Training Schedule section
==========================================*/
.training {
  margin-top: 120px;
  background-color: #F5F6F8;
  padding: 93px 0px;
  ;
}

.training span {
  color: var(--h01-secondary-color);
}

.training-form-control {
  display: block;
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--h01-text-secondary-color);
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.training-form-control:focus {
  outline: none;
}

.training-form-select {
  display: block;
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--h01-text-secondary-color);
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  border: none;
  box-shadow: none;
}

.training-form-select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.btn-training {
  color: var(--h01-primary-color);
  background-color: var(--h01-secondary-color);
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 37px;
  margin-top: 25px;
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 45%), 0 6px 20px 0 rgb(165 214 89 / 48%);
  border: 1px solid transparent;
}

.btn-training:hover {
  color: var(--h01-primary-color);
  background-color: var(--h01-tertiary-color);
  box-shadow: none;
  border: 1px solid var(--h01-primary-color);
}

.btn-training svg {
  margin-left: 5px;
  transition: 0.5s;
}

.btn-training:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

.btn-training:hover svg path {
  fill: var(--h01-primary-color) !important;
}

.time-schedule {
  border: 1px solid var(--h01-tertiary-color);
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 45%), 0 6px 20px 0 rgb(165 214 89 / 48%);
}

.training .bg-light {
  background-color: var(--h01-secondary-color) !important;
  border: 1px solid var(--h01-tertiary-color) !important;
  padding: 29px !important;
  text-align: center;
}

.training .bg-light-time {
  background-color: var(--h01-secondary-color) !important;
  border: 1px solid var(--h01-tertiary-color) !important;
  padding: 29px !important;
}

/*=======================================
   End of Our Training Schedule section
=========================================*/

/*==========================
  # start of video section
============================*/
.video-box {
  margin: 120px 0px;
  position: relative;
  border-bottom: 10px solid var(--h01-secondary-color);
}

.video-img::before {
  content: "";
  background: color-mix(in srgb, var(--h01-primary-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-img img {
  width: 100%;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 98px;
  width: 98px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  background: color-mix(in srgb, #ffffff00, transparent 10%);
  z-index: 999 !important;
  font-size: 30px;
}

.video:hover {
  color: var(--h01-secondary-color);
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;

  }

  50% {
    opacity: 0.9;

  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;

  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, #ffffff73, transparent 30%);
  opacity: 0;
  border-radius: 100%;
  right: -35px;
  bottom: -40px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*==========================
   End of video section
============================*/

/*==========================
  # start Our Blog section
============================*/
.blog-posts {
  margin-bottom: 120px;
}

.post-border {
  border-right: 1px solid #77777736;
}

.blog-posts article .post-img {
  border-bottom: 10px solid var(--h01-secondary-color);
}

.blog-posts article .post-meta {
  padding: 20px 0px 10px 0px;
}

.blog-posts article .post-meta .post-date {
  margin-bottom: 0px;
  padding-right: 30px;
}

.blog-posts article .post-meta .post-category {
  margin-bottom: 0px;
}

.blog-posts article .post-title {
  font-size: 28px;
  font-weight: 600px;
  color: var(--h01-primary-color);
  line-height: 40px;
  margin-bottom: 10px;
}

.blog-posts article .post-title a {
  color: var(--h01-primary-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #77777736;
  text-align: center;
  align-items: center;
}

.recent-posts-widget .post-item img {
  border-bottom: 5px solid var(--h01-secondary-color);
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.recent-posts-widget .post-item .post-meta .post-date {
  margin-bottom: 0px;
  padding-right: 30px;
}

.recent-posts-widget .post-item .post-meta .post-category {
  margin-bottom: 0px;
}

.recent-posts-widget .post-title {
  font-size: 24px;
  font-weight: 600px;
  color: var(--h01-primary-color);
  line-height: 40px;
}

.recent-posts-widget .post-title a {
  color: var(--h01-primary-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item1 {
  display: flex;
  border-bottom: 1px solid transparent;
  text-align: center;
  align-items: center;
}

.recent-posts-widget .post-item1 img {
  border-bottom: 5px solid var(--h01-secondary-color);
}

.recent-posts-widget .post-item1 .post-meta .post-date {
  margin-bottom: 0px;
  padding-right: 30px;
}

.recent-posts-widget .post-item1 .post-meta .post-category {
  margin-bottom: 0px;
}

/*==========================
  End of Our Blog section
============================*/

/*==================================
  # start of  Contact Info section
===================================*/
.contact-info {
  padding: 100px 0px;
  background-color: var(--h01-primary-color);
}

.contact-info h4 {
  color: var(--h01-secondary-color);
  font-size: 30px;
  font-weight: 600px;
  line-height: 45px;
  padding-bottom: 20px;
}

.contact-info p {
  color: var(--h01-tertiary-color);
}

.contact-info .info-item p a {
  color: var(--h01-tertiary-color);
}

.contact-info .info-item {
  width: 100%;
  margin-bottom: 10px;
  color: var(--h01-tertiary-color);
  padding-top: 50px;
}

.contact-info .info-item .info-title h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: var(--h01-tertiary-color);
}

.contact-info .info-item .info-title p {
  font-size: 17px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0px;
}

.contact-info .info-item i {
  font-size: 32px;
  color: var(--h01-primary-color);
  background-color: var(--h01-secondary-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact-info .info-item:hover i {
  background: var(--h01-tertiary-color);
  color: var(--h01-secondary-color);
}

/*start contact-info form*/
.contactinfo-form {
  display: block;
  width: 100%;
  padding: 18px 10px 18px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--h01-tertiary-color);
  background-color: #ffffff0a;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
}

.contactinfo-form::placeholder {
  color: var(--h01-tertiary-color);
}

.php-email-form .loading {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: var(--h01-primary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px;
}

.php-email-form .sent-message {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.contact-info .php-email-form button[type=submit] {
  width: 100%;
  color: var(--h01-primary-color);
  background: var(--h01-secondary-color);
  border: 0;
  padding: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  transition: 0.4s;
  margin-top: 1px 0px;
  box-shadow: 0 4px 8px 0 rgb(165 214 69 / 25%), 0 6px 20px 0 rgb(165 214 89 / 25%);
}

.contact-info .php-email-form button[type=submit]:hover {
  color: var(--h01-primary-color);
  background: var(--h01-tertiary-color);
  box-shadow: none;
}

.contact-info .php-email-form button[type=submit] svg {
  margin-left: 5px;
  transition: 0.5s;
}

.contact-info .php-email-form button[type=submit]:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

/*================================
  # End of  Contact Info section
=================================*/

/*================================
  # start of Footer section
=================================*/
.footer {
  background-color: var(--h01-primary-color);
  padding: 37px 20px 10px 20px;
}

.footer .footer-about .logo h4 {
  font-size: 31px;
  font-weight: 800;
  font-style: italic;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h01-secondary-color);
}

.footer .footer-about p {
  color: var(--h01-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer .footer-about h4 span {
  color: var(--h01-tertiary-color);
  font-size: 31px;
  font-weight: 800;
  line-height: 42px;
  font-style: italic;
}

.footer-links h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h01-tertiary-color);
}

.footer-links span {
  color: var(--h01-secondary-color);
  font-size: 22px;
  font-weight: 500;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.footer .footer-links ul li {
  padding: 0px;
  display: inline-block;
  align-items: center;
  margin-bottom: 10px;
}

.footer .footer-links ul a {
  color: var(--h01-tertiary-color);
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  padding-right: 40px;
}

.footer .footer-links ul a:hover {
  color: var(--h01-secondary-color);
}

.footer .footer-contact p {
  color: var(--h01-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer .footer-contact p a {
  color: var(--h01-tertiary-color);
}

.footer .footer-contact p a:hover {
  color: var(--h01-secondary-color);
}

.footer .footer-contact span {
  color: var(--h01-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer .footer-newsletter h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h01-tertiary-color);
}

.footer-newsletter .php-email-form .loading {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
}

.footer-newsletter .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: var(--h01-primary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.footer-newsletter .php-email-form .sent-message {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.footer-content-list {
  margin-bottom: 22px;
}

.footer .footer-contact .icon {
  color: var(--h01-secondary-color);
  padding-right: 15px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer .footer-newsletter .newsletter-form {
  position: relative;
  border: none;
  display: flex;
  background-color: transparent;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px 15px 25px;
  width: 100%;
  background-color: var(--h01-tertiary-color);
  color: var(--h01-text-secondary-color);
  outline: none;
}

.footer .footer-newsletter .newsletter-form .submit {
  position: absolute;
  border: 0;
  right: 1%;
  top: 7%;
  padding: 11px 17px;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  transition: 0.3s;
}

.footer .footer-newsletter .social-links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h01-tertiary-color);
  color: var(--h01-primary-color);
  line-height: 1;
  margin: 0 10px;
  border-radius: 50%;
  text-align: center;
  width: 37px;
  height: 37px;
  transition: 0.3s;
}

.footer .footer-newsletter .social-links a:hover {
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--h01-text-secondary-color), transparent 80%);
}

.footer .copyright p {
  color: var(--h01-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/*================================
  # End of Footer section
=================================*/