/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Numbers
- Tracks
- Register
- We Are Level Up
- Our Values
- Meet Our Team
- Testimonials
- Official Partners
- Contact
- Gallery
- Footer
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Font
******************************************/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;400;500;600;700;800&display=swap');


/**************************/
/*     General Styles     */
/**************************/

body,
html {
  width: 100%;
  height: 100%;
  background-color: #000000;
}

body,
p {
  color: #CBCBCB;
  font: 500 1rem/1.625rem 'IBM Plex Sans', sans-serif;
}

h1 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.4px;
}

h2 {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -0.4px;
}

h3 {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.2px;
}

h4 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: -0.2px;
}

h5 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2rem;
}

h6 {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.li-space-lg li {
  margin-bottom: 0.5rem;
}

img {
  width: 100%;
}

a {
  color: #2E82C4;
  text-decoration: none;
}

a:hover {
  color: #008BF8;
  text-decoration: underline;
}

.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

.text-white-hover:hover {
  color: white;
}

/**********************/
/*     Colors     */
/**********************/

.bg-green {
  background-color: #39A540 !important;
}

.color-green {
  color: #39A540 !important;
}

.bg-light-green {
  background-color: #44D1B6 !important;
}

.color-light-green {
  color: #44D1B6 !important;
}

.bg-blue {
  background-color: #109CB0 !important;
}

.color-blue {
  color: #109CB0 !important;
}

.bg-dark-blue {
  background-color: #2E82C4 !important;
}

.color-dark-blue {
  color: #2E82C4 !important;
}

.color-aquamarine {
  color: #69FFD7 !important;
}

.color-cf-blue {
  color: #229dff !important;
}

.bg-yellow {
  background-color: #DCAC15 !important;
}

.color-yellow {
  color: #DCAC15 !important;
}

.bg-orange {
  background-color: #E86D1B !important;
}

.color-orange {
  color: #E86D1B !important;
}

.color-blue-dark {
  color: #427FF5 !important;
}

.bg-blue-dark {
  background-color: #427FF5 !important;
}

.bd-blue-dark {
  border: solid 2px #427FF5;
}

.color-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.color-purple {
  color: #7B54DF !important;
}

.bg-purple {
  background-color: #7B54DF !important;
}

.bd-purple {
  border: solid 2px #7B54DF;
}

.color-pink {
  color: #FF5C93 !important;
}

.bg-pink {
  background-color: #FF5C93 !important;
}

.bd-pink {
  border: solid 2px #FF5C93;
}

.color-dark-grey {
  color: #313133 !important;
}

.color-gray {
  color: #f9f9f9 !important;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.color-red {
  color: red !important;
}

.bg-red {
  background: #E30003;
}

.color-maroon {
  color: #E73A3A !important;
}

.bg-maroon {
  background-color: #E73A3A !important;
}

.bg-training {
  background-color: #A266EF !important;
}

.color-training {
  color: #A266EF !important;
}

.bg-strength {
  background-color: #FF6099 !important;
}

.color-strength {
  color: #FF6099 !important;
}

.color-coaching-time {
  color: #808080 !important;
}

.color-lime {
  color: #D2FF00 !important;
}

.stroke-light {
  -webkit-text-stroke: 1px black;
}

.section-title {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.125rem 1.75rem;
  border-radius: 30px;
  background-color: #ffe7eb;
  color: #ff5574;
  font-weight: 600;
  font-size: 0.875rem;
}

.home-banner-text-wrapper {
  margin: 0 auto;
}

.btn:hover {
  text-decoration: none;
}

.btn.bg-book {
  background: #981E03;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #ff5574;
  border-radius: 30px;
  background-color: #ff5574;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  background-color: transparent;
  color: #ff5574;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid #ff5574;
  border-radius: 30px;
  background-color: #ff5574;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  background-color: transparent;
  color: #ff5574;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #ff5574;
  border-radius: 30px;
  background-color: #ff5574;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-sm:hover {
  background-color: transparent;
  color: #ff5574;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #5e6576;
  border-radius: 30px;
  background-color: transparent;
  color: #5e6576;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #5e6576;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid #5e6576;
  border-radius: 30px;
  background-color: transparent;
  color: #5e6576;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #5e6576;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #5e6576;
  border-radius: 30px;
  background-color: transparent;
  color: #5e6576;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #5e6576;
  color: #ffffff;
  text-decoration: none;
}

.btn.btn-banner {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  color: #EEEEEE;
  background-color: #000;
  border: 2px solid #EEEEEE;
  width: 300px;
  text-transform: uppercase;
}

.btn.btn-banner:hover,
.btn.btn-banner:focus,
.btn.btn-banner:active {
  background: #2E82C4;
  border: 2px solid #2E82C4;
}

/* .btn.enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #E4B421 !important;
  background-color: transparent !important;
  color: #E4B421;
}

.btn.enquire-btn:hover {
  background-color: #E4B421 !important;
  color: #ffffff;
} */

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
  width: 100%;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 0.5rem;
  border: none;
  border-bottom: 1px solid #4F4F4F;
  background-color: transparent;
  color: #4F4F4F;
  font-size: 0.875rem;
  line-height: 1.5rem;
  -webkit-appearance: none;
  /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3.5rem;
  color: #5e6576;
}

