
/*-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
CSS INDEX
===================
01. Default CSS
	1.1 Body
	1.2 Common CSS
	1.3 Loader CSS
02. Navbar CSS 
	2.1 NavbarWhite CSS
	2.2 SubMenu CSS
03. Hero Section CSS
	3.1 Hero Inner CSS
	3.2 Hero VideoButton CSS
04. Facility Section CSS
05. BMI Section CSS
	5.1 Custom SelectPicker CSS 
06. Schedule Section CSS
07. Review Section CSS
08. JoinNow Section CSS 
09. Coaches Section CSS
	9.1 Coaches Overlay CSS
10. Blog Section CSS
11. Gallery Section CSS
	11.1 SmallImage CSS
12. Contact Section CSS
13. Footer Section CSS
	13.1 FooterBox Section CSS
13. Coach Page CSS
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------*/


/*=============== 01. Default CSS =====================*/

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-ms-clear {
	display: none;
}


/*=============== 1.1 Body CSS =====================*/

body {
	background-color: black;
	font-family: 'Raleway', sans-serif;
	position: relative;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

body {
	max-width: 100%;
	overflow-x: hidden;
}

body[data-rtl="rtl"] {
	direction: rtl;
	text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #222222;
	font-weight: 400;
	margin-top: 0;
	line-height: 1.2;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

p:last-child {
	margin-bottom: 0;
}

p {
	font-size: 15px;
	margin: 0;
	color: azure;
	font-weight: 500;
}

a,
button {
	color: inherit;
	display: inline-block;
	line-height: inherit;
	text-decoration: none;
	cursor: pointer;
}

a,
button,
img,
input,
span {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

*:focus {
	outline: none !important;
}

a:focus {
	color: inherit;
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
    color: #0074ff;
    font-weight: bold;
}

button,
input[type="submit"] {
	cursor: pointer;
}

ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}

img {
	max-width: 100%;
}

a,
a:active,
a:focus {
	color: #fff;
	text-decoration: none;
	transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-ms-transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
}


/*=============== 1.2 Common CSS =====================*/

.section-title .title {
	font-size: 15px;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.45;
	letter-spacing: 1px;
	color: #4c4c4c;
	text-transform: uppercase;
	margin: 15px 0px 30px;
	font-weight: bold;
}

.section-title .sub-title {
	font-size: 36px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 1.8px;
	color: #94ca49;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

.text-white {
	color: #ffffff!important;
}

.text-black {
	color: #f3f3f3!important;
}

.text-red {
	color: #94ca49!important;
}

.section {
	padding: 120px 0;
}

.section-bottom {
	padding-bottom: 10px;
}

.section-top {
	padding-top: 120px;
}

.section-inner {
	margin-top: 80px;
}

.home-btn {
	height: 50px;
	width: 150px;
	font-family: Oswald;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.75px;
	color: #ffffff !important;
	text-transform: uppercase;
	background: #94ca49;
	-webkit-box-shadow: 0px 15px 50px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0px 15px 50px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.home-btn:hover {
	background: #121212!important;
	color: #fff!important;
}

.home-btn:hover svg .arrow {
	stroke: #fff!important;
}


/*=============== 1.3 Loader CSS =====================*/

html,
body {
	overflow-y: hidden;
}

html.animate,
body.animate {
	overflow-y: auto;
}

.loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: black;
	opacity: 1;
}

.loader-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0px auto;
}

.logo-img {
	max-width: 150px;
	position: absolute;
}

.loader-img {
	width: 220px;
	height: 220px;
}


/*=============== 02. Navbar CSS  =====================*/

.navbar {
	border: none;
	-webkit-transition: 0.4s all ease;
	-o-transition: 0.4s all ease;
	transition: 0.4s all ease;
	background: transparent;
	border: none;
	color: #4e4e4e;
	font-size: 15px;
	border: none;
	margin: 0px auto;
	padding: 15px 0px;
}

.navbar * {
	-webkit-transition: 0.4s all ease;
	-o-transition: 0.4s all ease;
	transition: 0.4s all ease;
}

.navbar-brand {
	max-width: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 100px;
	height: 40px;
	-webkit-transition: 0.6s all ease-in-out;
	-o-transition: 0.6s all ease-in-out;
	transition: 0.6s all ease-in-out;
}

.navbar-brand img {
	max-width: 100%;
}

.toggle-menu .nav-item a {
	position: relative;
}

.navbar-light .navbar-nav>.nav-item>a {
	font-size: 15px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav>li>a {
	padding-right: 0px;
	padding-left: 0px;
}

.navbar-expand-lg .navbar-nav .nav-item {
	margin-left: 15px;
}

.navbar-light .navbar-nav>.nav-item>a:hover {
	color: #94ca49!important;
}

.navbar-light .navbar-nav>.active>a,
.navbar-light .navbar-nav>.active>a:focus,
.navbar-light .navbar-nav>.active>a:hover {
	background-color: transparent;
	color: #94ca49;
}

.navbar-light .navbar-nav .nav-item:active {
	color: #94ca49;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #94ca49;
}

.navbar-light .navbar-toggler {
	border-color: #000;
}

.navbar-light .navbar-toggler .icon-bar {
	background-color: #000;
}

.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:hover {
	color: #94ca49!important;
	background-color: transparent;
}


/*=============== 2.1 NavbarWhite CSS  =====================*/

.nav-link.home-btn.active {
	color: #fff!important;
}

.nav-white {
	background-color: #212121;
	-webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
	box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
}

.nav-white .navbar-nav>.nav-item>.nav-link {
	color: #c4c4c4;
}

.nav-white .navbar-nav>.nav-item>.nav-link.active,
.nav-white .navbar-nav>.nav-item>.nav-link:focus,
.nav-white .navbar-nav>.nav-item>.nav-link:hover {
	color: #94ca49;
}

.nav-white .navbar-nav>.nav-item>.nav-link.active svg .arrow .nav-white .navbar-nav>.nav-item>.nav-link:focus svg .arrow,
.nav-white .navbar-nav>.nav-item>.nav-link:hover svg .arrow {
	stroke: #94ca49!important;
}

.navbar-light .navbar-nav>.open>a,
.navbar-light .navbar-nav>.open>a:focus,
.navbar-light .navbar-nav>.open>a:hover {
	color: #fff;
	background-color: transparent;
}

.sticky-top {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1020;
}


/*=============== 2.2 SubMenu CSS  =====================*/

.sub-menu-parent {
	position: relative;
}

.drop-down::after {
	font-family: "FontAwesome";
	text-decoration: none;
	content: '';
	position: absolute;
	margin-left: 5px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.sub-menu {
	opacity: 1;
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	transform: scale(1, 0);
	padding: 10px 0px;
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
	z-index: 100;
	list-style-type: none;
	position: absolute;
	top: 58px;
	left: 0px;
	margin: 0;
	background-color: #fff;
	text-align: left;
	border-top: 2px solid #94ca49;
	-webkit-box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 4px 11px 0px rgba(0, 0, 0, 0.05);
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

.sub-menu li a {
	display: block;
	padding: 10px 20px;
	margin-right: 0px;
	clear: both;
	color: #000;
	white-space: nowrap;
	font-size: 15px;
	letter-spacing: 1px;
	-webkit-transition: 0.3s all ease-out;
	-o-transition: 0.3s all ease-out;
	transition: 0.3s all ease-out;
}

.sub-menu li a:hover,
.sub-menu li a:focus {
	color: #94ca49;
}

.sub-menu-parent:focus .sub-menu,
.sub-menu-parent:hover .sub-menu {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}


/*=============== 03. Hero Section CSS  =====================*/

.hero-section {
	height: 100vh;
}

.carousel-detail {
	position: relative;
	height: 100vh;
}

.carousel-detail span {
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 1.8px;
	text-align: left;
	color: #94ca49;
	text-transform: uppercase;
}

.carousel-detail .down-up {
	font-size: 92px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: 4.6px;
	text-align: left;
	color: #FFFFFF;
	text-transform: uppercase;
	margin-bottom: 0;
}

.carousel-detail:before {
	content: '';
	position: absolute;
	left: 45%;
	right: 0;
	bottom: 0;
	top: 0;
	height: 100%;
	width: 0px;
	background: rgba(182, 150, 132, 0.5);
	z-index: -1;
	-webkit-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background: none!important;
	left: 0px!important;
	right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 0px!important;
	left: auto;
	background: none!important;
}

.header .swiper-carousel {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 0;
}

.header .swiper-carousel * {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-o-transition-duration: 500ms;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header .swiper-carousel .swiper-slide {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #eee;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
	background-size: cover;
}

.header .swiper-carousel .swiper-slide:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #313434;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.6;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.header .swiper-carousel .swiper-slide .inner {
	opacity: 0;
	padding: 0 5vw;
	position: relative;
	z-index: 2;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
}

.header .swiper-carousel .swiper-slide-active {
	margin: 0;
	-webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.header .swiper-carousel .swiper-slide-active:after {
	content: "";
	opacity: 0;
}

.header .swiper-carousel .swiper-slide-active .inner {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.header .swiper-container {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 0;
	cursor: default!important;
}

.header .swiper-container .swiper-slide {
	overflow: hidden;
}

.header .swiper-container .swiper-button-next {
	width: auto;
	height: auto;
	background: none;
	right: 33px;
	font-weight: 800;
	color: #fff;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-top: 20px;
	overflow: hidden;
}


/*=============== 3.1 Hero inner CSS  =====================*/

.header .swiper-container .swiper-button-next * {
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.header .swiper-container .swiper-button-next span {
	position: relative;
	display: inline-block;
}

.header .swiper-container .swiper-button-next span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}

.header .swiper-container .swiper-button-prev {
	width: auto;
	height: auto;
	background: none;
	left: auto;
	right: 33px;
	font-weight: 800;
	color: #fff;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-top: -40px;
	overflow: hidden;
}

.header .swiper-container .swiper-button-prev * {
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

.header .swiper-container .swiper-button-prev span {
	position: relative;
	display: inline-block;
}

.header .swiper-container .swiper-button-prev span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}

.header .swiper-container .swiper-button-prev span:before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.header .swiper-container .swiper-button-prev:hover span {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.swiper-pagination-fraction {
	width: 100px;
	color: #000;
	text-align: right;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	position: relative!important;
	bottom: 0!important;
	width: auto!important;
}

.swiper-pagination-fraction .swiper-pagination-current {
	font-family: Oswald;
	font-size: 18px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: 0.9px;
	text-align: left;
	color: #d6d6d6;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	width: 30px;
	display: inline-block;
	height: 30px;
	text-align: center;
}

.swiper-pagination-fraction .swiper-pagination-total {
	font-family: Oswald;
	font-size: 18px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: 0.9px;
	text-align: left;
	color: #d6d6d6;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	width: 30px;
	display: inline-block;
	height: 30px;
	text-align: center;
}


/*=============== 3.2 Hero VideoButton CSS  =====================*/

.video-text {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 5px;
	margin-top: 120px;
	position: relative;
	cursor: pointer;
	font-size: 15px;
}

.video-text:before {
	content: '';
	position: absolute;
	top: 15px;
	bottom: 0;
	left: -150px;
	background: rgba(255, 255, 255, 1);
	height: 1px;
	width: 89px;
}

.play-button {
	width: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.play-button-wrapper {
	width: 123px;
	height: 123px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.play-button-wrapper a {
	width: 100%;
	height: 100%;
}

.play-button-wrapper:hover {
	background: #94ca49;
}

.play-button-wrapper:hover .fa {
	color: #000;
}

.play-button-wrapper .fa {
	font-size: 20px;
	margin-left: 5px;
	color: #fff;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.carousel-detail-animate {
	width: 75%;
}

.header .slide-inner {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 1;
	background-size: cover!important;
	background-position: center!important;
	background-repeat: no-repeat!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.header .slide-inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.slider-arrow a>span {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-size: unset;
}

.hero-inner {
	margin-top: -99px;
	z-index: 1000;
	position: relative;
}

.hero-scroll {
	z-index: 10;
	background-color:rgba(255, 255, 255, 0.1);
	height: 100px;
}

.slider-arrow svg {
	height: 18px;
	width: 18px;
	margin: 10px;
}

.hero-bottom-nav {
	background-color: #fff;
	z-index: 10;
	height: 125px;
}

.seprator {
	height: 1px;
	width: 30%;
	background: #e4e4e4;
	margin: 0px 30px;
}

.swiper-button-next:focus,
.swiper-button-next:hover,
.swiper-button-prev:focus,
.swiper-button-prev:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: 1;
}

.swiper-wrapper,
.swiper-slide {
	-webkit-transform-style: flat;
	transform-style: flat;
}

.swiper-button-next,
.swiper-button-prev {
	margin-top: 0px!important;
	top: 0!important;
	position: relative!important;
	width: auto!important;
	height: auto!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}


/*=============== 04. Facility Section CSS  =====================*/

.facility_preview_wrapper {
	background-repeat: no-repeat !important;
	background-position: center !important;
	height: 258px;
	background-size: cover !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	position: relative;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	background-size: cover!important;
}

.facility_preview_wrapper .home-btn:hover {
	background: #94ca49!important;
	color: #fff!important;
}

.facility_preview_wrapper:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	-webkit-transition: 0.6s ease-in-out all;
	-o-transition: 0.6s ease-in-out all;
	transition: 0.6s ease-in-out all;
}

.facility_preview_wrapper:hover:before {
	background: rgba(0, 0, 0, 0.8);
	-webkit-transition: 0.6s ease-in-out all;
	-o-transition: 0.6s ease-in-out all;
	transition: 0.6s ease-in-out all;
}

.facility_preview_wrapper:hover .inner {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.inner {
	position: absolute;
	z-index: 100;
	opacity: 0;
	-webkit-transition: 0.6s ease-in-out all;
	-o-transition: 0.6s ease-in-out all;
	transition: 0.6s ease-in-out all;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.facility_preview_wrapper:hover .facility_title {
	color: #94ca49;
}

.facility_title {
	font-family: Oswald;
	font-size: 30px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: 1.5px;
	text-align: left;
	color: #FFFFFF;
	text-transform: uppercase;
	-webkit-transition: 0.6s ease-in-out all;
	-o-transition: 0.6s ease-in-out all;
	transition: 0.6s ease-in-out all;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
}


/*=============== 05. BMI Section CSS  =====================*/

.bmi {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.bmi:before {
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.form-wrapper {
	padding: 50px;
}

.xs-form-anim {
	width: 100%;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom:1px solid rgb(143 139 139 / 72%);
	padding: 15px 0px;
}

.xs-form-anim input {
	width: 100%;
	border: none;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	background: none;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: #200504;
	text-transform: uppercase;
}

.xs-form-anim input::-webkit-input-placeholder {
	color: #c1c1c1;
}

.xs-form-anim input::-moz-placeholder {
	color: #c1c1c1;
}

.xs-form-anim input:-ms-input-placeholder {
	color: #c1c1c1;
}

.xs-form-anim input::-ms-input-placeholder {
	color: #c1c1c1;
}

.xs-form-anim input::placeholder {
	color: #c1c1c1;
}

.xs-form-anim span {
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: #d0c9c9;
}

.bmi-information .bmi-us-single-item {
	margin-bottom: 25px;
	position: relative;
}

.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	position: relative;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px!important;
	width: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-styled {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px!important;
	width: 100%;
	border: none;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: #c1c1c1;
	text-transform: uppercase;
	background: transparent;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

::-webkit-input-placeholder {
	/* Edge */
	color: #200504;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #200504;
}

::-moz-placeholder {
	color: #200504;
}

::-ms-input-placeholder {
	color: #200504;
}

::placeholder {
	color: #200504;
}


/*=============== 5.1 Custom SelectPicker CSS  =====================*/

.select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-color: #d0c9c9 transparent transparent transparent;
	position: absolute;
	top: 10px;
	right: 10px;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #fff;
	-webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, .1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
	background: #fff;
	margin-top: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-options li {
	font-family: Oswald;
	position: relative;
	display: block;
	padding: 15px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
	font-weight: 500;
	color: #200504;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-options li:hover {
	color: #000;
}

.select-options li[rel="hide"] {
	display: none;
}

.cal-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 80px;
	font-size: 18px;
	border: none;
}

.text-info,
.xs-green-color {
	font-family: Oswald;
	font-size: 30px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 1.5px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-transform: uppercase;
}

.xs-green-color {
	color: #399c0a;
}

#xs-bmi-info p {
	font-size: 18px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.45;
	letter-spacing: 2.2px;
	color: #200504;
	text-transform: inherit;
	text-align: center;
	margin-bottom: 30px;
}

.xs-yellow-color {
	color: #fda633;
}

.xs-red-color {
	color: red;
}

#xs-bmi-info span {
	font-size: 22px;
	text-transform: uppercase;
	display: block;
}

.bmi-left {
	background: rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.05);
}

.bmi-information {
	height: 100%;
	padding-bottom: 50px;
}

.bmi-information .work-info {
	padding-left: 20px;
}


/*=============== 06. Schedule Section CSS  =====================*/

.slider {
	margin: 0 auto;
}

.slick-slide {
	margin: 0 0px;
}

.slick-list {
	margin: 0px -5px 0px -5px;
}

.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: schedule;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}


/* Arrows */

.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before,
.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-prev:before {
	content: '';
}

[dir='rtl'] .slick-prev:before {
	content: '';
	font-weight: bold;
	font-size: 20px;
}

.slick-next {
	right: -25px;
}

.ab-left-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.month {
	background: #94ca49!important;
}

.schedule-title h5,
.date {
	color: #fff;
	text-align: right;
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	letter-spacing: 1px;
}

.box-content .date {
	color: #94ca49!important;
}

sup {
	top: -.5em;
	font-size: 15px;
}

.navigation-btn button {
	background: transparent;
	border: none;
	width: 40px;
	height: 40px;
}

.navigation-btn button .fa {
	font-size: 25px;
	color: rgba(255, 255, 255, 0.5);
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.navigation-btn button:hover .fa,
.navigation-btn button:focus .fa {
	color: rgba(255, 255, 255, 1);
}

.schedule-title h5 span {
	display: block;
	margin-top: 20px;
}

.schedule-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	position: relative;
}

.schedule-text {
	color: #fff;
	text-align: left;
	font-size: 15px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.schedule-text:last-child {
	margin-bottom: 0;
}

.schedule-card-container {
	margin-bottom: 30px;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.box-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	background: #fff;
	-webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	cursor: pointer;
}

.schedule-card:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	width: 100%;
}

.month:before {
	content: none!important;
}

.schedule-card {
	height: 255px;
	background-repeat: no-repeat!important;
	background-size: cover!important;
	overflow: visible;
	background: #1b1b1b;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	position: relative;
	padding: 20px;
	cursor: pointer;
}

.schedule-card:hover .box-content {
	opacity: 1;
}

.overlay-title h6 {
	color: #200504;
	text-align: left;
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.overlay-title {
	margin-bottom: 10px;
}

.overlay-user {
	color: #200504;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}

.overlay-time {
	color: #200504;
	text-align: left;
	font-size: 14px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	letter-spacing: 1px;
}

.user-image {
	margin-right: 10px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.user-image img {
	height: 100%;
	width: 100%;
}

.overlay-text {
	margin-bottom: 15px;
}

.overlay-text:last-child {
	margin-bottom: 0;
}


/*=============== 07. Review Section CSS =====================*/

.review-left {
	height: 100%;
	position: relative;
	z-index: 2;
}

.test-left-img {
	position: relative;
}

.quote {
	position: absolute;
	top: 0;
	right: -40px;
	bottom: 0;
	margin: auto;
}

.review-right {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.review-right .slick-arrows button {
	border: none;
	background: none;
	padding: 0;
	width: 30px;
	height: 30px;
}

.review-right-inner {
	position: relative;
	width: 100%;
	z-index: 2;
}

.review-description img {
	margin: 0;
}

.review-description h6 {
	font-family: Oswald;
	font-size: 24px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 1.2px;
	text-align: left;
	color: white;
	margin: 25px 0px;
}


/*=============== 08. JoinNow Section CSS =====================*/

.panel {
	background-color: #fff;
	position: relative;
	width: 100%;
	z-index: 10;
}

.pricing-table {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
}

.pricing-featured {
	padding: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.planing-img {
	height: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px 0px;
}

.pricing-plan {
	cursor: pointer;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.pricing-plan:hover,
.pricing-plan.active {
	-webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.08);
}

.pricing-plan:hover .cal-btn,
.pricing-plan.active .cal-btn {
	opacity: 1;
}

.pricing-plan .cal-btn {
	opacity: 0;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.pricing-img {
	margin-bottom: 25px;
	max-width: 100%;
}

.pricing-header {
	font-family: Oswald;
	font-size: 24px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 1.2px;
	text-align: center;
	color: #200504;
	text-transform: uppercase;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.pricing-plan:hover .pricing-header,
.pricing-plan.active .pricing-header {
	color: #94ca49;
}

.pricing-features-item {
	padding: 5px 0;
	font-size: 14px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.8px;
	text-align: center;
	color: #200504;
	text-transform: uppercase;
}

.pricing-price {
	font-family: Oswald;
	font-size: 24px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 1.2px;
	text-align: center;
	color: #200504;
	margin-top: 30px;
	display: block;
	text-transform: uppercase;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.pricing-plan:hover .pricing-price,
.pricing-plan.active .pricing-price {
	color: #94ca49;
}

.planing-img svg .join1-1,
.planing-img svg .join2-1,
.planing-img svg .join3-1 {
	stroke: #adadad;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.pricing-plan.active .planing-img svg .join1-1,
.pricing-plan.active .planing-img svg .join2-1,
.pricing-plan.active .planing-img svg .join3-1 {
	stroke: #94ca49;
}


/*=============== 09. Coaches Section CSS =====================*/

.trainers {
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.top-image {
	position: relative;
	cursor: pointer;
}

.top-image:hover .coaches-overlay {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}


/*=============== 9.1 Coaches Overlay CSS=====================*/

.coaches-overlay {
	position: absolute;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	width: 100%;
	-webkit-transform: translateY(-70px);
	-ms-transform: translateY(-70px);
	transform: translateY(-70px);
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.coaches-img-box a {
	height: 50px;
	color: #ffffff!important;
	font-family: Oswald;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.75px;
	font-stretch: normal;
	font-style: normal;
	text-align: center;
	text-transform: uppercase;
}

.coaches-img-box h4 svg:hover .arrow {
	stroke: #94ca49!important;
}

.arrow {
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.coaches-social li a .fa {
	font-size: 20px;
	padding: 5px 0px;
	color: #ffffff;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.coaches-social li {
	margin-right: 40px;
}

.coaches-social li:last-child {
	margin-right: 0px;
}

.coaches-social li a .fa:hover {
	color: #94ca49;
}


/*=============== 10. Blog Section CSS=====================*/

.post-img {
	position: relative;
	overflow: hidden;
}

.grid-inner {
	overflow: hidden;
}

.grid-inner:hover .post-img img {
	-webkit-transform: scale(1.1);
	-webkit-transform: scale3d(1.1, 1.1, 1);
	transform: scale3d(1.1, 1.1, 1);
	overflow: hidden;
}

.post-img a,
.post-img img {
	width: 100%;
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.published {
	position: absolute;
	top: 13px;
	right: 10px;
	width: 73px;
	height: 35px;
	background-color: #94ca49;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 3;
	letter-spacing: 0.8px;
	text-align: center;
	color: #ffffff;
	text-transform: uppercase;
}

.entry-title {
	font-size: 16px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 25px;
	letter-spacing: 0.9px;
	color: #200504;
	margin: 20px 0px;
}

.post-cats-user {
	font-size: 16px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 3;
	letter-spacing: 0.8px;
	color: #200504;
	text-transform: capitalize;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.post-cats-user img {
	width: 38px;
	border-radius: 50%;
}

.post-cats-user {
	font-size: 16px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 3;
	letter-spacing: 0.8px;
	color: #200504;
	text-transform: capitalize;
}

.read-more-link svg .arrow {
	-webkit-transition: 0.6s all ease-out;
	-o-transition: 0.6s all ease-out;
	transition: 0.6s all ease-out;
}

.read-more-link:hover svg .arrow {
	stroke: #94ca49;
}


/*=============== 11. Gallery Section CSS=====================*/

.slider-big-image {
	position: relative;
}

.slider-big-image:before {
	position: absolute;
	content: '';
	background: rgba(0, 0, 0, 0.1);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.gallery-slider {
	position: relative;
}


/*=============== 11.1 SmallImage CSS=====================*/

.slider-small {
	margin-top: -120px;
}

.is-active img {
	border: 2px solid #d5d5d5!important;
}

.slider-small-image img {
	border: 2px solid transparent;
}

.gallery-navigation .slick-prev,
.gallery-navigation .slick-next {
	display: none!important;
}

.gallery-slider .slick-initialized .slick-slide {
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.slider-nav .slick-slide {
	cursor: pointer;
}


/*=============== 12. Contact Section CSS=====================*/

#contact {
	position: relative;
	z-index: 100;
}

.contact-form-input {
	position: relative;
	padding-top: 15px;
	margin-top: 10px;
}

.contact-form-input input {
	width: 100%;
	position: relative;
	z-index: 2;
	background-color: transparent;
	border: none;
	padding: 15px 0;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: white;
	text-transform: uppercase;
}

.contact-form-input textarea {
	width: 100%;
	position: relative;
	z-index: 2;
	background-color: transparent;
	border: none;
	padding: 15px 0 10px;
	max-width: 100%;
	height: 100px;
	resize: none;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: white;
	text-transform: uppercase;
}

.contact-form-input:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	background-color: #434343cc;
}

.contact-form-input label {
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 1;
	margin: 0;
	-webkit-transition: 0.4s all ease-out;
	-o-transition: 0.4s all ease-out;
	transition: 0.4s all ease-out;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: #adadad;
	text-transform: uppercase;
}

.contact-form-input label.active {
	opacity: 0;
}

.contact-form-input input:focus+label {
	top: 0;
}

.contact-form-input textarea:focus+label {
	top: 0;
}

.contact-form-input .line {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: 0;
	background-color: #94ca49 !important;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	-webkit-transition: 0.4s all ease-out;
	-o-transition: 0.4s all ease-out;
	transition: 0.4s all ease-out;
}

.contact-form-input input:focus~div.line {
	width: 100%;
}

.contact-form-input textarea:focus~div.line {
	width: 100%;
}

.contact-input-full {
	width: 100%;
}

.contact-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.contact-input-left {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}


/*=============== 13. Footer Section CSS=====================*/

.footer-box {
	height: 190px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-right {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.foot-title {
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 1.2px;
	color: #ffffff;
	margin-right: 20px;
	margin-bottom: 0;
}

.form-wapper {
	width: 100%;
	max-width: 384px;
	height: 75px;
	background-color: rgba(255, 255, 255, 0.05);
	padding: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.form-wapper .form-text {
	border: 0;
	background: none;
	margin: auto 0px;
	display: inline-block;
	margin-left: 10px;
	text-transform: capitalize;
}

.form-wapper .form-btn {
	-webkit-transition: 0.6s all ease;
	-o-transition: 0.6s all ease;
	transition: 0.6s all ease;
	left: 56%;
	height: 75px;
	width: 75px;
	border-radius: 0%;
	background: transparent;
	border: none;
}

.input-foot {
	position: relative;
	position: relative;
	border: none;
	font-family: Oswald;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.88;
	letter-spacing: 0.8px;
	text-align: left;
	color: #ffffff;
}

.input-foot::-webkit-input-placeholder {
	color: #ffffff;
}

.input-foot::-moz-placeholder {
	color: #ffffff;
}

.input-foot:-ms-input-placeholder {
	color: #ffffff;
}

.input-foot::-ms-input-placeholder {
	color: #ffffff;
}

.input-foot::placeholder {
	color: #ffffff;
}

.btn-sub {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: none;
	background: transparent;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	cursor: pointer;
}


/*=============== 13.1 FooterBox Section CSS=====================*/

.footer-box-main {
	position: relative;
	background: #121212;
}

.footer-main-container {
	padding: 50px 0;
}

.foot-top-right {
	font-size: 15px;
	font-weight: 600;
	font-style: normal;
	font-stretch: normal;
	line-height: 2.27;
	letter-spacing: 1.2px;
	text-align: left;
	color: #b0b5c3;
}

.footer-list li a {
	font-size: 12px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0 15px;
}


/*=============== 14. Coach Page CSS =====================*/

.inner-hero-section {
	height: 100vh;
}

.half-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 85vh;
	position: relative;
}

.half-bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.coach-left-img {
	border-color: #94ca49;
	border-style: solid;
	border-width: 5px 5px 0px 5px;
}

.coach-title {
	font-size: 48px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.small-title {
	font-size: 18px;
	color: #94ca49;
	text-transform: uppercase;
	font-family: Oswald;
	font-weight: 600;
	letter-spacing: 2px;
}

.coach-detail {
	padding: 40px 0px;
}

.coach-text {
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	padding-bottom: 30px;
}

.coach-text span {
	text-transform: initial;
	font-family: Oswald;
	font-weight: 600;
	letter-spacing: 2px;
	padding: 0px 5px;
}

.certificate {
	padding: 30px 0;
	height: 15vh;
}

.certificate-main-container {
	height: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.skill-right-inner {
	max-width: 480px;
}

.progressWrapper {
	padding: 0px 0px 40px;
}

.progressWrapper label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	margin-bottom: 10px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	color: #200504;
	font-family: Oswald;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

.bar-right {
	color: #94ca49;
}

.progressWrapper .progressBar {
	height: 6px;
	background: rgba(250, 42, 32, 0.1);
	border-radius: 10px;
}

.progressWrapper .now {
	position: relative;
	top: -5px;
	height: 6px;
	width: 0%;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	transition-duration: 2s;
	border-radius: 10px;
	background: #94ca49;
}

.insta {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.insta:before {
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.insta-card {
	margin-bottom: 30px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}

.insta .section-title {
	position: relative;
}

.insta-container {
	position: relative;
}

.insta-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.insta-card:hover .insta-overlay {
	opacity: 1;
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.insta-overlay {
	background: rgba(250, 42, 32, 0.75);
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 0px;
	bottom: 0;
	left: 0px;
	margin: auto;
	right: 0;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	padding: 50px;
}

.insta-overlay .fa {
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}

.insta-list {
	padding: 0px 0 30px;
	position: relative;
}

.insta-btn .fa {
	margin-right: 10px;
	font-size: 20px;
}

.img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.insta-btn:hover {
	background: #fff!important;
	color: #94ca49!important;
}

.insta-btn:hover svg .arrow {
	stroke: #94ca49!important;
}

.read-more-link {
	height: 30px;
	width: 30px;
	margin-top: 20px;
	background: #94ca49;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.read-more-link svg {
	margin: 0px!important;
}

.read-more-link svg .arrow {
	stroke: #fff!important;
}