select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url('../images/down-arrow.png');
  background-position: 98% 50%;
  background-repeat: no-repeat;
  outline: none;
}

.form-control-textarea {
  display: block;
  height: 14rem;
  /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
  outline: none;
  /* Removes blue border on focus */
}

.form-control-submit-button {
  display: block;
  width: 140px;
  height: 3rem;
  border: 1px solid #E4B421;
  border-radius: 5px;
  background-color: #E4B421;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid #E4B421 !important;
  background-color: transparent !important;
  color: #E4B421;
}

.social-container {
  display: flex;
  justify-content: space-between;
}

.social-icon a {
  text-decoration: none;
}

.social-icon a img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 1200px){
.oi{
    width:20% !important;
}
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  background-color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  padding-bottom: 0;
  padding-top: 0;
}

.navbar .logo-image img {
  height:70px;
}

.navbar .logo-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1rem;
  text-decoration: none;
}

.offcanvas-collapse {
  position: fixed;
  top:5rem;
  /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: #2E82C4;
  transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .nav-item {
  text-transform: uppercase;
}

.navbar .nav-item .dropdown-menu {
  text-transform: initial;
}

.navbar .nav-item .nav-link {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-brand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link.active {
  color: #fff;
}

/* .navbar .nav-item.dropdown.show {
	font-weight: 800;
} */

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  animation: fadeDropdown 0.2s;
  /* required for the fade animation */
  padding: 0;
  background-color: #fff;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.navbar .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.25rem;
  border: none;
  background-color: #2E82C4;
  overflow: hidden;
}

.navbar .dropdown-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #2E82C4;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
  text-decoration: none;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: #fff;
  background-color: #2E82C4;
  border: solid 1px;
  /*ont-weight: 800;*/
}

.navbar .dropdown-divider {
  margin: 0;
  background-color: #2E82C4;
}

/* end of dropdown menu */

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
}

.navbar .btn-solid-sm {
  border-color: #fff;
  background-color: #fff;
}

.navbar .btn-solid-sm:hover {
  background-color: transparent;
  color: #fff;
}

/******************/
/*     Header     */
/******************/
.home-slider {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

.header {
  position: relative;
  /* padding-top: 10rem;
  padding-bottom: 6rem; */
  margin-top: 60px;
  text-align: center;
  background: center / cover no-repeat url("../images/home-banner.jpg");
  position: relative;
  z-index: 0;
  min-height: 580px;
  width: 100%;
  padding-bottom: 24px;
}

.header-1 {
  background-image: url("../images/summer-camp-banner.png");
  background-position: top center;
}

.header-2 {
  background-image: url("../images/home-banner-2.png");
}

.header::after {
  content: ' ';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 81.56%, rgba(0, 0, 0, 0.89) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 10;
}

.header .h1-large {
  margin-bottom: 1.25rem;
}

.header .p-large {
  margin-bottom: 0;
}

.header .btn-solid-lg {
  display: block;
  margin-bottom: 1.75rem;
}

.header .quote {
  display: block;
  color: #FFFFFF;
}

.header .quote i {
  margin-right: 0.5rem;
  color: #FFFFFF;
}

.header .text-container {
  margin-bottom: 0;
}

.header .btn {
  padding: 18px 30px;
  border-radius: 5px;
}

.header .btn.btn-outline-secondary {
  color: #525252;
  background: #EEEEEE;
}

.header .badges-wrapper {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 9;
}

.header .badges-wrapper .badge {
  width: 100px;
  max-height: 100px;
}

.header .popup {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  z-index: 99;
}

.header .popup .container-popup {
  padding: 0 1rem;
}

.header .popup .inner-wrapper {
  position: relative;
  background: rgba(0, 0, 0, 0.87);
  height: 100%;
}

.header .popup .inner-wrapper .btn-close-wrapper {
  position: absolute;
  left: -1em;
  top: -1em;
  cursor: pointer;
}

.header .popup .bg-blue {
  background-color: #2E82C4;
}

.header h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 500;
}

.header .description {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 500;
}

.header .cta {
  font-size: 1.125rem;
  line-height: 1.463rem;
  font-weight: 500;
}

.home-slider .swiper-pagination-bullet {
  background: #eee;
  opacity: 0.75;
}

.home-slider .swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

/********************/
/*     Numbers     */
/********************/
.numbers-section {
  background: #2795EE;
}

.stats>div:nth-child(1),
.stats>div:nth-child(3) {
  border-right: 1px solid #fff;
}

.stats>div {
  padding: 2em;
}

.stats p {
  margin-bottom: 0;
  color: #fff;
}


/********************/
/*     Tracks     */
/********************/
.tracks-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tack-card {
  padding: 1em;
  padding-bottom: 0;
}

.tack-card a {
  text-decoration: none;
}

.title-underline {
  text-decoration: none;
  position: relative;
  padding-bottom: 15px;
}

.title-underline:after {
  content: '';
  width: 100px;
  position: absolute;
  left: calc(50% - 50px);
  bottom: 0px;
  border-width: 0 0 2px;
  border-style: solid;
}

.tack-card .inner-wrapper {
  background: #313133;
  border-radius: 10px;
  overflow: hidden;
}

#tracks.tracks-section .tack-card .inner-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-top {
  color: #fff;
}

.card-top .sale {
  background: rgba(0, 0, 0, 0.1);
}

.card-top .title {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
  text-align: left;
  padding: 0.75rem 1.875rem;
}

.card-top .sale {
  font-size: 1.125rem;
  line-height: 25%;
  text-align: center;
  padding: 0.75rem 0;
}

.track-card .card-middle {
  background: #000000c2;
  border-right: 2px solid #333333;
  border-left: 2px solid #333333;
  padding: 2rem;
  padding-bottom: 0;
}

.card-middle {
  background: #333333;
  padding: 2rem;
  padding-bottom: 0;
}

.tracks-section .card-middle {
  padding: 0 1.875rem;
}

.card-middle .col-6 {
  padding: 1.5rem 0;

}

.card-middle .name {
  color: #878787;
  font-size: 0.875rem;
  line-height: 150%;
}

.card-middle .value {
  color: #fff;
  font-size: 1rem;
  line-height: 1.3rem;
}

/* .card-middle .original-price {
  font-size: 0.75rem;
  line-height: 0.975rem;
  color: #fff;
  position: relative;
  margin-left: 20px;
  width: fit-content;
}

.card-middle .original-price .line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  border: 1px solid #F02C2C;
  transform: rotate(11.98deg);
} */

.card-bottom {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 1.125em 1em;
  align-items: center;
  height: 100%;
}

.card-icon {
  width: 0.875rem;
  height: 0.875rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  /* background-color: #313133; */
}

.card-bottom .desc {
  margin-left: 0.5rem;
}

.athletes-section .card-bottom .desc {
  margin-left: 0;
}

/********************/
/*     Register     */
/********************/
.register-section {
  background: #131313;
  padding-top: 60px;
  padding-bottom: 60px;
}

.register-section .title-underline {
  color: #A2f852;
}

.register-section .tack-card .inner-wrapper {
  border: 2px solid #4A4A4A;
  background: #333333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reg-card .left {
  font-size: 1.125rem;
  line-height: 1.438rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}

.reg-card .right {
  text-align: right;
}

/* .reg-card .register {
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  margin-bottom: 0.5em;
} */

.reg-card .now .btn {
  padding: 7px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  text-transform: capitalize;
}

.reg-card .desc {
  color: #D3D3D3;
  font-weight: 600;
  text-transform: capitalize;
}

/***************************/
/*     We are Level up     */
/***************************/

.level-card {
  margin-top: 1.5em;
}

.level-card .inner-wrapper {
  border: 2px solid #4A4A4A;
  background-color: #202020;
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
  height: 100%;
}

.level-icon,
.level-icon i {
  font-size: 26px;
  display: block;
}

.level-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.level-icon svg {
	height: 26px;
}

.level-card .title {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
}

.level-card .desc {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 500;
  color: #CBCBCB;
}

/**********************/
/*     Our Values     */
/**********************/

.our-values-section {
  background: #131313;
  background-color: #000;
}

.value-card .inner-wrapper {
  background: #202020;
  border: 2px solid #4A4A4A;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.value-card .title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

.value-card .level-icon {
  color: #1C93F1;
}

.value-card .desc {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3rem;
  color: #DDDDDD;
  min-height: 80px;
}

.value-card .name {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.313rem;
  color: #AFAFAF;
}

/*************************/
/*     Meet Our Team     */
/*************************/

.meet-our-team-section {
  background-color: #000;
  background: #131313;
}


.meet-our-team-section .team-card {
  flex: 1;
  margin: 0 20px;
  margin-top: 150px !important;
  position: relative;
  min-width: 200px;
}

.meet-our-team-section .team-card .inner-wrapper {
  /* background: #202020; */
  /* border-top: 2px solid #4A4A4A; */
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 135px !important;
  height: 100%;
  max-width: 350px;
}

.meet-our-team-section p {
  color: #CBCBCB;
}

.team-card .avatar {
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100px);
}

.team-card .avatar img {
  border-radius: 10px;
  border: 2px solid #4A4A4A;
}

.team-card .avatar img {
  width: 100%;
}

.team-card .card-social {
  position: absolute;
  right: -10px;
  bottom: 10px;
  transform: translateX(-50%);
}

.team-card .card-social i {
  color: #0094FF;
}

.team-card .card-social i.fa-circle {
  text-shadow: 0 6px 10px rgb(0 0 0 / 60%);
}

.team-card .name {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  color: #F4BE19;
}

.team-card .name a {
  color: #FF5C93;
}

.team-card .name a:hover {
  text-decoration: none;
}

.team-card .role {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  text-transform: uppercase;
}

.team-card .desc {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  /* text-transform: capitalize; */
  color: #CBCBCB;
}

.khelo-india-section {
  background: #131313;
}

.khelo-india-section h2 {
  margin-bottom: 0em!important;
  color: #FF7C17!important;
  /* background-image: linear-gradient(25deg, #e96c1a 20%, #ffffff 33%, #38a53f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; */
}

/************************/
/*     Testimonials     */
/************************/

.testimonials-section {
  background: #131313;
  background-color: #000;
}

.testimonials-section.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.slider-1 {
  padding-top: 4.5em;
}

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper-container {
  position: static;
  width: 100%;
}

.gallery-section .slider-1 .slider-container { 
  width: 86%;
	margin: 0 auto;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  left: -20%;
  font-size: 34px;
  color: #7B54DF;
}

.slider-1 .swiper-button-next {
  right: -20%;
  font-size: 34px;
  color: #7B54DF;
}

.slider-1 .card {
  border: none;
  background-color: #131313;
}

.slider-1 .card-body {
  padding: 2em;
  background: #202020;
  border: 2px solid #333333;
  box-sizing: border-box;
  border-radius: 10px;
}

.slider-1 .quotes {
  margin-bottom: 3rem;
  width: 64px;
}

.slider-1 .testimonial-text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #CBCBCB;
}

.slider-1 .testimonial-image {
  display: inline-block;
  width: 70px;
  margin-bottom: 0.875rem;
  border-radius: 50%;
}

.slider-1 .testimonial-author,
.slider-1 .occupation {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 150%;
  text-transform: capitalize;
  color: #7B54DF;
}

.slider-1 .occupation {
  color: #CBCBCB;
}

.slider-1 .testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

.slider-1 .details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

/*****************************/
/*     Official Partners     */
/*****************************/
.official-partners-section {
  background: #131313;
}

.partners {
  max-width: 270px;
  margin: 0 auto;
}

.partner-card {
  margin: 1em auto;
  margin-bottom: 0;
}

.partner-card .inner-wrapper {
  background: #202020;
  border: 3px double #b8b8b8;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.partner-card .inner-wrapper .avatar.playbaddy {
  padding: 10px;
}

.partner-card .inner-wrapper .avatar.bitsport {
  padding: 6px;
}

.partner-card .inner-wrapper .avatar.bsl {
  padding: 10px;
}

.partner-card .inner-wrapper .avatar.instasport {
  padding: 2px;
}

.official-partners-section h2 {
  color: #31B8CB;
}

/*******************/
/*     Contact     */
/*******************/

.contact-section {
  background-color: #131313;
  background: #000;
}

.contact-section h2 {
  margin-bottom: 2em;
  color: #E4B421;
}

.contact-section a:hover {
  text-decoration: none;
}

.form-1 {
  padding-top: 60px!important;
  padding-bottom: 60px!important;
  text-align: center;
}

.form-1 .h2-heading {
  margin-bottom: 1.125rem;
  text-align: center;
}

.form-1 .h2-heading span {
  font-weight: 400;
}

.form-1 .p-heading {
  margin-bottom: 0.375rem;
}

.form-1 .list-unstyled {
  margin-bottom: 3.5rem;
}

.form-1 .list-unstyled .fas {
  color: #fff;
}


/******************/
/*     Gallery     */
/******************/

.gallery-section {
  background-color: #353935;
  background-color: #191919;
  padding: 60px 0;
}

.gallery-full {
  background-color: #000000;
}

.gallery-section .container-fluid.row {
  padding: 0.25em;
  margin: 0;
}

.gallery-section a .gallery-image {
  max-width: 500px;
  height: 100px;
  margin: 0 auto;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #4A4A4A;
}

.gallery-section .gallery-item {
  padding: 1rem;
}

.gallery-section .title-underline {
  color: #12E0D4;
}

.gallery-section a .gallery-image {
  position: relative;
}

.gallery-section a .gallery-image .text {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  /* -webkit-animation: fadeout 0.5s linear forwards;
	animation: fadeout 0.5s linear forwards; */
}

.gallery-section a:hover .gallery-image .text,
.gallery-section a:focus .gallery-image .text,
.gallery-section a:active .gallery-image .text,
.gallery-section a.active .gallery-image .text {
  background-color: rgba(7, 247, 242, 0.3);
}

.gallery-section a .gallery-image .text h3 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3rem;
}

.gallery-section .fancybox-trigger {
  display: block;
}

.gallery-content-wrapper .fancybox-images {
  display: none;
}

.gallery-content-wrapper .fancybox-images.show {
  display: flex;
}

.gallery-content-wrapper .fancybox.progressive {
  cursor: pointer !important;
}

.gallery-content-wrapper .fancybox.progressive:hover img:not(.preview) {
  transition: transform .5s ease-in-out;
  transform: scale(1.25);
}

.gallery-content-wrapper .fancybox.replace {
  cursor: default !important;
}

.gallery-wrapper .swiper2-button-prev {
  left: -16px;
}

.gallery-wrapper .swiper2-button-next {
  right: -16px;
}

.gallery-wrapper .swiper2-button-prev,
.gallery-wrapper .swiper2-button-next {
  position: absolute;
  top: 50%;
  height: 44px;
  /* margin-top: -22px; */
  z-index: 10;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  font-size: 1.5rem;
  background: rgba(51, 51, 51, 0.4);
	border-radius: 5px;
  height: calc(100% - 2rem);
  transform: translateY(-50%);
  padding: 0 15px;
}

.swiper2-button-prev.swiper-button-disabled,
.swiper2-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.gallery-content-wrapper .item-wrapper {
  padding: 1em;
}

.gallery-content-wrapper .fancybox {
  height: 250px;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #333333;
  background-color: #333333;
  border-radius: 10px;
  display: block;
}

.fancybox img {
  width: 100% !important;
  height: 100% !important;
  transition: all 0.3s;
  object-fit: cover;
  object-position: top;
  box-sizing: border-box;
}

.fancybox:hover img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  object-fit: cover;
}

/*******************/
/*     Footer     */
/*******************/

.footer-main {
  background-color: #131313;
}

.footer-main p,
address {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 26px;
  color: #CBCBCB;
}

.footer-main .contact-title {
  margin-bottom: 0.75rem;
}

.footer-main .contact-title .inner-wrapper {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 26px;
  color: #CBCBCB;
  border-bottom: 1px solid #1A8CEA;
  display: inline-block;
  position: relative;
  top: 1px;
  padding-bottom: 0.5rem;
  padding-top: 2rem;
}

.footer-main h3 {
  color: #CBCBCB;
}

.footer-map {
  border: 2px solid #4A4A4A;
  border-radius: 10px;
  max-height: 300px;
  object-fit: cover;
}

.footer-logo {
  width: 50%;
  max-width: 178px;
}

.footer-copyright {
  background-color: #000;
}

.footer-copyright small {
  color: #CBCBCB;
}

.footer-bottom-link {
  font-size: 0.875rem;
}

.footer-social a {
  color: #CBCBCB;
}

.footer-copyright ul {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .header .h1-large {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .slider-1 .swiper-button-prev {
     left:0;
  }
  .slider-1 .swiper-button-next {
     right:0;
  }
  .coaching-list-section .card-title h3 {
    font-size: 24px!important;
    line-height: 30px!important;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h5 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0;
  }

  .stats>div {
    padding: 1rem;
  }
}

@media screen and (max-width: 991px) {
  .footer-copyright ul.u-list-inline {
    padding: 0;
  }
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.meet-our-team-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: #44434a;
  cursor: pointer;
}

#myBtn:hover {
  background-color: #1d1d21;
}

#myBtn .fa-icon {
  color: white;
  font-size: 1.125rem;
}

/* #myBtn img {
    margin-bottom: 0.25rem;
    width: 18px;
} */

/********************/
/*     Coaching     */
/********************/

.coaching-list-section {
  background-color: #000;
}

.coaching-list-section .card-title {
  margin-bottom: 0;
}

.coaching-list-section .card-title h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  margin-bottom: 0;
}

.header.coaching {
  /* position: relative;
  padding-top: 14rem;
  padding-bottom: 10rem; */
  text-align: center;
  background: center / cover no-repeat url(../images/coaching-banner.png);
  /* position: relative; */
  z-index: 0;
}

.header.corporate {
  background-image: url(../images/corporate-banner.png);
}

.header.strength {
  background-image: url(../images/strength-banner.png);
}

.header.arvind {
  background-image: url(../images/1-1-arvind.png);
}

header.coaching::after {
  content: ' ';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 81.56%, rgba(0, 0, 0, 0.89) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.coaching .container {
  position: relative;
  z-index: 10;
}

.coaching .container-fluid .inner-wrapper {
  width: 100%;
  padding: 2em;
  margin: 0 auto;
  /* background: rgba(0, 0, 0, 0.5); */
  border-radius: 10px;
}

.home-banner-text-title {
  text-shadow: -2px 4px 0 rgb(0 0 0 / 30%);
  text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.home-banner-text-desc {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 900px;
  color: #fff;
  /* letter-spacing: 1.25px; */
  /* word-spacing: 2px; */
  text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.home-banner-img {
  width: auto;
  height: 100%;
  max-height: 350px;
}

.banner-img-caption {
  color: #fff;
  text-transform: uppercase;
  -webkit-animation: flicker 1.5s infinite alternate;
  animation: flicker 1.5s infinite alternate;
  font-family: "Exo 2","Encode Sans",sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}

@keyframes flicker {
  0%,19%,21%,23%,25%,54%,56%,100% {
      text-shadow: -0.2rem -0.2rem 1rem #fff,.2rem .2rem 1rem #fff,0 0 2rem #f40,0 0 4rem #f40,0 0 6rem #f40,0 0 8rem #f40,0 0 10rem #f40
  }

  20%,24%,55% {
      text-shadow: none
  }
}

.card-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.card-wrapper .card-left .avatar {
  height: 100%;
  background: #fff;
  position: relative;
}

.card-wrapper .card-left .avatar:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.3) 100%);
}

.card-wrapper .card-left .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-wrapper .card-left .avatar .reg-form {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.card-wrapper .card-left .avatar .reg-form .form-group {
  margin-bottom: 0;
  justify-content: center;
}

.card-wrapper .card-left .avatar .reg-form .form-group .form-control-input {
  background-color: #202020;
  color: #C1C1C1;
  padding-left: 1rem;
}

.card-wrapper .card-left .avatar .reg-form .form-group .form-control-input::placeholder {
  color: #C1C1C1;
}

.card-wrapper .card-left .avatar .reg-form .form-group a {
  width: 90%;
  margin: 16px auto;
}

.enquire-btn {
  border: none;
  background-color: #000;
  padding: 18px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all 0.3s;
}

.enquire-btn.color-green {
  border: 2px solid #39A540;
}

.enquire-btn.color-blue {
  border: 2px solid #109CB0;
}

.enquire-btn.color-yellow {
  border: 2px solid #E4B421;
}

.enquire-btn.color-orange {
  border: 2px solid #E86D1B;
}

.enquire-btn.color-training {
  border: 2px solid #A266EF;
}

.enquire-btn.color-strength {
  border: 2px solid #FF6099;
}

.enquire-btn.color-maroon {
  border: 2px solid #E73A3A;
}

.enquire-btn:hover {
  color: #fff !important;
  text-decoration: none;
}

.enquire-btn.color-green:hover {
  background-color: #39A540;
}

.enquire-btn.color-blue:hover {
  background-color: #109CB0;
}

.enquire-btn.color-yellow:hover {
  background-color: #DCAC15;
}

.enquire-btn.color-orange:hover {
  background-color: #E86D1B;
}

.enquire-btn.color-training:hover {
  background-color: #A266EF;
}

.enquire-btn.color-strength:hover {
  background-color: #FF6099;
}

.enquire-btn.color-maroon:hover {
  background-color: #E73A3A;
}

.coaching-form .enquire-btn {
  -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 30%), 0 8px 8px rgb(0 0 0 / 60%);
  box-shadow: 0 10px 10px rgb(0 0 0 / 30%), 0 8px 8px rgb(0 0 0 / 60%);
}


.card-wrapper .inner-wrapper.card-right {
  border-radius: 0;
  background-color: #202020;
}

.card-wrapper .card-right .card-top {
  position: relative;
}

.card-wrapper .card-right .card-top .sale h5 {
  margin-bottom: 0;
}

.card-wrapper .card-right .card-top .price .original-price {
  position: relative;
  color: #333333;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.688rem;
}

.card-wrapper .card-right .card-top .price .original-price .line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  border: 1px solid #202020;
  transform: rotate(-9.59deg);
}

.coaching-card-bg-gray {
  background-color: #333333;
  color: #fff;
  margin: 2px 0px 0px 2px;
  height: calc(100% - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coaching-card-middle {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.313rem;
  background-color: #202020;
  color: #fff;
}

.coaching-card-bottom {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.313rem;
}

.coaching-card-bottom h6 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.688rem;
}

.coaching-card-title-caption,
.coaching-card-title-caption * {
  /* color: #1e3727; */
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.subscribe-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.athletes-section {
  padding-top: 120px;
  padding-bottom: 60px;
}

.athletes-section h2 {
  margin-bottom: 2em;
  color: #2E82C4;
}

.article-gallery.grid-masonry {
  opacity: 0;
}

.article-gallery.grid-masonry.show {
  opacity: 1;
}

.athletes-section .article-gallery .block {
  /* max-width: 960px; */
  /* margin: 0 auto; */
  justify-content: center;
}

.athletes-section .article-gallery .block .card {
  color: #cbcbcb;
  background-color: #333333;
  border: none;
  -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
  border-radius: 10px;
  overflow: hidden;
  max-width: 260px;
  text-align: center;
  text-transform: capitalize;
  margin: 30px;
  padding: 0;
}

.athletes-section .article-gallery .block .card-wraper {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 292px;
  position: relative;
}

.athletes-section .article-gallery .block .card-wraper .avatar {
  position: absolute;
  width: 100%;
  height: 100%;
}

.athletes-section .article-gallery .block .card-wraper .avatar .avatar-img {
  object-fit: cover;
  height: 100%;
}

.athletes-section .article-gallery .block .card-wraper-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .8);
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top {
  position: relative;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top .arrow {
  position: absolute;
  right: 15px;
  bottom: calc(50% - 13px);
  cursor: pointer;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top .arrow.up {
  display: block;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top .arrow.down {
  display: none;
}

.athletes-section .article-gallery .block .card-wraper-inner.expand .card-top .arrow.up {
  display: none;
}

.athletes-section .article-gallery .block .card-wraper-inner.expand .card-top .arrow.down {
  display: block;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top .info .name h5 {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.313rem;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-top .info .role p {
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}

.athletes-section .team-gallery .block .card-wraper-inner .card-top .info .role p {
  min-height: 2.5rem;
}

.athletes-section .article-gallery .block .card-wraper-inner.expand .card-top .info .name h5 {
  font-size: 1.125rem;
  line-height: 1.438rem;
  color: #CBCBCB;
  padding-bottom: 0.5rem;
}

.athletes-section .article-gallery .block .card-wraper-inner.expand .card-top .info .role p {
  font-size: 0.875rem;
  line-height: 1rem;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-bottom {
  max-height: 0;
  padding: 0;
  transition: max-height .25s ease-in-out;
}

.athletes-section .article-gallery .block .card-wraper-inner.expand .card-bottom {
  transition: max-height 1s ease-in-out;
  max-height: 300px;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-bottom-top {
  display: flex;
  justify-content: center;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-bottom .number {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.313rem;
  text-align: center;
  text-transform: capitalize;
  color: #cbcbcb;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-bottom .rank-number {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1rem;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

.athletes-section .article-gallery .block .card-wraper-inner .card-bottom .desc {
  font-weight: normal;
  font-size: .75rem;
  line-height: 1rem;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

.policy-section {
  padding-top: 120px;
  padding-bottom: 60px;
}

.policy-section h2 {
  margin-bottom: 1em;
  color: #2E82C4;
}

.our-team h2 {
  color: #FF901D;
}

.our-team .first-row .card {
  margin: 30px !important;
}

.not-found-section {
  padding-top: 100px;
}

.not-found-section .title-underline:after {
  left: 0;
  width: 140px;
}

.not-found-title {
  font-weight: 600;
  font-size: 4rem;
}

.btn-back-to-home {
  border: 2px solid #F4BE19;
  background-color: transparent;
  color: #fff;
}

.btn-back-to-home:hover {
  color: #F4BE19;
}

/*************************/
/*     Media Queries     */
/*************************/
@media (min-width: 576px) {
  .partners {
    max-width: 100%;
  }
}

/* Min-width 768px */
@media (min-width: 768px) {

  .header .badges-wrapper .badge {
    width: 125px;
    max-height: 125px;
  }

  /* Header */
  /* .header { */
    /* padding-top: 9rem; */
  /* } */

  .header .h1-large {
    font-size: 2.75rem;
    line-height: 3.5rem;
  }

  .header .popup {
    max-width: 392px;
  }

  /* end of header */


  /* Details 2 */
  .counter .counter-container {
    text-align: left;
  }

  .counter .counter-cell {
    display: inline-block;
    margin-right: 3rem;
    vertical-align: top;
  }

  /* end of details 2 */


  /* Contact */
  .form-1 .list-unstyled li {
    display: inline-block;
    margin-right: 1rem;
  }

  /* end of contact */

  .coaching .container-fluid .inner-wrapper {
    width: 80%;
    padding: 2em;
  }

  .slider-1 .testimonial-text {
    height: 208px;
  }

  .stats>div:nth-child(1),
  .stats>div:nth-child(2),
  .stats>div:nth-child(4) {
    border-right: 1px solid #fff;
  }

  .stats>div:nth-child(1),
  .stats>div:nth-child(2),
  .stats>div:nth-child(3) {
    border-bottom: 1px solid #fff;
  }

  .stats>div:nth-child(3) {
    border-right: none;
  }

  .stats>div {
    padding: 2em;
  }

  .stats-wrapper {
    max-width: 100%;
    padding: 0;
  }

	.gallery-section .slider-1 .slider-container { 
		width: 100%;
	}

  .gallery-section a .gallery-image {
    height: 100px;
    max-width: 300px;
  }

  .gallery-section a .gallery-image .text h3 {
    font-size: 1.75rem;
    line-height: 2.275rem;
  }

  .gallery-content-wrapper .fancybox {
    /* height: 220px; */
    max-width: 100%;
    margin: 0;
  }

}

/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

  .nav-item.dropdown:hover .dropdown-menu {
    transform: translateX(-50%);
    left: 50%;
  }

  /* General Styles */
  .h2-heading {
    width: 35.25rem;
    margin-right: auto;
    margin-left: auto;
  }

  /********************/
  /*     Sections     */
  /********************/

  .page-section {
    height: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    max-height: 1200px;
  }

  .page-section.first .header {
    height: calc(100% - 178px);
  }

  .p-heading {
    width: 46rem;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of general styles */

  /* Navigation */

  .navbar .dropdown .dropdown-menu {
    background-color: #2E82C4;
    border-radius: 0;
  }

  .navbar .dropdown-item {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0.875rem;
    text-decoration: none;
    text-align: left;
  }

  .navbar .dropdown-divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem auto 0.5rem auto;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus {
    border: none;
  }

  .navbar {
    background-color: #000000e6;
    box-shadow: none;
    transition: all 0.2s;
  }

  .nav-item.dropdown .dropdown-menu {
    text-align: center !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar.extra-page {
    padding-top: 0.5rem;
  }

  .navbar.top-nav-collapse {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
    background: #000000;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    -webkit-transform: none;
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0.75rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 100%;
  }

  .navbar .nav-item .btn-solid-sm {
    margin-top: 0;
    margin-left: 1rem;
  }

  /* end of navigation */


  /* Header */
  .header {
    /* padding-top: 15rem; */
    text-align: left;
  }

  .header .text-container {
    margin-bottom: 0;
  }

  .header .btn-solid-lg {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }

  .header .btn-solid-lg,
  .header .quote {
    display: inline-block;
  }

  /* end of header */

  /* Testimonials */
  .slider-1 .swiper-container {
    width: 100%;
  }

  .slider-1 .swiper-button-prev {
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .text {
    flex-direction: column;
  }

  .slider-1 .testimonial-author {
    margin-top: 0.625rem;
  }

  .slider-1 .testimonial-image {
    margin-right: 1.125rem;
  }

  .slider-1 .testimonial-text {
    height: 140px;
  }

  .stats>div:nth-child(1),
  .stats>div:nth-child(2),
  .stats>div:nth-child(3),
  .stats>div:nth-child(4) {
    border-right: 1px solid #fff;
    border-bottom: none;
  }

  .stats-wrapper {
    max-width: 960px;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
  }

  .stats>div {
    padding: 1em;
  }

  .footer-main .contact-title .inner-wrapper {
    font-size: 0.875rem;
    padding-top: 0;
  }

  .gallery-section a .gallery-image {
    height: 180px;
    max-width: 100%;
  }

  .meet-our-team-section .team-card {
    margin-top: 200px !important;
  }

  .meet-our-team-section .team-card .inner-wrapper {
    padding-top: 175px !important;
  }

  .team-card .avatar {
    width: 300px;
    transform: translate(-50%, -150px);
  }

}

/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

  /* General Styles */
  .container {
    max-width: 1140px;
  }

  /* end of general styles */

  .navbar .nav-item .nav-link {
    padding-right: 1.125rem;
    padding-left: 1.125rem;
  }

  /* end of Navbar*/


  /* Header */
  .header {
    overflow: hidden;
  }

  .header .image-container {
    position: relative;
  }

  .header .image-container img {
    position: absolute;
    top: -80px;
    left: 10px;
    width: 840px;
    max-width: none;
  }

  .coaching .container-fluid .inner-wrapper {
    width: 80%;
    padding: 2em;
  }

  /* end of header */

  .slider-1 .testimonial-text {
    height: 100px;
  }

  .value-card .inner-wrapper {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

}

/* end of min-width 1200px */

@media (min-width: 1900px) {
  .container {
    max-width: 80%;
    max-width: 1400px;
  }
}

@media (max-width: 992px) {
  .header .h1-large.home-banner-text-subhead {
    font-size: 2rem;
    line-height: 2.15rem;
  }
}

@media (max-width: 480px) {
  .header .h1-large.home-banner-text-subhead {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}